MCP Catalogs
Home

everything vs roampal-core

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

everything
by modelcontextprotocol
roampal-core
by roampal-ai
Stars★ 85,748★ 46
30d uses
Score7745
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

roampal-core · Summary

Outcome-based persistent memory MCP server that improves AI assistants through conversational learning.

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-core · Use cases

  • Improve Claude Code and OpenCode AI assistants with long-term memory of user preferences and successful solutions
  • Create persistent pattern collections for common programming tasks and debugging approaches
  • Maintain personal coding style preferences and development habits across multiple projects

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-core · Install

Installation

pip install roampal
roampal init

This will auto-detect installed tools and configure them. You can also target specific tools:

roampal init --claude-code
roampal init --opencode

For Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "roampal": {
      "command": "roampal",
      "args": ["start"]
    }
  }
}

Starting the Server

roampal start  # Start the HTTP server manually
roampal status  # Check if server is running
Comparison generated from public README + GitHub signals. Last updated automatically.