memory vs notion-export-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | notion-export-mcp-server by syucream | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 28 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | NotionKnowledge GraphProductivity |
| Language | TypeScript | TypeScript |
| 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.
notion-export-mcp-server · Summary
An MCP server that exports Notion pages to markdown via unofficial API.
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
notion-export-mcp-server · Use cases
- AI assistants can read and analyze Notion documentation
- Export Notion knowledge bases for processing by LLMs
- Integrate Notion content into AI-powered workflows
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"]
}
}
}notion-export-mcp-server · Install
npm install notion-export-mcp-serverAdd to Claude Desktop configuration:
{
"mcpServers": {
"notion-export": {
"command": "npx",
"args": [
"-y",
"notion-export-mcp-server"
],
"env": {
"NOTION_TOKEN_V2": "<your token>",
"NOTION_FILE_TOKEN": "<your token>"
}
}
}
}