Knowmind MCP Server

Knowledge graph & long-term memory for AI agents: recall, relations, store, stats, health.

Local serverstdio

What is the Knowmind MCP server?

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.

What it actually does

Oder ohne Installation direkt als MCP-Server: npx -y knowmind mcp

Its toolset

Everything the assistant can do here goes through one of these:

  • 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

Adding it to your client

Installation 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.

Configuration

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.

When to reach for it

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.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Knowmind.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the knowmind mcp server does with a few real requests.

Available tools

ToolWhat it does
knowmind_recallHybride Suche im Wissensspeicher des Mandanten
knowmind_recall_at_timeRecall mit Zeitfilter (bi-temporal)
knowmind_store_memoryNeue Erinnerung anlegen (Titel + Inhalt)
knowmind_upload_documentLängeren Text als Dokument ingestieren (Upsert-per-Titel: gleicher Titel ersetzt die alte Version)
knowmind_update_factFakt bi-temporal aktualisieren (Historie bleibt)
knowmind_linkTypisierte Beziehung anlegen (Inverse wird automatisch gesetzt)
knowmind_unlinkBeziehung wieder entfernen (samt Inverse)
knowmind_list_relationsBeziehungen einer Erinnerung auflisten
knowmind_list_recentZuletzt angelegte Dokumente/Memories des Mandanten auflisten, sortiert nach Anlagedatum absteigend
knowmind_statsStatistik über gespeicherte Erinnerungen und Beziehungen
knowmind_healthVerfügbarkeits-Status der Plattform

How to install the Knowmind MCP server

{
  "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.

Configuration

VariableDescriptionRequired
KNOWMIND_TOKENCredential the server authenticates with.Yes
KNOWMIND_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Knowmind to knowmind recall.
  • Use Knowmind to knowmind recall at time.
  • Use Knowmind to knowmind store memory.

Frequently asked questions

It connects Knowmind to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (knowmind_recall, knowmind_recall_at_time, knowmind_store_memory, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Knowmind directly.