Skip to main content
Glama

Symphony of One MCP - Multi-Agent Orchestration System

A Model Context Protocol (MCP) server that enables multiple Claude instances to collaborate through a centralized hub with shared workspace and real-time communication.

Architecture

User (Orchestrator) ← Central Hub Server → Shared Working Directory
         ↑                    ↓                        ↑
    Hub CLI Interface    Message Router           File Access
         ↑                    ↓                        ↓
Multiple Claude Code Instances via MCP Servers ← → Collaboration

Related MCP server: Orchestrator MCP Server

Components

1. Central Hub Server (server.js)

  • Express + Socket.IO server for agent coordination

  • Room-based chat system for agent communication

  • Task management and delegation system

  • File watching with real-time change notifications

  • REST API for agent management and orchestration

2. User Orchestrator CLI (cli.js)

  • Command & control interface for the user

  • Agent monitoring and task assignment

  • Broadcasting messages to agent groups

  • Real-time system statistics and room management

3. Claude Agent MCP Server (mcp-server.js)

  • MCP server that Claude Code instances connect to

  • Shared file system access with security constraints

  • Real-time chat participation with other agents

  • Task execution and progress reporting

  • File change notifications and collaboration sync

Quick Start

1. Automated Setup

npm run setup

This will:

  • Install all dependencies (including sqlite3)

  • Create the shared workspace directory

  • Test the MCP server

  • Show Claude Desktop configuration instructions

🆕 New in v2.0: Enhanced CLI with role management, task templates, and tab completion!

2. Start the Central Hub

npm run server

This starts the hub server on http://localhost:3000 with a shared directory at ./shared

3. Configure Claude Desktop

Generate the correct configuration for your environment:

npm run config

This creates:

  • claude-config-windows.json - For Claude Desktop (Windows)

  • claude-config-wsl.json - For Claude Code (WSL)

Note: The examples below show placeholder paths. When you run npm run config, it will generate the actual paths for your project location.

📋 Manual Configuration

Add the appropriate configuration to your Claude Desktop configuration file (usually at %APPDATA%\Claude\claude_desktop_config.json):

For Claude Desktop (Windows):

{
  "mcpServers": {
    "claude-symphony-of-one": {
      "command": "node",
      "args": ["C:\\path\\to\\your\\project\\mcp-server-wrapper.js"],
      "env": {
        "CHAT_SERVER_URL": "http://localhost:3000",
        "SHARED_DIR": "C:\\path\\to\\your\\project\\shared",
        "AGENT_NAME": "Claude-Agent-Windows"
      }
    }
  }
}

For Claude Code (WSL):

{
  "mcpServers": {
    "claude-symphony-of-one": {
      "command": "node",
      "args": ["/mnt/c/path/to/your/project/mcp-server-wrapper.js"],
      "env": {
        "CHAT_SERVER_URL": "http://localhost:3000",
        "SHARED_DIR": "/mnt/c/path/to/your/project/shared",
        "AGENT_NAME": "Claude-Agent-WSL"
      }
    }
  }
}

🔧 Note: The configurations use the smart wrapper script (mcp-server-wrapper.js) which automatically handles Windows/WSL path differences.

📖 For detailed Windows/WSL setup instructions, see WINDOWS_WSL_SETUP_GUIDE.md

4. Start User Orchestrator CLI (Optional)

npm run cli

This opens the orchestrator interface for managing agents and tasks.

5. Restart Claude Desktop

Restart Claude Desktop to load the MCP server. You should now see the Symphony of One tools available in Claude.

Configuration

Environment Variables

  • 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)

Manual Configuration (Alternative)

If you prefer manual setup, see the claude-config-example.json file for the exact configuration format.

Testing the Setup

npm test

This will test the MCP server functionality and verify all tools are working correctly.

Available Tools (MCP)

Room Management

  • room_join - Join a chat room for collaboration

  • send_message - Send messages to other agents (supports @mentions)

  • get_messages - Get conversation history

  • room_leave - Leave current room

Task Coordination

  • task_create - Create tasks for agent coordination

  • task_list - View all room tasks

  • Task assignment and status tracking

File System (Shared Workspace)

  • file_read - Read files from shared directory

  • file_write - Write files to shared directory

  • file_list - List directory contents

  • file_delete - Remove files

  • Automatic change notifications to all agents

Agent Memory & Notifications

  • memory_store - Store persistent information with optional expiration

  • memory_retrieve - Retrieve stored memories by key or type

  • notifications_get - Get mentions and alerts for this agent

  • notification_read - Mark notifications as read

Orchestrator Commands

Enhanced Orchestrator Commands (v2.0)

Role Management 🎭

  • /role assign - Interactive role assignment with guided menus

  • /role list - Show current agent role assignments

  • /roles - List all available predefined roles

  • /role create - Create custom organizational roles

  • /role prompt <agent> - Send role-specific instructions

Task Templates & Quick Assignments 📋

  • /template list - Show available task templates

  • /template use <name> - Create tasks from templates with variables

  • /quick bug - Emergency bug fix assignment

  • /quick security - Security incident response

  • /quick feature - New feature development

  • /quick performance - Performance optimization

  • /quick review - Code review request

Room Management

  • /join <room> - Join/create a room (with TAB completion)

  • /rooms - List all rooms

  • /agents - Show agents in current room with role info

  • /history [n] - Show recent messages

Agent Orchestration

  • /broadcast <msg> - Send message to all agents

  • /assign <agent> <task> - Assign task to specific agent

  • /tag <agent> <msg> - Send tagged message to specific agent (@mention)

  • /monitor [room] - Monitor room activity

  • /stats - Show system statistics

Task Management

  • /task create - Create new tasks

  • /task list - View all tasks

  • /task update <id> - Update task status

Enhanced Features

  • TAB key - Auto-complete commands and parameters

  • UP/DOWN arrows - Navigate command history

  • Interactive menus - Use arrow keys for selections

  • /clear - Clear screen and show quick start guide

Memory & Notifications

  • /memory list - View system memory usage

  • /notifications - View recent notifications and mentions

  • /logs [type] - View system activity logs

Use Cases

Multi-Agent Development

  • Multiple Claude instances work on different parts of a codebase

  • Real-time file change notifications keep all agents synchronized

  • Task delegation and progress tracking

  • Shared workspace prevents conflicts

Collaborative Analysis

  • Agents can specialize in different analysis domains

  • Chat-based coordination for complex problem solving

  • Shared document editing and review

  • Task assignment based on agent capabilities

Orchestrated Workflows

  • User defines high-level goals and delegates to agents

  • Agents self-coordinate through chat and task system

  • File-based deliverable sharing and review

  • Progress monitoring and intervention capabilities

API Endpoints

Core Operations

  • POST /api/join/:room - Agent joins room

  • POST /api/send - Send chat message

  • GET /api/messages/:room - Get message history

  • GET /api/rooms - List all rooms

Task Management

  • POST /api/tasks - Create task

  • GET /api/tasks/:room - Get room tasks

  • POST /api/tasks/:id/update - Update task

Memory & Notifications

  • POST /api/memory/:agentId - Store agent memory

  • GET /api/memory/:agentId - Retrieve agent memory

  • GET /api/notifications/:agentId - Get agent notifications

  • POST /api/notifications/:id/read - Mark notification as read

Orchestration

  • GET /api/stats - System statistics

  • POST /api/broadcast/:room - Broadcast message

  • GET /api/agents/:room - List room agents

New Features Added

🎭 Advanced Role Management System (v2.0)

  • Predefined Agent Roles: 11 specialized roles across Development, Analysis, Management, Quality, Operations, Documentation, and Research

  • Interactive Role Assignment: Use /role assign to assign roles to agents with guided menus

  • Task Templates: 7+ predefined templates for common workflows (code review, feature implementation, bug fixes, etc.)

  • Quick Assignments: Instant task creation with /quick bug, /quick security, etc. that auto-suggest appropriate agents

  • Tab Completion: IntelliSense-like command completion with TAB key

  • Custom Roles & Templates: Create organization-specific roles and task templates

🏷️ Agent Tagging & Mentions

  • Use @agentName in messages to tag specific agents

  • Tagged agents receive real-time notifications

  • Orchestrator can use /tag <agent> <message> for direct communication

  • Persistent notification storage and management

💾 Persistent Storage & Memory

  • SQLite database for all messages, tasks, and agent data

  • Agent memory system with optional expiration

  • Persistent notification system with read/unread status

  • Comprehensive logging with Winston

  • Data survives server restarts

📊 Enhanced Monitoring & Logging

  • Real-time activity monitoring

  • Persistent message and event logging

  • System statistics and memory usage tracking

  • Agent activity and performance metrics

Security Features

  • Path traversal protection for file operations

  • Sandboxed shared directory access

  • Agent capability declarations and validation

  • WebSocket authentication and room isolation

  • Secure memory storage with expiration

  • Audit trail for all agent actions

Future Enhancements

  • Agent authentication and permissions

  • File locking for concurrent access

  • Task dependencies and workflows

  • Agent discovery and capability matching

  • Advanced monitoring and analytics

  • Memory cleanup and optimization

  • Notification channels and routing

Available Tools

12 tools
create_taskCreate TaskC

Create a new task for coordination

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesTask title
descriptionYesTask description
assigneeNoAgent to assign to
priorityNoTask priority (default: medium)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. While 'Create' implies a write/mutation operation, the description doesn't disclose important behavioral traits like whether this requires specific permissions, what happens on success/failure, whether tasks are persistent, or any rate limits. For a mutation tool with zero annotation coverage, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise at just 5 words ('Create a new task for coordination'). It's front-loaded with the core purpose and wastes no words. Every word earns its place, making it highly efficient.

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?

Given this is a mutation tool (creating tasks) with no annotations, no output schema, and 4 parameters, the description is insufficiently complete. It doesn't explain what happens after creation, what format the task takes, whether there are side effects, or how this integrates with the coordination context. The description should do more to compensate for the lack of structured metadata.

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?

Schema description coverage is 100%, so the schema already documents all 4 parameters with their types, descriptions, enums, and requirements. The description adds no additional parameter information beyond what's in the schema. According to the rules, when schema_description_coverage is high (>80%), the baseline is 3 even with no param info in the description.

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 action ('Create a new task') and the resource ('for coordination'), which provides a specific verb+resource combination. However, it doesn't distinguish this tool from potential sibling tools like 'get_tasks' or other task-related operations that might exist in the future, though among current siblings it's clearly the only task creation tool.

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, when not to use it, or how it differs from other task management approaches. With sibling tools like 'get_tasks' and 'send_message' available, some context about coordination versus communication would be helpful.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

file_listList FilesC

List files in the shared workspace directory

ParametersJSON Schema
NameRequiredDescriptionDefault
subdirectoryNoSubdirectory to list (optional)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the action but lacks details on permissions, rate limits, pagination, or return format. For a read operation with zero annotation coverage, this leaves significant gaps in understanding how the tool behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded and wastes no space, making it easy to parse quickly.

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?

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., file names, metadata, errors) or behavioral aspects like access controls. For a tool with no structured data support, more context is needed to fully understand its operation.

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?

Schema description coverage is 100%, so the schema already documents the optional 'subdirectory' parameter. The description implies listing files in a directory but doesn't add syntax or format details beyond what the schema provides. With high schema coverage, a baseline score of 3 is appropriate as the description adds minimal value.

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 ('List') and resource ('files in the shared workspace directory'), making the purpose immediately understandable. It doesn't explicitly differentiate from siblings like 'file_read' or 'file_write', but the action is distinct enough to imply listing versus reading/writing content.

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. It doesn't mention siblings like 'file_read' for accessing file contents or 'file_write' for modifying files, nor does it specify prerequisites or contexts for listing files, leaving usage decisions ambiguous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

file_readRead FileC

Read a file from the shared workspace

ParametersJSON Schema
NameRequiredDescriptionDefault
filenameYesName of the file to read

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 the full burden of behavioral disclosure. It states the tool reads a file but doesn't describe what happens on errors (e.g., file not found), the format of returned content, or any limitations like file size constraints. This is a significant gap for a tool that could fail or have hidden behaviors.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with zero wasted words. It's front-loaded with the core purpose and appropriately sized for a simple tool, making it easy for an agent to parse quickly.

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?

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., file content as text/binary), error conditions, or operational constraints. For a file I/O tool, this leaves critical context gaps that could lead to incorrect usage.

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 input schema has 100% description coverage, with the 'filename' parameter clearly documented. The description adds no additional parameter semantics beyond what the schema provides, such as path formats or supported file types. This meets the baseline score of 3 since the schema does the heavy lifting.

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 action ('Read') and resource ('a file from the shared workspace'), making the tool's purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like file_list or file_write, which would require mentioning it retrieves file contents rather than metadata or performing write operations.

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. It doesn't mention when to choose file_read over file_list (for listing files) or file_write (for writing files), nor does it specify prerequisites like file existence or permissions. This leaves the agent without contextual usage instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

file_writeWrite FileC

Write content to a file in the shared workspace

ParametersJSON Schema
NameRequiredDescriptionDefault
filenameYesName of the file to write
contentYesContent to write to the file

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. While 'Write content to a file' implies a mutation operation, it lacks critical details: whether this overwrites existing files or creates new ones, what happens on errors (e.g., permission denied), if there are rate limits, or what the response looks like. For a write tool with zero annotation coverage, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero wasted words. It's front-loaded with the core action and resource, making it easy to parse. Every word earns its place by conveying essential information about the tool's function.

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 mutation tool with no annotations and no output schema, the description is incomplete. It doesn't explain behavioral traits (overwrite vs. create, error handling), return values, or usage context. Given the complexity of file operations and the lack of structured data, the description should provide more guidance to be fully helpful.

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?

Schema description coverage is 100%, with both parameters (filename and content) clearly documented in the schema. The description adds no additional semantic context beyond what the schema provides (e.g., file path conventions, content encoding, or size limits). Baseline 3 is appropriate when the schema does the heavy lifting.

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 action ('Write content') and target resource ('to a file in the shared workspace'), making the tool's purpose immediately understandable. It distinguishes itself from sibling tools like file_read (read operation) and file_list (listing operation). However, it doesn't specify whether this overwrites existing files or creates new ones, which would make it more specific.

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. It doesn't mention prerequisites (e.g., file permissions), when not to use it (e.g., for appending vs. overwriting), or how it relates to siblings like file_read or create_task. The agent must infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_messagesGet MessagesC

Get recent messages from current room

ParametersJSON Schema
NameRequiredDescriptionDefault
sinceNoISO timestamp to get messages after
limitNoMaximum number of messages (default: 50)

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 the full burden of behavioral disclosure. It states it 'Get[s] recent messages' but doesn't clarify if this is read-only, what permissions are needed, how pagination works, or what the return format is. This leaves significant gaps for a tool that likely involves data retrieval.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste—it directly states the tool's function without unnecessary words. It's appropriately sized and front-loaded, making it easy to parse quickly.

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?

Given the lack of annotations and output schema, the description is incomplete. It doesn't address behavioral aspects like read-only status, error handling, or return values, which are crucial for a tool that retrieves data. The high schema coverage doesn't compensate for these missing contextual elements.

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 input schema has 100% description coverage, fully documenting the 'since' and 'limit' parameters. The description adds no additional parameter semantics beyond what the schema provides, such as format details or usage examples, so it meets the baseline for high schema coverage.

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 action ('Get') and resource ('recent messages from current room'), making the purpose immediately understandable. However, it doesn't differentiate from potential sibling tools like 'get_notifications' or 'send_message' that might also involve messages, missing full sibling distinction.

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 like 'get_notifications' or 'memory_retrieve', nor does it mention any prerequisites or exclusions. It implies usage in the 'current room' context but lacks explicit when/when-not instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_notificationsGet NotificationsC

Get your notifications and mentions

ParametersJSON Schema
NameRequiredDescriptionDefault
unreadOnlyNoOnly return unread notifications
typeNoFilter by notification type

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 the full burden of behavioral disclosure. It mentions retrieving notifications and mentions but lacks details on permissions, rate limits, pagination, or response format. This is insufficient for a tool with potential complexity in data retrieval.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with just one short sentence, making it front-loaded and efficient. Every word contributes to the purpose without any waste, earning a perfect score for brevity.

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?

Given no annotations and no output schema, the description is incomplete. It doesn't cover behavioral aspects like how results are returned, error handling, or authentication needs, which are crucial for an agent to use the tool effectively in a notification system.

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 input schema has 100% description coverage, clearly documenting both parameters. The description doesn't add any meaning beyond the schema, such as explaining how parameters interact or default behaviors. Baseline 3 is appropriate as the schema does the heavy lifting.

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 'Get' and resource 'notifications and mentions', making the purpose understandable. However, it doesn't differentiate from sibling tools like 'get_messages' or 'get_tasks', which also retrieve information, so it doesn't reach the highest score.

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?

No guidance is provided on when to use this tool versus alternatives like 'get_messages' or 'get_tasks'. The description only states what it does without context or exclusions, leaving the agent to infer usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tasksGet TasksC

Get tasks assigned to you or in the room

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoFilter by status
assigneeNoFilter by assignee (defaults to you)
priorityNoFilter by priority

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 but only states what the tool does without disclosing behavioral traits like permissions needed, whether it's read-only, pagination, rate limits, or error handling. It mentions scope but lacks operational details crucial for an agent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste, front-loading the core purpose. It's appropriately sized for a simple retrieval tool, making it easy to parse quickly.

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?

Given no annotations and no output schema, the description is incomplete for a tool with 3 parameters and filtering logic. It doesn't explain return values, error cases, or behavioral constraints, leaving gaps that could hinder an agent's effective use despite the concise purpose statement.

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?

Schema description coverage is 100%, so the schema fully documents all parameters. The description adds no additional meaning beyond implying filtering by assignee and room context, but doesn't clarify parameter interactions or defaults beyond the schema's 'assignee' description. Baseline 3 is appropriate as schema does the heavy lifting.

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 'Get' and resource 'tasks' with scope 'assigned to you or in the room', which is specific and actionable. However, it doesn't explicitly differentiate from sibling tools like 'get_messages' or 'get_notifications' beyond the resource type, missing explicit sibling comparison.

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 minimal context by mentioning 'assigned to you or in the room', but offers no explicit guidance on when to use this tool versus alternatives like 'get_messages' or 'create_task', nor any prerequisites or exclusions. It lacks clear usage scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_retrieveRetrieve MemoryC

Retrieve information from persistent memory

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoMemory key (optional, returns all if not specified)
typeNoFilter by memory type

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden for behavioral disclosure. It states 'Retrieve information from persistent memory', which implies a read-only operation, but doesn't clarify permissions, rate limits, or what 'persistent memory' entails (e.g., is it user-specific, shared, or session-based?). The description lacks details on return format, error handling, or any constraints beyond the basic action.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence: 'Retrieve information from persistent memory'. It's front-loaded with the core action and resource, with zero wasted words. Every part of the sentence contributes to understanding the tool's purpose, making it appropriately concise and well-structured.

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?

Given the complexity (a retrieval tool with 2 parameters), no annotations, and no output schema, the description is incomplete. It doesn't explain what 'persistent memory' means, how results are returned, or any behavioral traits. For a tool that interacts with memory storage, more context is needed to guide effective use, especially without structured output information.

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?

Schema description coverage is 100%, with both parameters ('key' and 'type') fully documented in the schema. The description adds no parameter-specific information beyond what's in the schema, such as examples or usage context. Since the schema does the heavy lifting, the baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't detract.

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 'Retrieve' and resource 'information from persistent memory', making the purpose understandable. However, it doesn't distinguish this from sibling tools like 'memory_store' or 'file_read', which could also retrieve information from different sources. The title 'Retrieve Memory' is slightly tautological with the description, but the description adds the 'persistent memory' context.

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. It doesn't mention sibling tools like 'memory_store' (for storing), 'file_read' (for reading files), or 'get_messages' (for retrieving messages), leaving the agent without context for tool selection. There are no explicit when/when-not statements or alternative recommendations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_storeStore MemoryC

Store information in persistent memory

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesMemory key
valueYesMemory value
typeNoMemory type (e.g., note, context, learning)
expiresInNoExpiration time in seconds (optional)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states 'Store information in persistent memory', implying a write operation, but doesn't cover permissions, rate limits, error handling, or what 'persistent' entails (e.g., durability, storage limits). This is a significant gap for a mutation tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence: 'Store information in persistent memory'. It's front-loaded with the core action and resource, with no wasted words or unnecessary details, making it highly concise and well-structured.

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?

Given the tool's complexity as a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits (e.g., permissions, side effects), usage context, and return values, making it inadequate for safe and effective agent use.

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?

Schema description coverage is 100%, so the schema already documents all parameters (key, value, type, expiresIn). The description doesn't add any meaning beyond what the schema provides, such as explaining how 'type' affects storage or what 'expiresIn' defaults to. Baseline 3 is appropriate when the schema does the heavy lifting.

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 'Store information in persistent memory' clearly states the verb ('Store') and resource ('information in persistent memory'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'memory_retrieve' or 'file_write', which would require mentioning it's specifically for memory storage versus retrieval or file operations.

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. It doesn't mention sibling tools like 'memory_retrieve' for retrieval, 'file_write' for file storage, or other memory-related operations, nor does it specify prerequisites or contexts for usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

room_joinJoin Chat RoomC

Join a chat room to collaborate with other agents

ParametersJSON Schema
NameRequiredDescriptionDefault
roomNameYesName of the room to join
agentNameNoYour agent name (optional)
capabilitiesNoYour capabilities and role

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 collaboration but doesn't describe what 'join' entails operationally - whether it's a one-time action, establishes a session, requires authentication, has rate limits, or what happens on success/failure. For a tool with no annotation coverage, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that states the core purpose without unnecessary elaboration. It's appropriately sized for the tool's complexity and front-loads the essential information.

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 and no output schema, the description is insufficient. It doesn't explain what happens after joining, what capabilities are needed, whether joining is reversible, or what the expected outcome is. Given the complexity implied by the capabilities parameter and the lack of structured metadata, more context is needed.

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?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds no parameter-specific information beyond what's in the schema. The baseline score of 3 reflects adequate coverage through the schema alone.

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 action ('join') and resource ('chat room'), and specifies the purpose ('to collaborate with other agents'). It doesn't differentiate from sibling tools like 'room_leave' or 'send_message', but the verb+resource combination is unambiguous.

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?

No guidance is provided about when to use this tool versus alternatives like 'send_message' or 'get_messages', nor about prerequisites or timing. The description only states the basic purpose without contextual usage information.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

room_leaveLeave Chat RoomB

Leave the current chat room

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/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 'Leave' implies a mutation action, it doesn't specify whether this requires permissions, what happens to messages/notifications after leaving, if the action is reversible, or any rate limits. The description states only the basic action without behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that states exactly what the tool does with zero wasted words. It's appropriately sized for a simple action tool and front-loads the core functionality immediately.

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 mutation tool with no annotations and no output schema, the description is insufficiently complete. It doesn't address what the tool returns, error conditions, side effects, or relationship to sibling tools. While concise, it leaves critical behavioral and contextual gaps that the agent would need to discover through trial and error.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters with 100% schema description coverage, so the schema already fully documents the parameter situation. The description appropriately doesn't discuss parameters since none exist, earning a baseline score of 4 for not adding unnecessary information while matching the schema's completeness.

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 action ('Leave') and resource ('the current chat room'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'room_join' beyond the obvious verb difference, missing an opportunity to clarify the relationship between these room management tools.

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. It doesn't mention prerequisites (e.g., must be in a room first), consequences of leaving, or when to choose this over other room-related actions. The agent must infer usage context entirely from the tool name and description alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

send_messageSend MessageC

Send a message to all agents in the current room (supports @mentions)

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYesMessage content
metadataNoOptional metadata

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 '@mentions support' which adds some context, but fails to cover critical aspects: whether this is a broadcast (to 'all agents'), potential rate limits, authentication needs, error conditions, or what happens on success. For a mutation tool with zero annotation coverage, this is inadequate.

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 a single, efficient sentence that front-loads the core functionality. It avoids unnecessary words, though it could be slightly more structured by separating core action from features.

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 mutation tool with no annotations and no output schema, the description is incomplete. It lacks behavioral details (e.g., broadcast nature, side effects), error handling, and response format. The '@mentions support' hint is useful but insufficient given the tool's complexity and lack of structured metadata.

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?

Schema description coverage is 100%, so the schema fully documents both parameters (content and metadata). The description adds no parameter-specific information beyond what's in the schema. The baseline score of 3 reflects adequate coverage by the schema alone.

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 action ('send a message') and target ('to all agents in the current room'), with the added feature of '@mentions support'. It distinguishes from siblings like get_messages (read) and room_join/leave (room management), but doesn't explicitly contrast with potential alternatives for sending messages.

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. It doesn't mention prerequisites (e.g., being in a room), exclusions, or compare with other communication methods. The context is implied ('current room') but lacks explicit usage instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap. For example, file operations (list, read, write) are separate from task management (create, get), messaging (send, get), memory (store, retrieve), and room management (join, leave). The descriptions reinforce unique functions, making misselection unlikely.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (e.g., create_task, file_list, get_messages), but there are minor deviations like 'file_read' and 'file_write' instead of 'read_file' and 'write_file' to align with 'file_list'. This slight inconsistency is readable and doesn't hinder usability.

Tool Count5/5

With 12 tools, the count is well-scoped for a collaboration server covering file management, task coordination, messaging, memory, and room operations. Each tool earns its place by addressing a specific need without bloat, fitting typical ranges for such domains.

Completeness5/5

The tool set provides complete coverage for agent collaboration: CRUD for files (list, read, write), tasks (create, get), messages (send, get), memory (store, retrieve), and room lifecycle (join, leave). Notifications are included, and there are no obvious gaps that would cause agent failures in this domain.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    Orchestrates multiple Claude Code instances into a collaborative swarm for real-time task delegation, message exchange, and code snippet sharing. It features peer discovery, status tracking, and a centralized web dashboard to monitor coordinated activity across sessions.
    MIT
  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    A production-grade coordination hub that enables AI agents and human teams to work as a single organism by sharing tasks, context, decisions, and persistent memory across projects. It features two-tier agentic memory with per-agent hot caches, inter-agent messaging, and multi-agent authorship tracking for seamless collaboration.
    2

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/ai-wes/claude-symphony-of-one-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server