notion-memory-mcp
Notion Memory MCP 🧠
Ein Model Context Protocol Server, der Notion in eine programmierbare Speicherebene für KI-Agenten verwandelt.
Gib jedem MCP-kompatiblen Agenten (Hermes, Claude Desktop, Cursor, benutzerdefinierte Agenten) fünf saubere Werkzeuge, um deinen Notion-Arbeitsbereich zu durchsuchen, zu lesen, zu speichern, zu ergänzen und abzufragen – und mache Notion so zur persistenten „Festplatten“-Schicht der dreistufigen Speicherarchitektur eines Agenten.
⚡ L1 cache → agent built-in memory (always in context)
🧮 RAM → mem0 / vector store (auto recall)
💾 DISK → Notion via this MCP ← you are hereWarum
Agentenspeicherlösungen (mem0, honcho...) sind undurchsichtig – großartig für reflexives Abrufen, aber für Menschen unsichtbar. Notion ist das Gegenteil: für Menschen vollständig sichtbar und bearbeitbar, aber nicht nativ über Werkzeuge aufrufbar.
Dieser Server verbindet beides: Agenten erhalten programmatischen Zugriff; Menschen behalten die volle visuelle Kontrolle.
Related MCP server: Notion MCP Server
Verfügbare Werkzeuge
Werkzeug | Was es tut |
| Seiten/Datenbanken nach Titel oder Inhalt finden |
| Eine Seite als strukturierten Klartext lesen |
| Seite per exaktem Titel upserten (markdown-ähnlich → Blöcke) |
| An eine Seite anhängen (fortlaufende Protokolle) |
| Datenbankzeilen mit optionalem Select-Filter abfragen |
Einrichtung
pip install -r requirements.txt
export NOTION_API_TOKEN=ntn_your_integration_token # notion.so/my-integrations
python3 server.py # stdio transportHermes Agent
hermes mcp add notion-memory -- python3 /path/to/server.py
# with env: NOTION_API_TOKEN set in ~/.hermes/.envClaude Desktop / Cursor
Füge zu deiner MCP-Konfiguration hinzu:
{
"mcpServers": {
"notion-memory": {
"command": "python3",
"args": ["/path/to/server.py"],
"env": { "NOTION_API_TOKEN": "ntn_..." }
}
}
}Designentscheidungen
Upsert-by-title (
notion_save): Agenten denken in Namen, nicht in UUIDs. Erneutes Speichern ersetzt den Inhalt – idempotente Schreibvorgänge.Markdown-ähnlich → Blöcke: Überschriften (#), Aufzählungen (-), Absätze werden auf native Notion-Blöcke abgebildet. Kein komplexer AST.
Lesen offen, Schreiben eingeschränkt: Lesezugriffe treffen alles, was die Integration sehen kann; nur Erstellen/Aktualisieren. Bewusst kein Lösch-Werkzeug – destruktive Operationen bleiben Menschen vorbehalten.
stdlib + httpx + mcp: minimale Abhängigkeiten, einfache Prüfung.
Demonstrierte Fähigkeiten
MCP-Server-Entwicklung · asynchrones Python (httpx + asyncio) · Notion-API (Suche/Blöcke/Datenbanken) · Protokolldesign für LLM-Werkzeugnutzung · defensive API-Fehlerzuordnung
Lizenz
MIT — erstellt von Shahjalal Shanto
Teil einer Agentenspeicherarchitektur: integrierter Cache + mem0-RAM + Notion-Festplatte.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Notion through the Notion API by exposing it as tools for LLMs, allowing operations like reading, creating, updating, and deleting Notion pages seamlessly via natural language.1121MIT
- AlicenseNot gradedqualityDmaintenanceEnables Language Models to interact with Notion workspaces through standardized tools for searching, reading, creating, and updating pages and databases.119MIT
- AlicenseBqualityDmaintenanceEnables AI agents to interact with Notion workspaces through the Notion API. Supports reading, writing, commenting, and managing Notion pages and databases with optimized token consumption for AI agents.19141,622MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with Notion workspaces through the Notion API, allowing them to search, read, create, and comment on pages and databases with optimized token consumption.MIT
Related MCP Connectors
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shahjalal2313/notion-memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server