Tamper-evident audit, MindQL, and Action Records β embedded memory database for AI agents.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
The Model Context Protocol server for Engrava β expose an agent memory database to any MCP client (Claude Desktop, Claude Code, Cursor, Windsurf, VS Code, β¦) over stdio.
engrava-mcp is a standalone, runnable package that consumes Engrava's public
API. It is the one way to run Engrava as a memory server; the engrava library
itself ships no MCP code.
Installing engrava-mcp pulls in engrava transitively, so you also get the
import engrava library in the same environment.
engrava-mcp follows Engrava's version: engrava-mcp X.Y.z targets engrava X.Y
and requires engrava >=X.Y,<X.(Y+1). This is a one-way version mirror for legibility β
not a lockstep: Engrava releases on its own cadence, and engrava-mcp patch releases
are independent.
| engrava-mcp | Works with engrava |
|---|---|
0.5.x | >=0.5,<0.6 |
The dependency range is the source of truth. Normal installs resolve a compatible
engrava automatically; if you pin engrava yourself, keep it within that range. If no
matching engrava-mcp exists yet for a newer engrava (e.g. a fresh engrava 0.6), that
pairing is not yet verified/supported β not broken; stay on a supported pair until a
matching engrava-mcp ships.
| Goal | Install |
|---|---|
| Build on the Engrava Python API (memory DB in your own code) | pip install engrava |
| Run Engrava as a memory server for an MCP client | uvx engrava-mcp (or pip install engrava-mcp) |
There is no third option.
engrava[mcp]The server used to ship inside Engrava as the engrava[mcp] extra and an
in-engrava engrava-mcp command. As of Engrava 0.5.0 it lives here instead.
| Before | After |
|---|---|
pip install "engrava[mcp]" | pip install engrava-mcp (or uvx engrava-mcp) |
engrava-mcp (installed by engrava) | engrava-mcp (installed by this package) |
client mcp.json: "command": "engrava-mcp" | client mcp.json: "command": "uvx", "args": ["engrava-mcp"] |
pip install "engrava[mcp]" against Engrava 0.5 does not
fail β pip ignores the now-unknown extra and quietly installs bare
engrava, so it can look like the server installed when it did not. Install
engrava-mcp instead.engrava[mcp]>=...) to depend on
engrava-mcp, not just reinstall.engrava.yaml / env vars
work exactly as before (see Configuration).The server resolves its store from environment variables, in priority order:
| Variable | Meaning |
|---|---|
ENGRAVA_MCP_CONFIG | Path to an engrava.yaml. Built with the full configuration β embedding provider, vector backend, journal, TTL. Recommended. |
ENGRAVA_DB_PATH | Path to a bare SQLite database file. Zero-config quick-start; no embedding provider is configured, so semantic (vector) search is inert β full-text search, the graph, MindQL, and the audit trail still work. |
ENGRAVA_MCP_READ_ONLY | When set to 1 / true / yes, the write tools are not registered, so the server exposes a read-only surface. |
Recommended: give the MCP server the same engrava.yaml your application
uses. The yaml is the only place to declare an embedding provider (and its
model / key), which the server needs to embed a new query at search time for
semantic search. With only ENGRAVA_DB_PATH set, the server logs a startup
warning that semantic search is inert and points you at ENGRAVA_MCP_CONFIG.
engrava.yamlPoint your MCP client at the server over stdio. For example, a typical
mcp.json entry:
Use ENGRAVA_DB_PATH instead of ENGRAVA_MCP_CONFIG for the zero-config
quick-start, and add "ENGRAVA_MCP_READ_ONLY": "1" for an app-writes /
agent-reads deployment.
The default install supports the vector backend and HTTP-based embedding
providers (OpenAI / Ollama) once configured in the yaml. Heavier providers are
opt-in extras that mirror Engrava's own extras:
get_thought, search_memory, search_keywords,
list_memory, query_memory, memory_stats (read); store_thought,
update_thought, link_thoughts, delete_thought, delete_edge (write,
gated by ENGRAVA_MCP_READ_ONLY).engrava://thought/{thought_id}, engrava://stats,
engrava://recent.summarize_recent_memory, find_related, reflect_on_topic.query_memory accepts only MindQL FIND queries; raw SQL and every other
command are rejected.
MIT
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/engrava)<a href="https://allmcps.com/mcp/engrava"><img src="https://allmcps.com/api/badge/engrava?style=directory" alt="Engrava on AllMCPs" /></a>