memory vs mcp-notion-server
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | mcp-notion-server by suekou | |
|---|---|---|
| Stars | ★ 85,748 | ★ 892 |
| 30d uses | — | — |
| Score | 77 | 55 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | NotionProductivityKnowledge Graph |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mcp-notion-server · Summary
MCP server for connecting Notion to MCP-compatible clients, enabling AI agents to find, read, query and update Notion workspaces.
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-notion-server · Use cases
- AI assistants reading and summarizing Notion documentation pages
- Automating content creation and updates in Notion databases
- Building custom Notion interfaces with MCP Apps like Data Source Explorer
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-notion-server · Install
Quick Start
Add this server to an MCP host such as Claude Desktop:
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@suekou/mcp-notion-server"],
"env": {
"NOTION_API_TOKEN": "your-integration-token"
}
}
}
}Setup Guide
- Create a Notion integration at [Notion integrations dashboard](https://www.notion.so/profile/integrations)
- Configure capabilities (read, insert, update content as needed)
- Grant content access to specific pages/databases
- Copy the internal integration token as NOTION_API_TOKEN