The CrewAI Enterprise MCP Server implementation provides deployed CrewAI workflows, allowing you to kick off your deployed crew and monitor their status to get results. This server integrates with Claude Desktop to provide a seamless workflow automation experience.
Before installing the CrewAI Enterprise MCP Server, you'll need:
Access credentials from app.crewai.com:
MCP_CREWAI_ENTERPRISE_SERVER_URL
MCP_CREWAI_ENTERPRISE_BEARER_TOKEN
Claude Desktop application installed on your system
To install the server from a cloned repository:
pip install mcp mcp[cli]
{
"mcpServers": {
"crewai_enterprise_server": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"<filepath of cloned repo>",
"/crewai_enterprise_server.py"
],
"env": {
"MCP_CREWAI_ENTERPRISE_SERVER_URL": "<your_server_url>",
"MCP_CREWAI_ENTERPRISE_BEARER_TOKEN": "<your_bearer_token>"
}
}
}
}
Make sure to replace:
<filepath of cloned repo>
with the actual path to your cloned repository<your_server_url>
with your CrewAI Enterprise server URL<your_bearer_token>
with your authentication tokenThe MCP server provides two main tools:
Once your MCP server is configured in Claude Desktop, you can:
The visual interface in Claude Desktop makes it easy to track your workflow's progress and view the final output of your crew's work.
If you encounter issues:
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.