workos-mcp
by zueai
This is a lightweight Model Control Protocol (MCP) server deployed on Cloudflare Workers. It allows agents like Cursor Agents to interact with the WorkOS API.
Last updated: N/A
What is workos-mcp?
A Model Control Protocol (MCP) server that acts as an intermediary between agents (like Cursor Agents) and the WorkOS API, enabling agents to interact with WorkOS functionalities.
How to use workos-mcp?
- Install the server using the provided
bun create mcp
command. 2. Add the server to Cursor Settings. 3. Upload your WorkOS API key and client ID as secrets usingbunx wrangler secret put
. 4. Deploy changes usingbun run deploy
and reload Cursor.
Key features of workos-mcp
Lightweight
Deployed on Cloudflare Workers
Interacts with WorkOS API
Easy to install and deploy
Extensible with custom tools
Use cases of workos-mcp
Integrating WorkOS functionalities into AI agents
Automating WorkOS tasks through agents
Building custom tools for interacting with WorkOS
Enabling AI agents to manage WorkOS resources
FAQ from workos-mcp
What is create-mcp?
What is create-mcp?
create-mcp is a CLI tool used to bootstrap the MCP server.
What is Model Control Protocol?
What is Model Control Protocol?
Model Control Protocol is a protocol for controlling models.
Where can I find the available tools?
Where can I find the available tools?
The available tools are defined as methods in the MyWorker
class in src/index.ts
.
How do I create new MCP tools?
How do I create new MCP tools?
Add new methods to the MyWorker
class in src/index.ts
. Use JSDoc comments to define the tool's description, parameters, and return value.
How do I deploy changes?
How do I deploy changes?
Run the deploy script: bun run deploy
and then reload your Cursor window.