CrewAI Enterprise MCP Server
OfficialEnables starting deployed CrewAI workflows and monitoring their execution status, retrieving results from CrewAI workflows through the CrewAI Enterprise platform.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CrewAI Enterprise MCP Serverkickoff the marketing campaign crew"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
Related MCP server: my-mcp-server
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": "<>"
}
}
}
}TODO: Added on PyPI:
Available Tools
2 toolsget_crew_statusC
Get the status of a crew task
Args:
crew_id: The ID of the crew task to check
Returns:
Dictionary containing the crew task status
| Name | Required | Description | Default |
|---|---|---|---|
| crew_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. While it states this is a read operation ('Get'), it doesn't address important behavioral aspects like whether this requires authentication, rate limits, error conditions, or what specific status values might be returned. The description provides minimal behavioral context beyond the basic operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections for Args and Returns, and every sentence serves a purpose. It's appropriately sized for a single-parameter tool, though the 'Dictionary containing the crew task status' return description could be more specific about what the dictionary contains.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations, no output schema, and 0% schema description coverage, the description is insufficiently complete. While it covers the basic operation and parameter, it lacks crucial information about authentication requirements, error handling, status format/details, and relationship to the sibling tool that would help the agent use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explicitly documents the single parameter 'crew_id' and its purpose ('The ID of the crew task to check'), which adds meaningful context beyond the schema's 0% description coverage. However, it doesn't provide format details, examples, or constraints for the crew_id parameter that would be helpful for the agent.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('status of a crew task'), making it immediately understandable. However, it doesn't explicitly differentiate from its sibling tool 'kickoff_crew', which appears to be a different operation (initiating vs. checking status).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites, timing considerations, or relationship to the sibling 'kickoff_crew' tool, leaving the agent without context for appropriate selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kickoff_crewC
Start a new crew task
Args:
inputs: Dictionary containing the query and other input parameters
Returns:
Dictionary containing the crew task response. The response will contain the crew id which needs to be returned to check the status of the crew.
| Name | Required | Description | Default |
|---|---|---|---|
| inputs | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the tool starts a task and returns a crew id for status checking, but doesn't address critical behavioral aspects like whether this is a synchronous or asynchronous operation, what happens if a task fails, or any permission/rate limit requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with three sentences that each serve a purpose: stating the action, describing the input, and explaining the output. However, the structure could be improved by front-loading more critical information about the tool's behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations, no output schema, and a complex nested parameter with 0% schema coverage, the description is inadequate. It doesn't explain what constitutes valid 'inputs', what the response structure looks like beyond containing a crew id, or the operational characteristics of starting a crew task.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage and 1 parameter that's a nested object, the description only vaguely mentions 'Dictionary containing the query and other input parameters.' This provides minimal semantic value beyond what the bare schema indicates, failing to compensate for the complete lack of schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Start') and resource ('new crew task'), providing a specific purpose. However, it doesn't distinguish this tool from its sibling 'get_crew_status' beyond the obvious difference in action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by mentioning that the returned crew id is needed to check status with 'get_crew_status', suggesting a workflow relationship. However, it doesn't explicitly state when to use this tool versus alternatives or provide any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- First observed
get_crew_status - First observed
kickoff_crew
TDQS
The two tools have clearly distinct purposes: one starts a new crew task (kickoff_crew) and the other checks the status of an existing task (get_crew_status). There is no overlap or ambiguity between these operations.
Both tools follow a consistent verb_noun pattern (kickoff_crew, get_crew_status) with clear action-oriented verbs and the same noun root. The naming is predictable and follows the same convention throughout.
With only two tools, the server feels severely under-equipped for an 'Enterprise MCP Server' that presumably manages crew tasks. There are likely missing operations like listing crews, updating tasks, or handling errors that would be needed for complete workflow coverage.
The tool surface is significantly incomplete for crew task management. While it covers starting and checking status, there are obvious gaps: no way to list existing crews, update tasks, cancel tasks, or retrieve results beyond status. This will cause agent failures in many scenarios.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
A Model Context Protocol server for Wix AI tools
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceA lightweight Python-based server designed to run, manage and create CrewAI workflows using the Model Context Protocol for communicating with LLMs and tools like Claude Desktop or Cursor IDE.36-
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that allows integration with Claude Desktop by creating and managing custom tools that can be executed through the MCP framework.88-
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables seamless integration between Claude AI and development tools like VSCode, Augment, Vercel, Airtable, and Square.7MIT
- AlicenseNot gradedqualityDmaintenanceA production-ready Model Context Protocol server that provides comprehensive file system management capabilities for seamless integration with Claude Desktop.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/crewAIInc/enterprise-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server