MCP Catalogs
Home

everything vs ros2_mcp

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

everything
by modelcontextprotocol
ros2_mcp
by wise-vision
Stars★ 85,748★ 77
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOps & Infra
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

ros2_mcp · Summary

Python MCP server bridging AI agents with ROS 2 robotics, enabling topic pub/sub, service calls, and action control.

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

ros2_mcp · Use cases

  • AI-assisted ROS 2 development and debugging with natural language commands
  • Real-time robot control and analysis through AI chat interfaces
  • Automated testing and monitoring of robotics systems via AI agents

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

ros2_mcp · Install

Installation

  1. Install the MCP server:
pip install mcp_ros2
  1. Configure your MCP client. For Claude Desktop, add to claude_desktop_config.json:
{
  "mcpServers": {
    "ros2": {
      "command": "python",
      "args": ["-m", "mcp_ros2.server"],
      "env": {
        "ROS_DOMAIN_ID": "0"
      }
    }
  }
}
  1. For VS Code Copilot, follow the [installation guide](installation/README.md#configure-visual-studio-code-copilot)
Comparison generated from public README + GitHub signals. Last updated automatically.