Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.
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.
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.
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.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
remember — single / batchrecall — search / refine / feedbackforget — single / batchcorrect — —think — —memory — get / list / search / update_importance / archive / hydrategraph — relate / edges / link / search / profile / depthconflict — list / get / resolve / reclassifytrigger — pending / history / acknowledge / deliver / act / dismisssession — start / end / history / active / abandon_staletemporal — stale / upcomingprocedure — learn / surface / reinforceConfiguration 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.
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.
| Tool | What it does |
|---|---|
| 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 |
| category | list / members / learn / reset |
| personality | get / set |
```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.
| Variable | Description | Required |
|---|---|---|
| YANTRIKDB_SERVER_URL | Endpoint or connection string the server talks to. | Yes |
| YANTRIKDB_TOKEN | Credential the server authenticates with. | Yes |
| YANTRIKDB_API_KEY | Credential the server authenticates with. | Yes |
| YOUR_API_KEY | Credential the server authenticates with. | Yes |
| YANTRIKDB_DB_PATH | Filesystem location the server is allowed to use. | Optional |
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.