enterprise-mcp-server
34
CrewAI Enterprise MCP Server is a Model Context Protocol server that facilitates the deployment and monitoring of CrewAI workflows. It provides tools to initiate workflows and check their status, ensuring efficient management of deployed processes.
CrewAI Enterprise MCP Server
Overview
A Model Context Protocol (MCP) server implementation that provides deployed CrewAI workflows. This server enables kicking off your deployed crew and inspect the status giving the results of your crew.
Tools
- kickoff_crew
- get_crew_status
Env Variables
retrieve from app.crewai.com
MCP_CREWAI_ENTERPRISE_SERVER_URL
MCP_CREWAI_ENTERPRISE_BEARER_TOKEN
Usage with Claude Desktop
To use this MCP server with Claude Desktop, follow these steps:
- Open Claude Desktop
- Go to Settings > Developer Settings
- Add a new MCP server with the configuration shown below
Locally, cloned repo:
Install mcp
and mcp[cli]
locally
{
"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": "<>"
}
}
}
}