memcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
memcp by maydali28 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
memcp · Summary
A persistent memory MCP server for Claude Code that implements the Recursive Language Model framework to store knowledge across sessions.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
memcp · Use cases
- Long-term project development where knowledge needs to persist across sessions
- Complex analysis of large documents that exceed context window limits
- Multi-session workflows requiring retention of decisions, findings, and preferences
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
memcp · Install
Install MemCP using pip:
pip install memcpFor interactive installation:
bash scripts/install.shTo use with Claude Code, register the MCP server in your Claude Desktop configuration:
{
"mcpServers": {
"memcp": {
"command": "python",
"args": ["-m", "memcp.server"],
"env": {}
}
}
}Optional dependencies for enhanced capabilities:
pip install memcp[ner] # For spaCy NER
pip install memcp[vector] # For semantic search with embeddingseverything · 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