registry vs memory
Side-by-side comparison to help you pick between these two MCP servers.
registry by mcparmory | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
registry · Summary
Production-ready MCP servers for 70+ APIs generated from OpenAPI specs with comprehensive tool coverage.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
registry · Use cases
- Enable AI agents to interact with GitHub for code management and issue tracking
- Connect AI systems with Google Workspace for document and spreadsheet operations
- Integrate AI assistants with Slack for team communication automation
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
registry · Install
# With uvx (no install needed)
uvx mcparmory-github
# With pip
pip install mcparmory-github
mcparmory-github**MCP client configuration** (Claude Desktop, Cursor, Codex, Claude Code):
{
"mcpServers": {
"github": {
"command": "uvx",
"args": ["mcparmory-github"],
"env": {
"BEARER_TOKEN": "ghp_your_token_here"
}
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}