MCP Catalogs
Home

robot_MCP vs everything

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

robot_MCP
by IliaLarchenko
everything
by modelcontextprotocol
Stars★ 78★ 85,748
30d uses
Score4277
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit9 mo agothis month

robot_MCP · Summary

MCP server for controlling SO-ARM100 robots through LLM agents with manual keyboard control option.

everything · Summary

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

robot_MCP · Use cases

  • Enabling AI agents to control robots through natural language commands
  • Providing manual robot control via keyboard interface
  • Creating multimodal AI applications with robot vision capabilities

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

robot_MCP · Install

Installation

  1. Create and activate a virtual environment:
python -m venv .venv
source .venv/bin/activate  # or .venv\Scripts\activate on Windows
  1. Install dependencies:
pip install -r requirements.txt
  1. Update config.py with your robot connection parameters
  1. For Claude Desktop, add to your configuration:
{
  "mcpServers": {
    "SO-ARM100 robot controller": {
      "command": "/path/to/.venv/bin/python",
      "args": ["/path/to/mcp_robot_server.py"]
    }
  }
}

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.