CrewAI MCP Orchestrator
Transforms any compatible LLM or AI Assistant into a master orchestrator of CrewAI, providing tools to dynamically generate, edit, test, and execute multi-agent systems.
README
🚀 CrewAI MCP Orchestrator
The CrewAI MCP Orchestrator is a highly capable Model Context Protocol (MCP) server that transforms any compatible LLM or AI Assistant into a master orchestrator of the CrewAI framework.
This server provides 13 dynamic tools, integrated RAG documentation search (ChromaDB), and programmatic control over CrewAI projects, enabling LLMs to dynamically generate, edit, test, and execute multi-agent systems.
🌟 Key Features
- Integrated Knowledge Base (RAG): Automatically chunks and indexes CrewAI Markdown documentation so the AI can read guides and concepts via
crewai_query_knowledge. - Project Scaffolding: Create native CrewAI projects and flows isolated in a
/workspacedirectory. - YAML Lifecycle Management: Define agents, tasks, and flows directly using Python and Pydantic without breaking the CLI structures.
- Observability & Debugging: Automatically run tests, train models, and replay failed tasks.
- Multi-Transport Support: Works locally via
stdiofor IDEs or viaSSE/HTTPusing the included Docker configuration.
🛠️ Installation & Setup
We recommend using uv for lightning-fast dependency management.
# 1. Clone the repository
git clone https://github.com/tu-usuario/cwai-mcp.git
cd cwai-mcp
# 2. Sync and install dependencies (creates isolated .venv)
uv sync
# 3. Add documentation (Optional but recommended)
# Place CrewAI markdown files inside the /docs folder to be automatically indexed.
🔌 IDE & Client Integration (MCP)
To connect your favorite AI IDE or Assistant to this server, you need to configure an MCP connection over stdio. Since the server uses uv and its own virtual environment, it's highly recommended to point directly to the .venv Python executable for speed and clean stdout streams.
🌌 Antigravity
Open your mcp_config.json (usually located in .gemini/config/mcp_config.json) and add:
{
"mcpServers": {
"crewai-orchestrator": {
"command": "C:\\Ruta\\Absoluta\\cwai-mcp\\.venv\\Scripts\\python.exe",
"args": ["-X", "utf8", "-m", "crewai_mcp.server"],
"cwd": "C:/Ruta/Absoluta/cwai-mcp",
"env": {
"CREWAI_MCP_TRANSPORT": "stdio",
"PYTHONUTF8": "1"
}
}
}
}
🤖 Claude Desktop / Claude Code
Open your Claude Desktop config file (Windows: %APPDATA%\Claude\claude_desktop_config.json, Mac: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"crewai-orchestrator": {
"command": "/absolute/path/to/cwai-mcp/.venv/bin/python",
"args": ["-m", "crewai_mcp.server"],
"cwd": "/absolute/path/to/cwai-mcp",
"env": {
"CREWAI_MCP_TRANSPORT": "stdio"
}
}
}
}
💻 Roo Code / Cline (VS Code)
Open your MCP settings from the extension UI or edit cline_mcp_settings.json:
{
"mcpServers": {
"crewai-orchestrator": {
"command": "C:\\Ruta\\Absoluta\\cwai-mcp\\.venv\\Scripts\\python.exe",
"args": ["-X", "utf8", "-m", "crewai_mcp.server"],
"cwd": "C:/Ruta/Absoluta/cwai-mcp",
"env": {
"CREWAI_MCP_TRANSPORT": "stdio",
"PYTHONUTF8": "1"
}
}
}
}
🐾 OpenClaw / Generic Stdio
For OpenClaw or any other generic MCP client, simply configure a local process executing:
- Command:
/absolute/path/to/.venv/bin/python(orpython.exeon Windows) - Args:
["-m", "crewai_mcp.server"] - Env:
CREWAI_MCP_TRANSPORT=stdio
🐳 Docker Deployment (SSE)
If you wish to deploy the MCP orchestrator as a standalone microservice (e.g., inside a Docker Triad architecture), it supports Server-Sent Events (SSE).
# Build and run using Docker Compose
docker-compose up --build -d
The server will be available at http://localhost:8000/sse.
🧰 Available Tools
| Domain | Tools |
|---|---|
| Project Management | crewai_create_project, crewai_install_deps, crewai_project_info |
| Agent Lifecycle | crewai_define_agent, crewai_define_task, crewai_kickoff |
| Flow Orchestration | crewai_flow_plot, crewai_flow_run |
| Knowledge/Memory | crewai_query_knowledge, crewai_manage_memory |
| Observability | crewai_test_crew, crewai_train_crew, crewai_replay_task |
📝 License
MIT License. Created to supercharge AI-driven multi-agent orchestration.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.