MCP Catalogs
Home

everything vs robotmcp_client

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

everything
by modelcontextprotocol
robotmcp_client
by robotmcp
Stars★ 85,748★ 12
30d uses
Score7742
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.

robotmcp_client · Summary

MCP client for ROS robot integration with Gemini, Ollama and other LLMs.

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

robotmcp_client · Use cases

  • Robot control via natural language commands
  • Real-time sensor data processing with LLM
  • Offline-capable robotics AI controllers

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

robotmcp_client · Install

Installation

  1. Clone the repository
git clone https://github.com/robotmcp/ros-mcp-client.git
cd ros-mcp-client
  1. Install dependencies
uv sync  # or pip install -e .
  1. Set up the Gemini Live client (example):
cd clients/gemini_live
./setup_gemini_client.sh
uv run gemini_client.py
  1. Start rosbridge on the target robot
ros2 launch rosbridge_server rosbridge_websocket_launch.xml
Comparison generated from public README + GitHub signals. Last updated automatically.