MCP Catalogs
Home

everything vs robotmem

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

everything
by modelcontextprotocol
robotmem
by robotmem
Stars★ 85,748★ 24
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsDatabase
LanguageTypeScriptPython
Last committhis month2 mo ago

everything · Summary

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

robotmem · Summary

Robot Memory - Persistent memory system for AI robots with MCP server, hybrid search, and spatial retrieval 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

robotmem · Use cases

  • Robot learning from physical experiences and past failures
  • Autonomous navigation using spatial memory retrieval
  • Robotic manipulation tasks parameter optimization

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

robotmem · Install

Install robotmem via pip:

pip install robotmem

To use with Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "robotmem": {
      "command": "python",
      "args": ["-m", "robotmem", "mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.