MCP Catalogs
Home

everything vs roampal

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

everything
by modelcontextprotocol
roampal
by roampal-ai
Stars★ 85,748★ 120
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsProductivityKnowledge Graph
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

roampal · Summary

Roampal is an AI memory system with MCP integration that learns from user feedback across conversations.

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

roampal · Use cases

  • Personal AI assistant that remembers user preferences and past successful interactions
  • Knowledge management system that organizes information across conversations
  • Enhanced AI chat applications with persistent memory capabilities

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

roampal · Install

  1. Download from [roampal.ai](https://roampal.ai) and extract
  2. Install [Ollama](https://ollama.com) or [LM Studio](https://lmstudio.ai)
  3. Right-click Roampal.exe → **Run as administrator**
  4. Download a model in the UI → Start chatting!

To use with MCP-compatible tools like Claude Desktop:

{
  "mcpServers": {
    "roampal": {
      "command": "path/to/roampal",
      "args": ["--mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.