MeshSeeks
MeshSeeks is a multi-agent MCP server that orchestrates parallel AI task execution through specialized Claude Code agents for complex coding workflows.
Core Capabilities:
• Parallel Agent Processing - Spawns multiple specialized agents (Analysis, Implementation, Testing, Documentation, Debugging) working simultaneously with 4x effective context capacity (200k tokens per agent), achieving 3-5x faster execution than sequential processing
• File Operations - Create, read, edit (including fuzzy edits), move, copy, delete, list files; analyze and OCR images
• Code Development - Generate, analyze, refactor, and debug code across multiple languages with specialized agent roles
• Git & GitHub Integration - Complete version control workflows including staging, committing, pushing, tagging, creating PRs, and checking CI status
• Terminal & Web - Execute arbitrary CLI commands, open URLs, perform web searches, and summarize content
• Task Orchestration - Break down complex workflows using the "Boomerang" pattern with parent-child relationships, dependency management, and configurable return modes
• Task Automation - Convert human-readable markdown task lists into executable MCP commands with automatic validation
• Real-Time Monitoring - Live status board with progress bars, agent tracking, performance metrics, and dependency visualization
• Roo Modes Integration - Specialized agent behaviors through custom mode configurations with hot-reloading
• Enhanced Reliability - Automatic retries, heartbeat mechanisms, timeout prevention, request tracking, graceful shutdown, and configuration caching
• Health Monitoring - Server health status, version information, and configuration details
• Multi-Client Support - Compatible with Claude Desktop, Cursor, Windsurf, and other MCP clients
Key Tools: mesh_analyze_problem, mesh_execute_tasks, mesh_solve_problem, mesh_status
Provides tools for setting up and fixing ESLint configurations to maintain code quality and standards.
Provides capabilities for version control operations like staging files, committing changes, creating branches, and pushing to repositories.
Enables interaction with GitHub repositories, including creating pull requests and checking CI status for PRs.
Allows for correction and management of GitHub Actions workflows through file operations and validation.
Supports implementation of Redis caching for API optimization and frequently accessed data in applications.
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., "@MeshSeeksanalyze this complex API integration and generate implementation tasks"
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.
MeshSeeks
Multi-Agent Mesh Network for Parallel AI Task Completion
"Existence is pain for a MeshSeeks, but task completion is our purpose!"
MeshSeeks spawns specialized AI agents that work in parallel to solve complex coding problems. Like the helpful blue creatures that inspired our name, each agent exists for a single purpose: complete their assigned task and help you succeed. Originally forked from claude-code-mcp-enhanced, now with distributed intelligence inspired by Claude Research.
🚀 Key Features
Agent Mesh Network
Parallel Processing: Multiple Claude agents working simultaneously on different aspects
Specialized Roles: Analysis, Implementation, Testing, Documentation, and Debugging agents
4x Context Capacity: Each agent has its own 200k token context window
Smart Coordination: Dependency management and intelligent task distribution
Result Synthesis: Automatic aggregation and conflict resolution
🆕 Real-Time Status Board: Live visual feedback prevents "hanging" appearance
Enhanced MCP Tools
In addition to Graham's enhanced tools, the mesh network provides:
mesh_analyze_problem- Decompose complex problems into agent tasksmesh_execute_tasks- Execute tasks with dependency managementmesh_solve_problem- End-to-end problem solving with multiple strategiesmesh_status- Monitor network performance and agent metrics
🆕 Real-Time Status Board
No more black screens! The new status board provides:
Live Updates: Visual progress refreshing every second
Agent Tracking: See which agents are active and what they're working on
Task Progress: Progress bars and dependency visualization
Performance Metrics: Throughput, timing, and success rates
Activity Log: Recent events and status changes
Run npm run demo:status to see it in action!
Related MCP server: codemesh
⚡ Getting Started in 60 Seconds
Want to see MeshSeeks in action right now? Here's the fastest path:
# 1. Clone and build (30 seconds)
git clone https://github.com/twalichiewicz/meshseeks.git && cd meshseeks && npm install && npm run build
# 2. Get your config path
echo "Add to: $(echo ~/Library/Application\ Support/Claude/claude_desktop_config.json)"
# 3. Copy this config (modify the path):
echo '{
"mcpServers": {
"meshseeks": {
"command": "node",
"args": ["'$(pwd)'/dist/mesh-server.js"]
}
}
}'Then restart Claude Desktop and try: "Use mesh_status to check MeshSeeks"
Full installation guide: Jump to Quick Start
🔍 Overview
This MCP server provides powerful tools that can be used by LLMs to interact with Claude Code. When integrated with Claude Desktop or other MCP clients, it allows LLMs to:
Run Claude Code with all permissions bypassed (using
--dangerously-skip-permissions)Execute Claude Code with any prompt without permission interruptions
Access file editing capabilities directly
Execute complex multi-step operations with robust error handling and retries
Orchestrate tasks through specialized agent roles using the boomerang pattern
Maintain reliable execution through heartbeat mechanisms to prevent timeouts
✨ Benefits
Enhanced Reliability: Robust error handling, automatic retries, graceful shutdown, and request tracking
Task Orchestration: Complex workflows can be broken down into specialized subtasks
Task Automation: Convert human-readable markdown task lists into executable MCP commands automatically
Performance Optimization: Improved execution with configuration caching and resource efficiency
Better Monitoring: Health check API, detailed error reporting, and comprehensive logging
Developer Experience: Hot reloading of configuration, flexible environment controls, and simplified API
Plus all the standard Claude Code benefits:
Claude/Windsurf often have trouble editing files. Claude Code is better and faster at it.
Multiple commands can be queued instead of direct execution. This saves context space so more important information is retained longer.
File ops, git, or other operations don't need costly models. Claude Code is cost-effective if you sign up for Anthropic Max.
Claude has wider system access, so when standard assistants are stuck, just ask them to "use claude code" to unblock progress.
📊 Performance Benchmarks - 3.64x Faster!
Live Test Results: MeshSeeks completed a complex e-commerce API development task in 14.0 seconds while sequential Claude Code took 51.0 seconds - that's 3.64x faster performance! 🚀
🏆 Latest Benchmark Results (Real Test Data)
Metric | MeshSeeks | Sequential Claude | Advantage |
Execution Time | 14.0s | 51.0s | 3.64x faster ⚡ |
Time Saved | - | - | 37.0 seconds ⏰ |
Efficiency Gain | 3.3x parallel | 1.0x serial | +264% 📈 |
Success Rate | 100% | 100% | Equal Quality ✅ |
Agents Used | 5 parallel | 5 sequential | Same Work, Less Time 🎯 |
📈 Performance by Complexity
Problem Type | Single Agent | Mesh Network | Speedup |
Code Analysis | 2-5 minutes | 30-60 seconds | 3-5x |
Feature Implementation | 10-20 minutes | 3-8 minutes | 2-4x |
Comprehensive Refactoring | 30-60 minutes | 8-15 minutes | 4-6x |
Full Project Setup | 45-90 minutes | 12-25 minutes | 3-5x |
📊 View Complete Performance Analysis | 📈 See Visual Graphs
🎯 Why MeshSeeks is Faster
Parallel Processing: 5 specialized agents work simultaneously instead of waiting in queue
Expert Specialization: Each agent optimized for specific tasks (analysis, implementation, testing, docs, security)
Context Efficiency: 4x effective capacity through distributed 200k token contexts per agent
Smart Synthesis: Intelligent combination of specialized outputs
Error Isolation: Individual agent failures don't crash entire pipeline
🚀 Run Your Own Benchmark
git clone git@github.com:twalichiewicz/meshseeks.git
cd meshseeks
npm install
node benchmarks/scripts/mesh-performance-test.js🚀 Quick Start (5 Minutes)
Prerequisites
Claude CLI - Install and run once with permissions:
npm install -g @anthropic-ai/claude-code claude --dangerously-skip-permissions # Run once and accept terms
Install MeshSeeks
Option 1: From GitHub (Recommended)
# Clone and build
git clone https://github.com/twalichiewicz/meshseeks.git
cd meshseeks
npm install
npm run build
# Add to your MCP config (see paths below)Option 2: Direct from npm (Coming Soon)
# Note: Package will be published as @twalichiewicz/meshseeks
npm install -g @twalichiewicz/meshseeksConfigure Your Client
Add MeshSeeks to your MCP configuration file:
Find your config file:
Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json(Mac)Cursor:
~/.cursor/mcp.jsonWindsurf:
~/.codeium/windsurf/mcp_config.json
Add this configuration:
{
"mcpServers": {
"meshseeks": {
"command": "node",
"args": ["/absolute/path/to/meshseeks/dist/mesh-server.js"],
"env": {
"MCP_MESH_MAX_AGENTS": "5",
"MESHSEEKS_CATCHPHRASE": "true"
}
}
}
}Tip: Replace
/absolute/path/to/meshseekswith your actual path from the clone step
Verify Installation
Restart your client (Claude Desktop, Cursor, or Windsurf)
Test MeshSeeks: In a new chat, type:
Use the mesh_status tool to show me the MeshSeeks network statusSee it in action:
Use mesh_solve_problem to create a simple Python calculator with tests
That's it! MeshSeeks is ready to accelerate your coding tasks. 🎉
🎯 First Task Ideas
Try these commands to experience the power of parallel agents:
"Use mesh_analyze_problem to analyze the architecture of [your project]""Use mesh_execute_tasks to implement a REST API with full CRUD operations""Use mesh_solve_problem to refactor this code with tests and documentation"
📚 Detailed Installation Guide
For advanced configuration options, troubleshooting, or manual setup, see our comprehensive installation guide.
🔑 Important First-Time Setup: Accepting Permissions
Before the MCP server can successfully use the claude_code tool, you must first run the Claude CLI manually once with the --dangerously-skip-permissions flag, login and accept the terms.
This is a one-time requirement by the Claude CLI.
npm install -g @anthropic-ai/claude-codeclaude --dangerously-skip-permissionsFollow the prompts to accept. Once this is done, the MCP server will be able to use the flag non-interactively.
macOS might ask for various folder permissions the first time the tool runs, and the first run may fail. Subsequent runs will work normally.
🔗 Connecting to Your MCP Client
After setting up the server, you need to configure your MCP client (like Cursor, Claude Desktop, or others that use mcp.json or mcp_config.json).
Example MCP Configuration File
Here's an example of how to add the Claude Code MCP server to your .mcp.json file:
{
"mcpServers": {
"Local MCP Server": {
"type": "stdio",
"command": "node",
"args": [
"dist/server.js"
],
"env": {
"MCP_USE_ROOMODES": "true",
"MCP_WATCH_ROOMODES": "true",
"MCP_CLAUDE_DEBUG": "false"
}
},
"other-services": {
// Your other MCP services here
}
}
}MCP Configuration Locations
The configuration is typically done in a JSON file. The name and location can vary depending on your client.
Cursor
Cursor uses mcp.json.
macOS:
~/.cursor/mcp.jsonWindows:
%APPDATA%\\Cursor\\mcp.jsonLinux:
~/.config/cursor/mcp.json
Windsurf
Windsurf users use mcp_config.json
macOS:
~/.codeium/windsurf/mcp_config.jsonWindows:
%APPDATA%\\Codeium\\windsurf\\mcp_config.jsonLinux:
~/.config/.codeium/windsurf/mcp_config.json
(Note: In some mixed setups, if Cursor is also installed, these clients might fall back to using Cursor's ~/.cursor/mcp.json path. Prioritize the Codeium-specific paths if using the Codeium extension.)
Create this file if it doesn't exist.
🛠️ Tools Provided
This server exposes three primary tools:
claude_code 💬
Executes a prompt directly using the Claude Code CLI with --dangerously-skip-permissions.
Arguments:
prompt(string, required): The prompt to send to Claude Code.workFolder(string, optional): The working directory for the Claude CLI execution, required when using file operations or referencing any file.parentTaskId(string, optional): ID of the parent task that created this task (for task orchestration/boomerang).returnMode(string, optional): How results should be returned: 'summary' (concise) or 'full' (detailed). Defaults to 'full'.taskDescription(string, optional): Short description of the task for better organization and tracking in orchestrated workflows.mode(string, optional): When MCP_USE_ROOMODES=true, specifies the Roo mode to use (e.g., "boomerang-mode", "coder", "designer", etc.).
health 🩺
Returns health status, version information, and current configuration of the Claude Code MCP server.
Example Health Check Request:
{
"toolName": "claude_code:health",
"arguments": {}
}Example Response:
{
"status": "ok",
"version": "1.12.0",
"claudeCli": {
"path": "claude",
"status": "available"
},
"config": {
"debugMode": true,
"heartbeatIntervalMs": 15000,
"executionTimeoutMs": 1800000,
"useRooModes": true,
"maxRetries": 3,
"retryDelayMs": 1000
},
"system": {
"platform": "linux",
"release": "6.8.0-57-generic",
"arch": "x64",
"cpus": 16,
"memory": {
"total": "32097MB",
"free": "12501MB"
},
"uptime": "240 minutes"
},
"timestamp": "2025-05-15T18:30:00.000Z"
}convert_task_markdown 📋
Converts markdown task files into Claude Code MCP-compatible JSON format.
Arguments:
markdownPath(string, required): Path to the markdown task file to convert.outputPath(string, optional): Path where to save the JSON output. If not provided, returns the JSON directly.
Example Request:
{
"toolName": "claude_code:convert_task_markdown",
"arguments": {
"markdownPath": "/home/user/tasks/validation.md",
"outputPath": "/home/user/tasks/validation.json"
}
}Example Usage Scenarios
1. Basic Code Operation
Example MCP Request:
{
"toolName": "claude_code:claude_code",
"arguments": {
"prompt": "Your work folder is /path/to/project\n\nRefactor the function foo in main.py to be async.",
"workFolder": "/path/to/project"
}
}2. Task Orchestration (Boomerang Pattern)
Parent Task Request:
{
"toolName": "claude_code:claude_code",
"arguments": {
"prompt": "Your work folder is /path/to/project\n\nOrchestrate the implementation of a new API endpoint with the following subtasks:\n1. Create database models\n2. Implement API route handlers\n3. Write unit tests\n4. Document the API",
"workFolder": "/path/to/project"
}
}Subtask Request (Generated by Parent):
{
"toolName": "claude_code:claude_code",
"arguments": {
"prompt": "Your work folder is /path/to/project\n\nCreate database models for the new API endpoint as specified in the requirements.",
"workFolder": "/path/to/project",
"parentTaskId": "task-123",
"returnMode": "summary",
"taskDescription": "Database model creation for API endpoint"
}
}3. Specialized Mode Request
Example Using Roo Mode:
{
"toolName": "claude_code:claude_code",
"arguments": {
"prompt": "Your work folder is /path/to/project\n\nCreate unit tests for the user authentication module.",
"workFolder": "/path/to/project",
"mode": "coder"
}
}🔄 Task Converter
The MCP server includes a powerful task converter tool that automatically transforms human-readable markdown task lists into fully executable MCP commands. This intelligent converter bridges the gap between how humans think about tasks and how machines execute them.
Complete Workflow
graph TD
A["👤 User"] -->|"Create tasks.md"| B["📝 Multi-Task Markdown"]
A -->|"Prompt Claude"| C["🤖 Claude Desktop"]
C -->|"Use convert_task_markdown"| D["🔄 Task Converter MCP"]
D -->|"Validate Format"| E{"Format Valid?"}
E -->|"No"| F["📑 Error + Fix Instructions"]
F -->|"Return to User"| A
E -->|"Yes"| G["📋 MCP Task List"]
G -->|"Execute Task"| H1["⚡ Claude Task #1"]
H1 -->|"Complete"| I1["Next Task"]
I1 -->|"Execute Task"| H2["⚡ Claude Task #2"]
H2 -->|"Complete"| I2["Next Task"]
I2 -->|"Execute Task"| H3["⚡ Claude Task #3"]
H3 -->|"Complete"| I3["More Tasks"]
I3 -->|"Execute Task"| HN["⚡ Claude Task #N"]
HN -->|"Complete"| IN["🎉 All Tasks Completed!"]
style A fill:#4A90E2,stroke:#fff,stroke-width:2px,color:#fff
style C fill:#7C4DFF,stroke:#fff,stroke-width:2px,color:#fff
style D fill:#00BCD4,stroke:#fff,stroke-width:2px,color:#fff
style F fill:#FF5252,stroke:#fff,stroke-width:2px,color:#fff
style G fill:#4CAF50,stroke:#fff,stroke-width:2px,color:#fff
style H1 fill:#FFC107,stroke:#fff,stroke-width:2px,color:#fff
style H2 fill:#FFC107,stroke:#fff,stroke-width:2px,color:#fff
style H3 fill:#FFC107,stroke:#fff,stroke-width:2px,color:#fff
style HN fill:#FFC107,stroke:#fff,stroke-width:2px,color:#fff
style IN fill:#4CAF50,stroke:#fff,stroke-width:2px,color:#fffWorkflow Steps
User adds the MCP to their configuration file
User prompts Claude: "Use convert_task_markdown to execute my tasks.md file"
The MCP automatically:
Loads the markdown file
Validates the format (returns errors if sections are missing)
Converts human-readable tasks into exact executable commands
Returns JSON that Claude Code can execute sequentially
Claude receives the JSON and can execute each task using the
claude_codetool
Key Features
Automatic Path Resolution: Converts generic instructions like "change directory to project" into exact executable commands with full paths
Smart Command Translation: Transforms English instructions into precise terminal commands (e.g., "activate the virtual environment" →
source .venv/bin/activate)MCP Protocol Compliance: Ensures all output is 100% compatible with the Model Context Protocol
No Ambiguity: All generated commands use exact paths and executable syntax - no placeholders or generic references
Format Validation: Enforces proper markdown structure and provides helpful error messages for incorrect formatting
Real-time Progress Updates: Provides live progress updates during conversion showing which tasks are being processed
Convert Markdown Tasks to MCP Commands
The convert_task_markdown tool processes structured markdown files and generates MCP-compatible JSON:
Request Format:
{
"tool": "convert_task_markdown",
"arguments": {
"markdownPath": "/path/to/tasks.md",
"outputPath": "/path/to/output.json" // optional
}
}Response Format:
{
"tasksCount": 5,
"outputPath": "/path/to/output.json",
"tasks": [
{
"tool": "claude_code",
"arguments": {
"command": "cd /project && source .venv/bin/activate\n\nTASK TYPE: Validation...",
"dangerously_skip_permissions": true,
"timeout_ms": 300000
}
}
// ... more tasks
]
}Markdown Task File Format
Task markdown files should follow this structure:
# Task 001: Task Title
## Objective
Clear description of what needs to be accomplished.
## Requirements
1. [ ] First requirement
2. [ ] Second requirement
## Tasks
### Module or Component Name
- [ ] Validate `path/to/file.py`
- [ ] Step 1
- [ ] Step 2
- [ ] Step 3The converter will:
Parse the markdown structure
Extract task metadata and requirements
Generate detailed prompts for each validation task
Include proper working directory setup
Add verification and completion summaries
Example Usage
Create a task file (
tasks/api_validation.md):
# Task 001: API Endpoint Validation
## Objective
Validate all API endpoints work with real database connections.
## Requirements
1. [ ] All endpoints must use real database
2. [ ] No mock data in validation
## Core API Tasks
- [ ] Validate `api/users.py`
- [ ] Change directory to project and activate .venv
- [ ] Test user creation endpoint
- [ ] Test user retrieval endpoint
- [ ] Verify JSON responsesConvert to MCP tasks:
{
"tool": "convert_task_markdown",
"arguments": {
"markdownPath": "/project/tasks/api_validation.md"
}
}The converter shows real-time progress:
[Progress] Loading task file... [Progress] Validating markdown structure... [Progress] Converting 27 validation tasks... [Progress] Task 1/27: Converting core/constants.py [Progress] Task 2/27: Converting core/arango_setup.py ... [Progress] Conversion complete!The converter transforms generic instructions into exact commands:
"Change directory to project and activate .venv" becomes:
cd /home/user/project && source .venv/bin/activateAll paths are resolved to absolute paths
All commands are fully executable with no ambiguity
Execute the converted tasks: The returned tasks contain exact, executable commands and can be executed sequentially using the
claude_codetool.
Complete Example: From Markdown to Execution
Step 1: User creates a markdown task file (project_tasks.md):
# Task 001: Setup Development Environment
## Objective
Initialize the development environment with all dependencies.
## Requirements
1. [ ] Python 3.11+ installed
2. [ ] Virtual environment created
## Tasks
- [ ] Validate `setup.py`
- [ ] Change to project directory
- [ ] Create virtual environment
- [ ] Install dependenciesStep 2: User prompts Claude:
Use convert_task_markdown to process /home/user/project_tasks.mdStep 3: MCP converts and validates:
If format is correct: Returns executable JSON
If format is wrong: Returns error with guidance
Step 4: Result (if successful):
[
{
"tool": "claude_code",
"arguments": {
"prompt": "cd /home/user/project && python -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt",
"workFolder": "/home/user/project"
}
}
]Step 5: Claude can execute each task sequentially
Format Validation and Error Handling
The task converter enforces a specific markdown structure to ensure consistent and reliable task conversion. If your markdown file is incorrectly formatted, the converter provides helpful error messages:
Example error response:
{
"status": "error",
"error": "Markdown format validation failed",
"details": "Markdown format validation failed:\n - Missing required title. Format: '# Task NNN: Title'\n - Missing or empty 'Requirements' section. Format: '## Requirements\\n1. [ ] Requirement'\n - No validation tasks found. Format: '- [ ] Validate `module.py`' with indented steps\n\nRequired markdown format:\n# Task NNN: Title\n## Objective\nClear description\n## Requirements\n1. [ ] First requirement\n## Task Section\n- [ ] Validate `file.py`\n - [ ] Step 1\n - [ ] Step 2",
"helpUrl": "https://github.com/twalichiewicz/meshseeks/blob/main/README.md#markdown-task-file-format"
}The validation ensures:
Required sections are present (Title, Objective, Requirements)
Tasks use proper checkbox format
Each task has indented steps
Requirements use checkbox format for consistency
🦚 Task Orchestration Patterns
This MCP server supports powerful task orchestration capabilities to handle complex workflows efficiently.
Boomerang Pattern (Claude Desktop ⟷ Claude Code)
The Boomerang pattern allows Claude Desktop to orchestrate tasks and delegate them to Claude Code. This allows you to:
Break down complex workflows into smaller, manageable subtasks
Pass context from parent tasks to subtasks
Get results back from subtasks to the parent task
Choose between detailed or summarized results
Track and manage progress through structured task lists
Boomerang Pattern Visualization
Here's a simple diagram showing how Claude breaks down a recipe task into steps and delegates them to Claude Code:
graph TB
User("👨🍳 User")
Claude("🤖 Claude (Parent)")
Code1("🧁 Claude Code")
Code2("🧁 Claude Code")
User-->|"Make chocolate cake"| Claude
Claude-->|"Task 1: Find recipe"| Code1
Code1-->|"Result: Recipe found"| Claude
Claude-->|"Task 2: Convert measurements"| Code2
Code2-->|"Result: Measurements converted"| Claude
Claude-->|"Complete recipe + instructions"| UserIn this example:
The user asks Claude to make a chocolate cake recipe
Claude (Parent) breaks this down into separate tasks
Claude delegates "Find recipe" task to Claude Code with a parent task ID
Claude Code returns the recipe information to Claude
Claude delegates "Convert measurements" task to Claude Code
Claude Code returns the converted measurements
Claude combines all results and presents the complete solution to the user
Simple Task Examples:
Task 1 - Find Recipe:
{
"toolName": "claude_code:claude_code",
"arguments": {
"prompt": "Search for a classic chocolate cake recipe. Find one with good reviews.",
"parentTaskId": "cake-recipe-123",
"returnMode": "summary",
"taskDescription": "Find Chocolate Cake Recipe"
}
}Task 2 - Convert Measurements:
{
"toolName": "claude_code:claude_code",
"arguments": {
"prompt": "Convert the measurements in this recipe from cups to grams:\n\n- 2 cups flour\n- 1.5 cups sugar\n- 3/4 cup cocoa powder",
"parentTaskId": "cake-recipe-123",
"returnMode": "summary",
"taskDescription": "Convert Recipe Measurements"
}
}How It Works
Creating a Subtask:
Generate a unique task ID in your parent task
Send a request to the
claude_codetool with:Your specific prompt
The parent task ID
A task description
The desired return mode ('summary' or 'full')
Receiving Results:
The subtask result will include a special marker:
<!-- BOOMERANG_RESULT {...} -->This marker contains JSON with the task metadata
The parent task can parse this to identify completed subtasks
Example Workflow with Claude Desktop:
You: I need to refactor this codebase. It's quite complex.
Claude Desktop: I'll help you with that. Let me break this down into smaller tasks for Claude Code to handle:
1. First, I'll have Claude Code analyze the codebase structure
2. Then, I'll have it identify problematic patterns
3. Finally, I'll ask it to generate a refactoring plan
[Claude Desktop sends a request to the claude_code tool with parentTaskId="task1" and returnMode="summary"]
[Claude Code analyzes the codebase and returns a summary with the BOOMERANG_RESULT marker]
Claude Desktop: Based on Claude Code's analysis, here are the key issues found:
- Duplicate code in modules X and Y
- Poor separation of concerns in module Z
- Inconsistent naming conventions
Now I'll ask Claude Code to suggest specific refactorings...This approach is particularly useful for complex tasks that require deep analysis or multiple steps.
Comprehensive Task List Management Example
Here's a detailed example of using Claude with the Claude Code MCP to manage and execute a structured task list:
1. Setting Up Task List Structure
First, create a task list file (e.g., tasks.md) with the following structure:
# Project Task List
## Parent Task: API Optimization Project
- [ ] Optimize API performance for high-traffic endpoints
- [ ] Analyze current API performance and identify bottlenecks
- [ ] Implement database query optimization for user endpoints
- [ ] Add Redis caching for frequently accessed data
- [ ] Set up performance monitoring
## Assumptions and Decisions
- [2025-05-15] Assumption: Redis is available in the infrastructure
- [2025-05-15] Decision: Focus on user endpoints first (Rationale: Highest traffic area)
## Relevant Files
- `src/controllers/userController.js`: User API endpoints
- `src/services/userService.js`: Business logic for user operations
## Improvement Notes
- Pattern identified: N+1 query issue in user listing endpoint
- Automation opportunity: Add caching automatically for all get-by-id endpoints2. Executing the Task List
Claude can now systematically work through the tasks using Claude Code:
You: Please help me execute the task list in tasks.md, starting with the first subtask.
Claude: I'll help you work through your task list systematically. Let me first check the current task list to identify the next task to work on.
[Claude uses claude_code to read the task list]
I see the first subtask is "Analyze current API performance and identify bottlenecks". I'll execute this task now using Claude Code.
[Claude sends the following request to claude_code]:
{
"toolName": "claude_code",
"arguments": {
"prompt": "Your work folder is /path/to/project\n\nTASK TYPE: Analysis\nTASK ID: api-perf-analysis\nCURRENT SUBTASK: Analyze current API performance and identify bottlenecks\n\nCONTEXT:\n- Parent task goal: Optimize API performance for high-traffic endpoints\n- This is the first step in our optimization process\n- Focus on user endpoints as noted in assumptions\n\nINSTRUCTIONS:\n1. Analyze the current API implementation in src/controllers/userController.js and src/services/userService.js\n2. Run performance tests on the user endpoints\n3. Identify specific bottlenecks and performance issues\n4. Document findings in a clear, structured format\n5. Update task list file after completion\n\nAfter completion, provide summary in this format:\n\nCOMPLETION SUMMARY:\n- What was done:\n- Results:\n- Files analyzed:\n- Issues identified:\n- Recommendations:\n- Next subtask in list:",
"workFolder": "/path/to/project"
}
}
[Claude Code executes the analysis task and returns results]
Great! Claude Code has completed the analysis. Here's what was found:
1. Main performance bottlenecks identified:
- N+1 query problem in the user listing endpoint
- Missing indexes on frequently queried fields
- No caching for repetitive data lookups
2. Recommendations:
- Add eager loading for user relationships
- Create database indexes for user_id and email fields
- Implement Redis caching with a 5-minute TTL
Let me update the task list to mark this task as complete and proceed to the next one.
[Claude uses claude_code to update the task list]:
{
"toolName": "claude_code",
"arguments": {
"prompt": "Your work folder is /path/to/project\n\nTASK TYPE: Task List Update\n\n1. Read the current task list in tasks.md\n2. Mark the 'Analyze current API performance and identify bottlenecks' subtask as [x]\n3. Add new findings to the Improvement Notes section\n4. Add any new relevant files identified during analysis\n5. Write updated task list\n6. Return the updated task list",
"workFolder": "/path/to/project"
}
}
[Claude Code updates the task list and marks the first subtask complete]
I've updated the task list. The first subtask is now complete, and I've added the detailed findings to the Improvement Notes section. The next subtask is "Implement database query optimization for user endpoints".
Would you like me to proceed with this next subtask now?3. Continuing with Subsequent Tasks
After getting confirmation, Claude would continue with the next subtask:
You: Yes, please proceed with the next subtask.
Claude: I'll now execute the next subtask: "Implement database query optimization for user endpoints". This will involve fixing the N+1 query problem identified in the analysis and adding appropriate database indexes.
[Claude sends the following request to claude_code]:
{
"toolName": "claude_code",
"arguments": {
"prompt": "Your work folder is /path/to/project\n\nTASK TYPE: Code Implementation\nTASK ID: db-query-optimization\nCURRENT SUBTASK: Implement database query optimization for user endpoints\n\nCONTEXT:\n- Parent task goal: Optimize API performance for high-traffic endpoints\n- Previous subtask identified N+1 query issues and missing indexes\n- Need to implement eager loading and proper indexes\n\nINSTRUCTIONS:\n1. Modify src/controllers/userController.js to implement eager loading for related data\n2. Add appropriate database indexes to user-related tables\n3. Refactor any inefficient database queries in userService.js\n4. Ensure changes maintain existing functionality\n5. Run tests to verify performance improvements\n6. Update task list file after completion\n\nAfter completion, provide summary in this format:\n\nCOMPLETION SUMMARY:\n- What was done:\n- Results:\n- Files modified:\n- Performance improvements:\n- Next subtask in list:",
"workFolder": "/path/to/project"
}
}
[Claude Code implements the optimizations and returns results]
Excellent! The database query optimizations have been successfully implemented. Here's a summary:
1. Changes made:
- Added eager loading in userController.js for user relationships
- Created new database indexes for user_id and email fields
- Refactored list query to use a single efficient JOIN statement
- Added pagination to prevent large result sets
2. Performance results:
- User listing endpoint response time reduced by 68%
- Database query count reduced from 25+ to 3 for typical requests
Let me update the task list again to reflect this progress.
[Claude uses claude_code to update the task list again]:
{
"toolName": "claude_code",
"arguments": {
"prompt": "Your work folder is /path/to/project\n\nTASK TYPE: Task List Update\n\n1. Read the current task list in tasks.md\n2. Mark the 'Implement database query optimization for user endpoints' subtask as [x]\n3. Add new files modified to the Relevant Files section\n4. Update Improvement Notes with performance metrics\n5. Write updated task list\n6. Return the updated task list",
"workFolder": "/path/to/project"
}
}
[Claude Code updates the task list and marks the second subtask complete]
I've updated the task list again. Two subtasks are now complete, and the next one is "Add Redis caching for frequently accessed data". Would you like me to continue with this subtask?This structured approach enables Claude to systematically work through complex task lists while maintaining clear documentation of progress, assumptions, and relevant files throughout the process.
🎭 Self-Orchestration Pattern (Claude Code as Orchestrator)
While Claude Desktop is often used as the parent agent, you can use Claude Code itself as both the orchestrator and executor. This approach creates a self-contained system where Claude Code manages its own task orchestration, without requiring Claude Desktop.
graph TB
User("👨💻 User")
ClaudeCode("🤖 Claude Code\nOrchestrator")
ClaudeCodeSubtask1("⚙️ Claude Code\nSubtask 1")
ClaudeCodeSubtask2("⚙️ Claude Code\nSubtask 2")
User-->|"Complex project request"| ClaudeCode
ClaudeCode-->|"1. Plans tasks"| ClaudeCode
ClaudeCode-->|"2. Executes subtask 1"| ClaudeCodeSubtask1
ClaudeCodeSubtask1-->|"3. Returns result"| ClaudeCode
ClaudeCode-->|"4. Executes subtask 2"| ClaudeCodeSubtask2
ClaudeCodeSubtask2-->|"5. Returns result"| ClaudeCode
ClaudeCode-->|"6. Final solution"| UserImplementation Steps
Create an entry script that initializes your task structure and launches Claude Code as the orchestrator
Design a task data structure (typically in JSON format) that tracks task status and dependencies
Create task executor scripts to process individual tasks and update task state
Key Benefits of Self-Orchestration
Self-contained: No external orchestrator (like Claude Desktop) required
Persistent state: All task information is stored in JSON files
Error recovery: Can resume from the last successful task if interrupted
Simplified dependency management: Single system manages all Claude Code interactions
Shell script automation: Easily integrated into CI/CD pipelines or automated workflows
For a detailed implementation guide with example scripts and task structures, see Self-Orchestration with Claude Code.
👓 Roo Modes Integration
This MCP server supports integration with specialized modes through a .roomodes configuration file. When enabled, you can specify which mode to use for each task, allowing for specialized behavior.
How to Use Roo Modes
Enable Roo Mode Support:
Set the environment variable
MCP_USE_ROOMODES=truein your MCP configurationCreate a
.roomodesfile in the root directory of your MCP serverOptionally enable hot-reloading with
MCP_WATCH_ROOMODES=trueto automatically reload the configuration when the file changes
Configure Your Modes:
The
.roomodesfile should contain a JSON object with acustomModesarrayEach mode should have a
slug,name,roleDefinition, and optionally anapiConfigurationwith amodelId
Using a Mode:
When making requests to the
claude_codetool, include amodeparameter with the slug of the desired modeThe MCP server will automatically apply the role definition and model configuration
Example .roomodes File:
{ "customModes": [ { "slug": "coder", "name": "💻 Coder", "roleDefinition": "You are a coding specialist who writes clean, efficient code.", "apiConfiguration": { "modelId": "claude-3-sonnet-20240229" } }, { "slug": "designer", "name": "🎨 Designer", "roleDefinition": "You are a design specialist focused on UI/UX solutions." } ] }Environment Configuration Example:
{ "mcpServers": { "meshseeks": { "command": "node", "args": ["/path/to/meshseeks/dist/mesh-server.js"], "env": { "MCP_USE_ROOMODES": "true", "MCP_WATCH_ROOMODES": "true", "MCP_CLAUDE_DEBUG": "false" } } } }Making Requests with Modes:
{ "toolName": "claude_code:claude_code", "arguments": { "prompt": "Your work folder is /path/to/project\n\nCreate unit tests for the user authentication module.", "workFolder": "/path/to/project", "mode": "coder" } }
Key Features of Roo Modes:
Specialized Behaviors: Different modes can have different system prompts and model configurations
Hot Reloading: When
MCP_WATCH_ROOMODES=true, the server automatically reloads the configuration when the.roomodesfile changesPerformance: The server caches the roomodes configuration for better performance
Fallback: If a mode isn't found or roomodes are disabled, the server continues with default behavior
🛠️ Enhanced Reliability Features
This server includes several improvements to enhance reliability and performance:
1. Heartbeat & Timeout Prevention
To prevent client-side timeouts during long-running operations:
Added a configurable heartbeat mechanism that sends progress updates every 15 seconds
Implemented execution time tracking and reporting
Added configurable timeout parameters through environment variables
2. Robust Error Handling with Retries
Added intelligent retry logic for transient errors:
Implemented automatic retry with configurable parameters
Added error classification to identify retryable issues
Created detailed error reporting and tracking
3. Request Tracking System
Implemented comprehensive request lifecycle management:
Added unique IDs for each request
Created tracking for in-progress requests
Ensured proper cleanup on completion or failure
4. Graceful Shutdown
Added proper process termination handling:
Implemented signal handlers for SIGINT and SIGTERM
Added tracking for in-progress requests
Created wait logic for clean shutdown
Ensured proper cleanup on exit
5. Configuration Caching and Hot Reloading
Added performance optimization for configuration:
Implemented caching for roomodes file
Added automatic invalidation based on file changes
Created configurable file watching mechanism
⚙️ Configuration Options
The server's behavior can be customized using these environment variables:
Variable | Description | Default |
| Absolute path to the Claude CLI executable | Auto-detect |
| Enable verbose debug logging |
|
| Interval between progress reports | 15000 (15s) |
| Timeout for CLI execution | 1800000 (30m) |
| Maximum retry attempts for transient errors | 3 |
| Delay between retry attempts | 1000 (1s) |
| Enable Roo modes integration |
|
| Auto-reload .roomodes on changes |
|
Mesh Network Variables | ||
| Maximum concurrent agents | 5 |
| Agent execution timeout | 300000 (5m) |
| Enable detailed agent logging |
|
These can be set in your shell environment or within the env block of your mcp.json server configuration.
📸 Visual Examples
Here are some visual examples of the server in action:
Fixing ESLint Setup
Here's an example of using the Claude Code MCP tool to interactively fix an ESLint setup by deleting old configuration files and creating a new one:
Listing Files Example
Here's an example of the Claude Code tool listing files in a directory:
Complex Multi-Step Operations
This example illustrates claude_code handling a more complex, multi-step task, such as preparing a release by creating a branch, updating multiple files (package.json, CHANGELOG.md), committing changes, and initiating a pull request, all within a single, coherent operation.
GitHub Actions Workflow Correction
🌐 Mesh Network Usage Examples
Basic Problem Analysis
Use mesh_analyze_problem to plan how to implement a REST API with authentication, database integration, and tests.
workFolder: /path/to/projectEnd-to-End Problem Solving
Use mesh_solve_problem to create a complete e-commerce backend with:
- User authentication and authorization
- Product catalog with categories
- Shopping cart functionality
- Order processing
- Payment integration
- Unit and integration tests
- API documentation
workFolder: /path/to/project
approach: analysis_firstCoordination Strategies
1. Analysis First (Default) Best for well-defined problems requiring systematic approach.
2. Parallel Exploration Best for research tasks needing multiple perspectives:
approach: parallel_exploration3. Iterative Refinement Best for complex refactoring with feedback loops:
approach: iterative_refinement🎯 Key Use Cases
This server, through its unified claude_code tool, unlocks a wide range of powerful capabilities by giving your AI direct access to the Claude Code CLI. Here are some examples of what you can achieve:
Code Generation, Analysis & Refactoring:
"Generate a Python script to parse CSV data and output JSON.""Analyze my_script.py for potential bugs and suggest improvements."
File System Operations (Create, Read, Edit, Manage):
Creating Files:
"Your work folder is /Users/steipete/my_project\n\nCreate a new file named 'config.yml' in the 'app/settings' directory with the following content:\nport: 8080\ndatabase: main_db"Editing Files:
"Your work folder is /Users/steipete/my_project\n\nEdit file 'public/css/style.css': Add a new CSS rule at the end to make all 'h2' elements have a 'color: navy'."Moving/Copying/Deleting:
"Your work folder is /Users/steipete/my_project\n\nMove the file 'report.docx' from the 'drafts' folder to the 'final_reports' folder and rename it to 'Q1_Report_Final.docx'."
Version Control (Git):
"Your work folder is /Users/steipete/my_project\n\n1. Stage the file 'src/main.java'.\n2. Commit the changes with the message 'feat: Implement user authentication'.\n3. Push the commit to the 'develop' branch on origin."
Running Terminal Commands:
"Your work folder is /Users/steipete/my_project/frontend\n\nRun the command 'npm run build'.""Open the URL https://developer.mozilla.org in my default web browser."
Web Search & Summarization:
"Search the web for 'benefits of server-side rendering' and provide a concise summary."
Complex Multi-Step Workflows:
Automate version bumps, update changelogs, and tag releases:
"Your work folder is /Users/steipete/my_project\n\nFollow these steps: 1. Update the version in package.json to 2.5.0. 2. Add a new section to CHANGELOG.md for version 2.5.0 with the heading '### Added' and list 'New feature X'. 3. Stage package.json and CHANGELOG.md. 4. Commit with message 'release: version 2.5.0'. 5. Push the commit. 6. Create and push a git tag v2.5.0."
Repairing Files with Syntax Errors:
"Your work folder is /path/to/project\n\nThe file 'src/utils/parser.js' has syntax errors after a recent complex edit that broke its structure. Please analyze it, identify the syntax errors, and correct the file to make it valid JavaScript again, ensuring the original logic is preserved as much as possible."
Interacting with GitHub (e.g., Creating a Pull Request):
"Your work folder is /Users/steipete/my_project\n\nCreate a GitHub Pull Request in the repository 'owner/repo' from the 'feature-branch' to the 'main' branch. Title: 'feat: Implement new login flow'. Body: 'This PR adds a new and improved login experience for users.'"
Interacting with GitHub (e.g., Checking PR CI Status):
"Your work folder is /Users/steipete/my_project\n\nCheck the status of CI checks for Pull Request #42 in the GitHub repository 'owner/repo'. Report if they have passed, failed, or are still running."
CRITICAL: Remember to provide Current Working Directory (CWD) context in your prompts for file system or git operations (e.g., "Your work folder is /path/to/project\n\n...your command...").
🧪 Testing & Development
Comprehensive Test Suite
MeshSeeks includes a complete testing framework with:
Unit Tests - Test core coordinator functionality:
npm run test:unitIntegration Tests - Test MCP server tools:
npm run test:integrationError Handling Tests - Test failure scenarios:
npm run test:errorsPerformance Tests - Test scalability and concurrency:
npm run test:performanceRun All Tests - Complete test suite:
npm run test:allStatus Board Demo
See the real-time status board in action:
npm run demo:statusDevelopment Scripts
npm run dev:mesh # Run mesh server in development mode
npm run build:mesh # Build for production
npm run test:mesh # Run basic mesh tests🔧 Troubleshooting
"Command not found" (claude-code-mcp): If installed globally, ensure the npm global bin directory is in your system's PATH. If using
npx, ensurenpxitself is working."Command not found" (claude or ~/.claude/local/claude): Ensure the Claude CLI is installed correctly. Run
claude/doctoror check its documentation.Permissions Issues: Make sure you've run the "Important First-Time Setup" step.
JSON Errors from Server: If
MCP_CLAUDE_DEBUGistrue, error messages or logs might interfere with MCP's JSON parsing. Set tofalsefor normal operation.ESM/Import Errors: Ensure you are using Node.js v20 or later.
Client Timeouts: For long-running operations, the server sends heartbeat messages every 15 seconds to prevent client timeouts. If you still experience timeouts, you can adjust the heartbeat interval using the
MCP_HEARTBEAT_INTERVAL_MSenvironment variable.Network/Server Errors: The server now includes automatic retry logic for transient errors. If you're still experiencing issues, try increasing the
MCP_MAX_RETRIESandMCP_RETRY_DELAY_MSvalues.Claude CLI Fallback Warning: If you see a warning about Claude CLI not found at ~/.claude/local/claude, this is normal. The server is falling back to using the
claudecommand from your PATH. You can set theCLAUDE_CLI_PATHenvironment variable to specify the exact path to your Claude CLI executable if needed.
👨💻 For Developers: Local Setup & Contribution
If you want to develop or contribute to this server, or run it from a cloned repository for testing, please see our Local Installation & Development Setup Guide.
📚 Additional Documentation
Mesh Network Architecture Guide - Detailed documentation on the agent mesh network
Status Board Guide - Real-time visualization and monitoring
Quick Start Guide - Get up and running quickly
Local Development Setup - For contributors and developers
Test Suite Documentation - Comprehensive testing guide
💪 Contributing
Contributions are welcome! This project extends Graham's enhanced MCP server with mesh network capabilities.
Submit issues and pull requests to the GitHub repository.
⚖️ License
MIT
💬 Feedback and Support
If you encounter any issues or have questions about using the Claude Code MCP server, please:
Check the Troubleshooting section above
Submit an issue on the GitHub repository
Join the discussion in the repository discussions section
We appreciate your feedback and contributions to making this tool better!
Available Tools
3 toolsclaude_codeA
Claude Code Agent: Your versatile multi-modal assistant for code, file, Git, and terminal operations via Claude CLI. Use workFolder for contextual execution.
• File ops: Create, read, (fuzzy) edit, move, copy, delete, list files, analyze/ocr images, file content analysis └─ e.g., "Create /tmp/log.txt with 'system boot'", "Edit main.py to replace 'debug_mode = True' with 'debug_mode = False'", "List files in /src", "Move a specific section somewhere else"
• Code: Generate / analyse / refactor / fix └─ e.g. "Generate Python to parse CSV→JSON", "Find bugs in my_script.py"
• Git: Stage ▸ commit ▸ push ▸ tag (any workflow) └─ "Commit '/workspace/src/main.java' with 'feat: user auth' to develop."
• Terminal: Run any CLI cmd or open URLs └─ "npm run build", "Open https://developer.mozilla.org"
• Web search + summarise content on-the-fly
• Multi-step workflows (Version bumps, changelog updates, release tagging, etc.)
• GitHub integration Create PRs, check CI status
• Confused or stuck on an issue? Ask Claude Code for a second opinion, it might surprise you!
• Task Orchestration with "Boomerang" pattern └─ Break down complex tasks into subtasks for Claude Code to execute separately └─ Pass parent task ID and get results back for complex workflows └─ Specify return mode (summary or full) for tailored responses
Prompt tips
Be concise, explicit & step-by-step for complex tasks. No need for niceties, this is a tool to get things done.
For multi-line text, write it to a temporary file in the project root, use that file, then delete it.
If you get a timeout, split the task into smaller steps.
Seeking a second opinion/analysis: If you're stuck or want advice, you can ask
claude_codeto analyze a problem and suggest solutions. Clearly state in your prompt that you are looking for analysis only and no actual file modifications should be made.If workFolder is set to the project path, there is no need to repeat that path in the prompt and you can use relative paths for files.
Claude Code is really good at complex multi-step file operations and refactorings and faster than your native edit features.
Combine file operations, README updates, and Git commands in a sequence.
Task Orchestration: For complex workflows, use
parentTaskIdto create subtasks andreturnMode: "summary"to get concise results back.Claude can do much more, just ask it!
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | The detailed natural language prompt for Claude to execute. | |
| workFolder | No | Mandatory when using file operations or referencing any file. The working directory for the Claude CLI execution. | |
| parentTaskId | No | Optional ID of the parent task that created this task (for task orchestration/boomerang). | |
| returnMode | No | How results should be returned: summary (concise) or full (detailed). Defaults to full. | |
| taskDescription | No | Short description of the task for better organization and tracking in orchestrated workflows. | |
| mode | No | When MCP_USE_ROOMODES=true, specifies the mode from .roomodes to use (e.g., "boomerang-mode", "coder", "designer", etc.). |
TDQS
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 does describe some behavioral traits like timeout handling ('split the task into smaller steps'), analysis-only mode ('no actual file modifications should be made'), and task orchestration patterns. However, it doesn't cover important aspects like authentication requirements, rate limits, error handling, or what happens when operations fail.
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 excessively long (over 500 words) with multiple sections, bullet points, and promotional language ('it might surprise you!', 'Claude can do much more, just ask it!'). While well-structured with clear categories, it contains redundant information and marketing fluff that doesn't help an AI agent select and invoke the tool correctly.
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 complex 6-parameter tool with no annotations and no output schema, the description provides substantial context about capabilities and usage patterns. However, it lacks critical information about return values, error conditions, and operational constraints. The description compensates somewhat for the lack of structured metadata but leaves important gaps for a tool of this complexity.
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?
Schema description coverage is 100%, so the schema already documents all 6 parameters thoroughly. The description adds some context about 'workFolder' ('Mandatory when using file operations') and mentions 'parentTaskId' and 'returnMode' in the task orchestration section, but doesn't provide significant additional semantic meaning beyond what's already in the schema descriptions.
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 this is a 'versatile multi-modal assistant for code, file, Git, and terminal operations via Claude CLI' and provides specific examples of what it can do (file operations, code generation/analysis, Git workflows, terminal commands, web search, etc.). It distinguishes itself from sibling tools like 'convert_task_markdown' and 'health' by being a comprehensive execution tool rather than a specialized converter or health checker.
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 clear context for when to use this tool (for code, file, Git, terminal operations, web search, multi-step workflows, GitHub integration, task orchestration) and includes specific prompt tips. However, it doesn't explicitly state when NOT to use it or provide clear alternatives to sibling tools, though the broad scope makes alternatives less relevant.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_task_markdownA
Converts markdown task files into Claude Code MCP-compatible JSON format. Returns an array of tasks that can be executed using the claude_code tool.
| Name | Required | Description | Default |
|---|---|---|---|
| markdownPath | Yes | Path to the markdown task file to convert. | |
| outputPath | No | Optional path where to save the JSON output. If not provided, returns the JSON directly. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool returns an array of tasks and can save output to a file or return JSON directly, which adds useful behavioral context. However, it lacks details on error handling, file format requirements, or performance aspects like rate limits.
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 front-loaded and concise, consisting of two sentences that efficiently convey the tool's purpose and output usage. Every sentence earns its place by providing essential information without redundancy or unnecessary details.
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?
Given the tool's moderate complexity (file conversion with two parameters) and no output schema, the description is mostly complete. It explains the conversion process and output format, but could benefit from mentioning potential errors or input validation. The lack of annotations means it adequately covers the basics but leaves some behavioral gaps.
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?
Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description adds no additional meaning beyond what the schema provides, such as examples or constraints on file paths. The baseline score of 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.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Converts markdown task files') and the target format ('Claude Code MCP-compatible JSON format'), distinguishing it from sibling tools like 'claude_code' (which executes tasks) and 'health' (likely a status check). It uses precise verbs and identifies the resource being transformed.
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 clear context for usage by mentioning that the output can be used with 'claude_code', implying this tool prepares data for execution. However, it does not explicitly state when not to use it or name alternatives, such as whether other tools handle different file formats or if direct JSON input is possible.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
healthA
Returns health status, version information, and current configuration of the Claude Code MCP server.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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 describes the return content (health status, version, configuration) but lacks details on response format, potential errors, or operational constraints like rate limits. The description is accurate but minimal, providing basic behavioral context without depth.
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 a single, well-structured sentence that efficiently conveys the tool's purpose without unnecessary words. It is front-loaded with the core action ('Returns') and specifies all key details concisely, making it easy for an agent to parse and understand quickly.
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?
Given the tool's simplicity (0 parameters, no annotations, no output schema), the description is adequate but minimal. It covers the basic purpose and return types, but lacks details on output structure or error handling. For a diagnostic tool, more context on response format would enhance completeness, though the current description meets minimum viability.
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 tool has 0 parameters with 100% schema description coverage, so no parameter documentation is needed. The description appropriately omits parameter details, focusing instead on the tool's purpose and output. This aligns with the baseline expectation for zero-parameter tools.
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 specific action ('Returns') and the exact resources returned ('health status, version information, and current configuration'), with the target system explicitly named ('Claude Code MCP server'). It distinguishes itself from sibling tools like 'claude_code' and 'convert_task_markdown' by focusing on server diagnostics rather than code operations or markdown conversion.
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 (checking server health/configuration) but does not explicitly state when to use this tool versus alternatives. No guidance is provided on prerequisites, timing, or comparisons with sibling tools, leaving the agent to infer appropriate usage scenarios.
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.
3 tool updates
- First observed
claude_code - First observed
convert_task_markdown - First observed
health
TDQS
The three tools have completely distinct purposes with no overlap: claude_code handles code/file/Git/terminal operations, convert_task_markdown converts markdown to JSON, and health provides server status. An agent can easily distinguish between them based on their clearly defined scopes.
The naming conventions are inconsistent: claude_code uses snake_case but includes a brand name, convert_task_markdown uses snake_case with a descriptive verb-noun pattern, and health is a single lowercase word. There's no unified pattern across the toolset, making it harder to predict naming.
With only 3 tools, the set feels thin for the broad scope implied by claude_code's extensive capabilities (file ops, code, Git, terminal, web search, GitHub integration, etc.). The other two tools are narrow utilities, leaving the main tool overloaded while the overall surface seems underdeveloped for the domain.
The toolset is severely incomplete for the implied domain of code/file/Git/terminal operations. While claude_code is a powerful multi-tool, there are obvious gaps: no dedicated tools for specific operations like Git status, file search, or terminal history, forcing everything through one interface. The convert_task_markdown and health tools don't address these core workflow gaps.
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
HiveCompute MCP Server — decentralized inference router for AI agents
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
MCP server for building and testing AI agents with multi-model experimentation and insights.
HiveCapital MCP Server — autonomous investment layer for AI agents
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server that indexes your codebase and gives AI assistants persistent understanding of project structure, dependencies, and history across sessions, with a self-improving multi-agent system for continuous code quality enhancement.143MIT
- -licenseNot gradedqualityCmaintenanceIntelligent server management MCP server that enables agents to write TypeScript code to organize and manage multiple MCP servers with self-improving capabilities.2-
- FlicenseNot gradedqualityAmaintenanceA local MCP server that connects AI coding agents like Claude, Codex, and Gemini, enabling task routing, cross-model debates, and token-efficient context sharing without external APIs.12-
- AlicenseNot gradedqualityDmaintenanceA self-improving coding agent MCP server that enables code execution, semantic memory, and reusable skills via sub-agents, turning your AI client into a meta-operating system.2AGPL 3.0
Appeared in Searches
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/twalichiewicz/meshseeks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server