Lightweight MCP server to give your Cursor Agent access to the WorkOS API.
更新时间:2025-03-05 19:21:18
- What is workos-mcp: workos-mcp is a lightweight Model Control Protocol (MCP) server that facilitates communication between agents (like Cursor Agents) and the WorkOS API. It is built using the create-mcp framework and deployed on Cloudflare Workers.
- How to use workos-mcp: 1. Clone and deploy the MCP server using the automated installation script: ```bash bun create mcp --clone https://github.com/zueai/workos-mcp ``` 2. Add the MCP server in the Cursor settings and paste the copied command. 3. Upload the WorkOS API key and client ID as secrets: ```bash bunx wrangler secret put WORKOS_API_KEY bunx wrangler secret put WORKOS_CLIENT_ID ``` 4. Deploy updates using: ```bash bun run deploy ``` 5. Reload the Cursor window to use the updated tools.
- FAQ from workos-mcp: - How can I add a new MCP tool? You can add a new tool by defining a method in the `MyWorker` class in `src/index.ts`. The method will automatically become an MCP tool. - How do I deploy updates to the MCP server? Simply run the deploy script using `bun run deploy` and reload the Cursor window to apply changes.