memory vs mcp-server-indexnow
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | mcp-server-indexnow by zizzfizzix | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 30 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | Web ScrapingDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 13 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mcp-server-indexnow · Summary
An MCP server for submitting URLs to search engines via the IndexNow protocol.
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
mcp-server-indexnow · Use cases
- Web developers submitting updated or new content pages to search engines
- Content creators ensuring their new articles get indexed quickly
- AI assistants automatically informing search engines about website changes
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"]
}
}
}mcp-server-indexnow · Install
Using uvx (recommended)
"mcpServers": {
"mcp_server_indexnow": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/zizzfizzix/mcp-server-indexnow",
"mcp_server_indexnow"
]
}
}Using make
make installThen add to Claude desktop:
"mcpServers": {
"mcp_server_indexnow": {
"command": "/path/to/mcp-server-indexnow/.venv/bin/python",
"args": ["/path/to/mcp-server-indexnow/mcp_server_indexnow/main.py"]
}
}