Yantrikdb MCP Server

Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.

Local serverstdioPython

What is the Yantrikdb MCP MCP server?

If you already use Yantrikdb MCP, the yantrikdb mcp mcp server is the piece that lets your assistant work with it directly. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.

What the server does

YantrikDB MCP is a Model Context Protocol (MCP) server that gives AI agents persistent cognitive memory across sessions. It exposes 16 tools (remember, recall, forget, correct, think, graph, conflict, trigger, session, temporal, procedure, category, personality, stats, memory, skill) that any MCP-compatible client — Claude Code, Cursor, Windsurf, Continue, Claude Desktop — can call automatically without prompting.

Installation

The server ships on PyPI as yantrikdb-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • remember — single / batch
  • recall — search / refine / feedback
  • forget — single / batch
  • correct — —
  • think — —
  • memory — get / list / search / update_importance / archive / hydrate
  • graph — relate / edges / link / search / profile / depth
  • conflict — list / get / resolve / reclassify
  • trigger — pending / history / acknowledge / deliver / act / dismiss
  • session — start / end / history / active / abandon_stale
  • temporal — stale / upcoming
  • procedure — learn / surface / reinforce

Credentials and setup notes

Configuration is passed through the environment: YANTRIKDB_SERVER_URL, YANTRIKDB_TOKEN, YANTRIKDB_API_KEY, YOUR_API_KEY, YANTRIKDB_DB_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • 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 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Yantrikdb MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Yantrikdb MCP's toolset — remember, recall, forget and 11 more — is a fair guide to whether it matches your workflow. It is maintained by yantrikos; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Yantrikdb MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
remembersingle / batch
recallsearch / refine / feedback
forgetsingle / batch
correct
think
memoryget / list / search / update_importance / archive / hydrate
graphrelate / edges / link / search / profile / depth
conflictlist / get / resolve / reclassify
triggerpending / history / acknowledge / deliver / act / dismiss
sessionstart / end / history / active / abandon_stale
temporalstale / upcoming
procedurelearn / surface / reinforce
categorylist / members / learn / reset
personalityget / set

How to install the Yantrikdb MCP MCP server

```json
{
  "mcpServers": {
    "yantrikdb": {
      "type": "sse",
      "url": "http://your-server:8420/sse",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
YANTRIKDB_SERVER_URLEndpoint or connection string the server talks to.Yes
YANTRIKDB_TOKENCredential the server authenticates with.Yes
YANTRIKDB_API_KEYCredential the server authenticates with.Yes
YOUR_API_KEYCredential the server authenticates with.Yes
YANTRIKDB_DB_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Yantrikdb MCP to remember.
  • Use Yantrikdb MCP to recall.
  • Use Yantrikdb MCP to forget.

Frequently asked questions

It connects Yantrikdb MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (remember, recall, forget, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Yantrikdb MCP directly.