Skip to main content
Glama
crewAIInc

CrewAI Enterprise MCP Server

Official
by crewAIInc

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

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:

Available Tools

2 tools
get_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
ParametersJSON Schema
NameRequiredDescriptionDefault
crew_idYes

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.
ParametersJSON Schema
NameRequiredDescriptionDefault
inputsYes

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

  1. 2 tool updates
    • First observedget_crew_status
    • First observedkickoff_crew

TDQS

B3.1/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count2/5

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.

Completeness2/5

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

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    F
    maintenance
    A 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
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    A 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
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    A production-ready Model Context Protocol server that provides comprehensive file system management capabilities for seamless integration with Claude Desktop.
    1
    MIT

Latest Blog Posts

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