Crewai MCP Server

Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work

Local serverstdioPython

What is the Crewai MCP server?

Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks. Exposed over MCP by the crewai mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Homepage · Open Source · Docs · Start Cloud Trial · Blog · Forum

  • Purpose-built architecture — Designed specifically for agent orchestration, with a lightweight Python core and clean primitives for real-world automation
  • High Performance — Optimized for speed and minimal resource usage, enabling faster execution
  • Flexible Low-Level Customization — Complete freedom to customize everything from workflows and system architecture to agent behaviors, internal prompts, and execution logic
  • Ideal for Every Use Case — Proven effective for simple tasks, complex workflows, and production-grade automation
  • Robust Community — Backed by a rapidly growing community of over 100,000 certified developers offering comprehensive support and resources

Its toolset

Everything the assistant can do here goes through one of these:

  • Purpose — built architecture**: Designed specifically for agent orchestration, with a lightweight Python core and clean primitives for real-world automation
  • Fine — grained control over execution paths for real-world scenarios
  • Agent — ready capabilities**: Use tools, memory, knowledge, checkpointing, async execution, and MCP/A2A support for more capable production agents
  • Production — ready patterns**: Add deterministic steps, human input, structured outputs, and checkpointing as your system grows
  • or_ — Triggers when any of the specified conditions are met
  • Skill — When it runs
  • getting-started — Scaffolding new projects, choosing between LLM.call() / Agent / Crew / Flow, wiring crew.py / main.py
  • design-agent — Configuring agents — role, goal, backstory, tools, LLMs, memory, guardrails
  • design-task — Writing task descriptions, dependencies, structured output (output_pydantic, output_json), human review
  • ask-docs — Querying the live CrewAI docs MCP server for up-to-date API details

Configuration

You will need 2 environment variables: OPENAI_API_KEY, SERPER_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at skills on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Among the planning and project tracking options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Crewai's toolset — Purpose, Fine, Agent and 7 more — is a fair guide to whether it matches your workflow.

This entry was verified against Crewai's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Crewai.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the crewai mcp server does with a few real requests.

Available tools

ToolWhat it does
Purposebuilt architecture**: Designed specifically for agent orchestration, with a lightweight Python core and clean primitives for real-world automation.
Finegrained control over execution paths for real-world scenarios
Agentready capabilities**: Use tools, memory, knowledge, checkpointing, async execution, and MCP/A2A support for more capable production agents.
Productionready patterns**: Add deterministic steps, human input, structured outputs, and checkpointing as your system grows.
or_Triggers when any of the specified conditions are met.
SkillWhen it runs
getting-startedScaffolding new projects, choosing between LLM.call() / Agent / Crew / Flow, wiring crew.py / main.py
design-agentConfiguring agents — role, goal, backstory, tools, LLMs, memory, guardrails
design-taskWriting task descriptions, dependencies, structured output (output_pydantic, output_json), human review
ask-docsQuerying the live [CrewAI docs MCP server](https://docs.crewai.com/mcp) for up-to-date API details

How to install the Crewai MCP server

{
  "mcpServers": {
    "crewai": {
      "command": "npx",
      "args": ["-y", "skills"],
      "env": {
        "OPENAI_API_KEY": "your-value",
        "SERPER_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes
SERPER_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Crewai to Purpose.
  • Use Crewai to Fine.
  • Use Crewai to Agent.

Frequently asked questions

It connects Crewai to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (Purpose, Fine, Agent, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Crewai directly.