Knowledge graph & long-term memory for AI agents: recall, relations, store, stats, health.
Knowledge graph & long-term memory for AI agents: recall, relations, store, stats, health. Exposed over MCP by the knowmind mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.
Oder ohne Installation direkt als MCP-Server: npx -y knowmind mcp
Everything the assistant can do here goes through one of these:
knowmind_recall — Hybride Suche im Wissensspeicher des Mandantenknowmind_recall_at_time — Recall mit Zeitfilter (bi-temporal)knowmind_store_memory — Neue Erinnerung anlegen (Titel + Inhalt)knowmind_upload_document — Längeren Text als Dokument ingestieren (Upsert-per-Titel: gleicher Titel ersetzt die alte Version)knowmind_update_fact — Fakt bi-temporal aktualisieren (Historie bleibt)knowmind_link — Typisierte Beziehung anlegen (Inverse wird automatisch gesetzt)knowmind_unlink — Beziehung wieder entfernen (samt Inverse)knowmind_list_relations — Beziehungen einer Erinnerung auflistenknowmind_list_recent — Zuletzt angelegte Dokumente/Memories des Mandanten auflisten, sortiert nach Anlagedatum absteigendknowmind_stats — Statistik über gespeicherte Erinnerungen und Beziehungenknowmind_health — Verfügbarkeits-Status der PlattformInstallation goes through your MCP client rather than a global install: point it at knowmind on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
You will need 2 environment variables: KNOWMIND_TOKEN, KNOWMIND_API_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Knowmind's toolset — knowmind_recall, knowmind_recall_at_time, knowmind_store_memory and 8 more — is a fair guide to whether it matches your workflow. It is maintained by Schubeler-Consulting; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Knowmind's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| knowmind_recall | Hybride Suche im Wissensspeicher des Mandanten |
| knowmind_recall_at_time | Recall mit Zeitfilter (bi-temporal) |
| knowmind_store_memory | Neue Erinnerung anlegen (Titel + Inhalt) |
| knowmind_upload_document | Längeren Text als Dokument ingestieren (Upsert-per-Titel: gleicher Titel ersetzt die alte Version) |
| knowmind_update_fact | Fakt bi-temporal aktualisieren (Historie bleibt) |
| knowmind_link | Typisierte Beziehung anlegen (Inverse wird automatisch gesetzt) |
| knowmind_unlink | Beziehung wieder entfernen (samt Inverse) |
| knowmind_list_relations | Beziehungen einer Erinnerung auflisten |
| knowmind_list_recent | Zuletzt angelegte Dokumente/Memories des Mandanten auflisten, sortiert nach Anlagedatum absteigend |
| knowmind_stats | Statistik über gespeicherte Erinnerungen und Beziehungen |
| knowmind_health | Verfügbarkeits-Status der Plattform |
{
"mcpServers": {
"knowmind": {
"command": "npx",
"args": ["-y", "knowmind", "mcp"],
"env": { "KNOWMIND_TOKEN": "kmt_xxx", "KNOWMIND_API_URL": "https://knowmind.de" }
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| KNOWMIND_TOKEN | Credential the server authenticates with. | Yes |
| KNOWMIND_API_URL | Endpoint or connection string the server talks to. | Yes |
A knowledge graph your assistant keeps between sessions — entities, relations and observations that persist.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
A structured scratchpad for hard problems — stepwise reasoning with revisions, branches and visible logic.
Symbol-level code navigation, refactoring and memory for coding agents — the IDE brain your assistant has been missing.
Chat with your second brain — search, read and write vault notes through the Local REST API.