JUHE API Marketplace
crewAIInc avatar
MCP Server

CrewAI Enterprise MCP Server

A Model Context Protocol server that enables users to kickoff and monitor deployed CrewAI workflows through Claude Desktop.

43
GitHub Stars
8/18/2025
Last Updated
MCP Server Configuration
1{
2 "name": "crewai_enterprise_server",
3 "command": "uv",
4 "args": [
5 "run",
6 "--with",
7 "mcp[cli]",
8 "mcp",
9 "run",
10 "",
11 "/crewai_enterprise_server.py"
12 ],
13 "env": {
14 "MCP_CREWAI_ENTERPRISE_SERVER_URL": "<>",
15 "MCP_CREWAI_ENTERPRISE_BEARER_TOKEN": "<>"
16 }
17}
JSON17 lines

README Documentation

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

Claude Desktop with CrewAI Enterprise MCP Server Claude Desktop with CrewAI Enterprise MCP Server Claude Desktop with CrewAI Enterprise MCP Server

To use this MCP server with Claude Desktop, follow these steps:

  1. Open Claude Desktop
  2. Go to Settings > Developer Settings
  3. 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": "<>"
      }
    }
  }
}

TODO: Added on PyPI:

Quick Install

Quick Actions

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source