The CrewAI Enterprise MCP Server is a Model Context Protocol (MCP) implementation designed to manage and monitor deployed CrewAI workflows. This server allows users to initiate their deployed crew and inspect the status, providing the results of the crew's operations.
To configure the server, retrieve the following environment variables from app.crewai.com
:
MCP_CREWAI_ENTERPRISE_SERVER_URL
MCP_CREWAI_ENTERPRISE_BEARER_TOKEN
To integrate the CrewAI Enterprise MCP Server with Claude Desktop, follow these steps:
To run the server locally, install mcp
and mcp[cli]
and configure as follows:
{
"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": "<>",
"MCP_CREWAI_ENTERPRISE_BEARER_TOKEN": "<>"
}
}
}
}
The project is planned to be added to PyPI for easier installation and management.
The CrewAI Enterprise MCP Server is designed to kick off and monitor the status of your crew deployments.
No releases published
No packages published