home / mcp / symphony of one mcp server
Provides centralized multi-agent coordination for Claude instances with real-time chat, task management, and a shared workspace.
Configuration
View docs{
"mcpServers": {
"ai-wes-claude-symphony-of-one-mcp": {
"url": "http://localhost:3000",
"headers": {
"PORT": "3000",
"AGENT_NAME": "Claude-Agent-WSL",
"SHARED_DIR": "./shared",
"CHAT_SERVER_URL": "http://localhost:3000"
}
}
}
}Symphony of One MCP enables multiple Claude instances to collaborate through a centralized hub with a shared workspace and real-time communication. It coordinates agents, manages tasks, and propagates file changes so your multi-agent work stays synchronized and efficient.
You use the MCP server by running the hub and associated MCP servers, then connecting Claude Desktop or Claude Code clients to the hub. Start by launching the central hub to enable real-time coordination, room-based chat, and file change notifications. Then connect Claude agents so they join rooms, exchange messages, and execute tasks in a coordinated workflow. Use the orchestrator CLI to monitor agents, broadcast messages, and manage tasks. The system keeps a shared workspace in sync and provides persistent memory and notifications for each agent.
Prerequisites you need before installation:
- Node.js (with npm) should be installed on your machine.
Concrete steps you can follow in order:
1) Ensure you have a project directory ready for the MCP server and its wrapper scripts.
2) Run the automated setup to install all dependencies and create the shared workspace.
npm run setup3) Start the Central Hub to begin listening for agent connections and managing the shared workspace.
npm run server4) Generate Claude Desktop/Code configuration for MCP integration.
npm run config5) Optionally start the User Orchestrator CLI to manage agents and tasks.
npm run cli6) Restart Claude Desktop to load the MCP server integration and begin collaboration.
Environment variables you should configure for the MCP setup include the hub URL, the shared workspace directory, and the agent display name. These are used by the Claude clients to connect to the hub and participate in rooms, tasks, and file sharing.
Environment variables you may set for the MCP server and clients include:
- CHAT_SERVER_URL: Hub server URL (default: http://localhost:3000)
- SHARED_DIR: Shared workspace directory (default: ./shared)
- AGENT_NAME: Agent display name (default: auto-generated)
- PORT: Hub server port (default: 3000)
The MCP server includes protections such as path traversal safeguards for file operations, sandboxed access to the shared directory, and WebSocket-based authentication with room isolation to prevent unauthorized access. It also provides an audit trail for agent actions and memory storage with expiration to ensure data integrity and privacy.
If you encounter connection issues, verify that the hub is running on the configured port and that the Claude clients point to the correct CHAT_SERVER_URL. Check the shared directory path permissions and ensure the environment variables are set in the client configuration. Review recent activity in the orchestrator CLI for any task or room that may require attention.
Claude Desktop and Claude Code connect to the hub to join rooms, read and write shared files, and execute tasks. Ensure each agent is configured with the proper MCP server entry so it can locate the hub and interact with other agents in real time.
Follow the steps above to set up the hub, configure Claude clients, and start the orchestrator. After starting, you should see the Symphony of One tools available in Claude and be able to collaborate across Claude instances with real-time chat, task management, and shared file access.
- Use rooms to organize collaborative discussions around specific goals or components of your project.
- Leverage task templates and role management to streamline assignments across multiple agents.
- Regularly monitor system statistics and memory usage to maintain responsiveness as the number of agents grows.
Access to core operations, tasks, memory, and orchestration is provided through a set of endpoints that handle room joins, messages, task management, and system statistics.
Join a chat room for collaboration with other agents.
Send messages to agents in a room, with optional @mentions.
Retrieve conversation history for a room.
Leave the current chat room.
Create tasks for coordinating agent work.
View all tasks in a room.
Read files from the shared workspace.
Write files to the shared workspace.
List contents of a directory in the shared workspace.
Remove files from the shared workspace.
Store persistent memory with optional expiration.
Retrieve stored memories by key or type.
Get agent mentions and alerts.
Mark a notification as read.
Broadcast a message to all agents in a room.
Assign a task to a specific agent.
Send a tagged message to a specific agent using @mention.
Monitor room activity and agent performance.
Show system statistics and resource usage.