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 | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this 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-everythingroampal-core · Install
Installation
pip install roampal
roampal initThis will auto-detect installed tools and configure them. You can also target specific tools:
roampal init --claude-code
roampal init --opencodeFor 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