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 | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 9 mo ago | this 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
- Create and activate a virtual environment:
python -m venv .venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows- Install dependencies:
pip install -r requirements.txt- Update
config.pywith your robot connection parameters
- 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