MCP Catalogs
Home

MCP-Developer-SubAgent vs everything

Side-by-side comparison to help you pick between these two MCP servers.

MCP-Developer-SubAgent
by gensecaihq
everything
by modelcontextprotocol
Stars★ 28★ 85,748
30d uses
Score4277
Official
Categories
Developer ToolsAI / LLM ToolsSecurity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit9 mo agothis month

MCP-Developer-SubAgent · Summary

Production-ready framework with 8 Claude Code sub-agents and FastMCP templates for MCP development.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

MCP-Developer-SubAgent · Use cases

  • Developing new MCP servers with specialized security and authentication
  • Creating complex MCP toolsets using the orchestration system
  • Validating existing MCP implementations for compliance and security

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

MCP-Developer-SubAgent · Install

Installation

Quick Start (Cross-Platform)

# Clone the repository
git clone https://github.com/gensecaihq/MCP-Developer-SubAgent.git
cd MCP-Developer-SubAgent

# Check platform compatibility
python3 claude_code_sdk/cli_simple.py validate-setup

# Install dependencies
pip install -e .

For Claude Desktop Integration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "mcp-developer": {
      "command": "python",
      "args": ["-m", "claude_code_sdk.cli"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.