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 | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | this 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-everythingrobotmcp_client · Install
Installation
- Clone the repository
git clone https://github.com/robotmcp/ros-mcp-client.git
cd ros-mcp-client- Install dependencies
uv sync # or pip install -e .- Set up the Gemini Live client (example):
cd clients/gemini_live
./setup_gemini_client.sh
uv run gemini_client.py- Start rosbridge on the target robot
ros2 launch rosbridge_server rosbridge_websocket_launch.xml