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 | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsProductivityKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | this 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-everythingroampal · Install
- Download from [roampal.ai](https://roampal.ai) and extract
- Install [Ollama](https://ollama.com) or [LM Studio](https://lmstudio.ai)
- Right-click
Roampal.exe→ **Run as administrator** - 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"]
}
}
}