Claude Swarm MCP Agent MCP Server

A Model Context Protocol (MCP) server that enables **multi-agent orchestration** using Claude AI through Claude Desktop. Create, manage, and

Local serverstdioPython

What is the Claude Swarm MCP Agent MCP server?

Connect Claude Swarm MCP Agent to Claude, Cursor or any other MCP client and it stops being a tab you switch to. A Model Context Protocol (MCP) server that enables multi-agent orchestration using Claude AI through Claude Desktop. Create, manage, and coordinate specialized AI agents for complex workflows like financial analysis, customer service. The claude swarm mcp agent mcp server is what makes that connection.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • create_agent — Create a new specialized agent
  • list_agents — View all saved agents
  • chat_with_agent — Interact with specific agents
  • delete_agent — Remove an agent permanently
  • create_finance_team — Generate complete financial analysis team
  • get_conversation_history — View chat history and agent transfers
  • reset_conversation — Clear conversation history
  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — 1. Clone the repository bash git clone https://github.com/yourusername/claude-swarm-mcp.git cd claude-swarm-mcp

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Credentials and setup notes

Configuration is passed through the environment: ANTHROPIC_API_KEY, CLAUDE_SWARM_STORAGE_DIR, CLAUDE_SWARM_DEBUG. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Python 3.10+ - Claude Desktop installed - Anthropic API key with billing enabled

Where it fits

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Claude Swarm MCP Agent's toolset — create_agent, list_agents, chat_with_agent and 6 more — is a fair guide to whether it matches your workflow. It is maintained by Mayank1805; worth a glance at recent repository activity before you build anything load-bearing on it.

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

Worth knowing first

  • 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 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Claude Swarm MCP Agent.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
create_agentCreate a new specialized agent
list_agentsView all saved agents
chat_with_agentInteract with specific agents
delete_agentRemove an agent permanently
create_finance_teamGenerate complete financial analysis team
get_conversation_historyView chat history and agent transfers
reset_conversationClear conversation history
PrerequisitesThe Prerequisites tool exposed by this server.
Installation1. **Clone the repository** bash git clone https://github.com/yourusername/claude-swarm-mcp.git cd claude-swarm-mcp

How to install the Claude Swarm MCP Agent MCP server

{
  "mcpServers": {
    "claude-swarm": {
      "command": "python3",
      "args": ["/path/to/claude-swarm-mcp/claude_swarm_mcp_server.py"],
      "env": {
        "ANTHROPIC_API_KEY": "your-api-key-here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.10+ - Claude Desktop installed - Anthropic API key with billing enabled
VariableDescriptionRequired
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
CLAUDE_SWARM_STORAGE_DIRFilesystem location the server is allowed to use.Optional
CLAUDE_SWARM_DEBUGConfiguration value read at startup.Optional

Example prompts to try

  • Use Claude Swarm MCP Agent to create agent.
  • Use Claude Swarm MCP Agent to list agents.
  • Use Claude Swarm MCP Agent to chat with agent.

Frequently asked questions

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