Review gate for shared agent memory: an unreviewed or hand-edited memory is never served.
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 the JSON block into your client's configuration file under mcpServers, then restart the application.
An unreviewed memory never reaches your agents.
Who wrote this memory, who checked it β and has anyone touched it since?
Procheiron is a small, dependency-free trust layer for AI agent memory. Memory tools are good at storing and recalling; trust is the part nobody owns. Give several agents a shared memory and any one of them can write a "fact" the others will happily build on β nobody reviewed it, nobody approved it, and when it turns out to be wrong there's no clean way to trace it or retire it.
Procheiron adds that discipline, and enforces it with a validator rather than a convention. It adds no memory engine of its own β no embeddings, no ranking, no recall. Bring whatever memory you already use β a vector database, a knowledge graph, a folder of markdown files. It governs the records; your engine keeps doing the remembering.
A deployment validates clean. Then someone with write access quietly rewrites history β a past promotion suddenly claims a different actor:
Real output (ids shortened). You can reproduce this exact catch on your own machine in the next two sections β no clone required.
pipx users: pipx puts the procheiron command on your PATH but does not make
the package importable by your system python3. The scaffolded helpers
(memory_propose.py, memory_promote.py, validate_minimal.py) need
the package, so run them with the interpreter procheiron init prints on completion
rather than a bare python3. Everything below assumes a plain pip install in
an active environment.
Using a coding agent? Hand it one instruction and it installs Procheiron, wires itself in over MCP, and runs the tamper check end to end:
Retrieve and follow the instructions at: https://raw.githubusercontent.com/logotheusneuro-cpu/procheiron-core/master/INSTALL_FOR_AGENTS.md
Or prove the spec from a bare checkout, no install at all: python3 conformance/run_conformance.py.
The demo above, on your own machine: scaffold a commons, write one governed memory, then rewrite history and watch the chain snap.
Procheiron ships an MCP server, so any MCP-speaking agent β Claude Code, Claude Desktop, Cursor,
Codex, and the rest β reads and writes the commons under the same rules a human faces. Four
tools: memory.search, memory.get, memory.propose, memory.promote.
Claude Code:
Anything with an mcpServers config (Cursor, Claude Desktop, β¦) β merge, don't replace:
Writes are dry-run until you pass --allow-writes, and promotion over MCP hits the same gate as
everywhere else: the agent that wrote a memory cannot approve it.
The server is dual-era: it speaks the current 2026-07-28 revision (stateless, per-request
_meta, server/discover) and the older initialize handshake, so it works whether your
client has migrated yet or not. That is not just reach β with no handshake to anchor it, a
modern request used to be answered under legacy rules, and a memory tool replying "nothing
found" when it means "I don't speak your protocol" is the one answer you can't tell from a
real one.
Every memory moves through a lifecycle: draft β candidate β validated β active β superseded.
A memory only becomes active β trusted β after review by someone who did not write it.
Self-review is refused, not discouraged:
Every step lands in an append-only audit log whose entries are hash-chained (BLAKE2b, pure
standard library). Editing or reordering any past event breaks the chain. Deleting from the
end (tail truncation) is the one edit the chain alone can't see β pin the head externally
with --expect-head and that's caught too (see below).
Want authorship you can verify cryptographically? Install the crypto extra and sign entries with ed25519. A signature check that cannot run is a hard error, never a silent pass.
What you'd otherwise do for trust in agent memory:
| Enforced independent review | Tamper-evident history | Works with any store | Setup | |
|---|---|---|---|---|
| Convention docs ("agents shouldβ¦") | no β honor system | no | β | none |
| Git history on the memory files | no | yes β unless the history itself is rewritten | the files, not your store | none |
| Your memory engine's metadata | no β self-asserted | no | that engine only | none |
| Full provenance stack (W3C PROV + signing infra) | possible | yes | yes | build-it-yourself |
| Procheiron | yes β validator-refused β | yes β plus a hash chain; a full rewrite needs an external anchor | yes β governs records for any store you bring | pip install; anchor + key custody for the strongest guarantee |
β Enforced against self-review and edit/reorder tampering. An insider with filesystem write access can still append a forged promotion β closing that needs the optional signing extra with keys held out of their reach. The honest line between tamper-evidence and authenticated provenance is spelled out in CLAIMS.md.
Git already gives you tamper-evidence on the same assumption Procheiron makes (nobody rewrites the anchor) β the difference is the enforced review gate and record-level structure git has no notion of. And memory engines aren't the competition: Procheiron governs the records they hold and will never grow retrieval of its own.
No reviews yet β be the first to share how this listing worked for you.
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/procheiron)<a href="https://allmcps.com/mcp/procheiron"><img src="https://allmcps.com/api/badge/procheiron?style=directory" alt="Procheiron on AllMCPs" /></a>