Procheiron
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Procheironshow the audit trail for the 'retry policy' memory"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
Caught in the act
A deployment validates clean. Then someone with write access quietly rewrites history — a past promotion suddenly claims a different actor:
$ procheiron validate ./team-memory
Procheiron validation (full tier): PASS
$ # edit team-memory/memory/index/audit.jsonl: "actor": "vera_curator" → "rogue_agent"
$ procheiron validate ./team-memory
Procheiron validation (full tier): FAIL
ERROR: audit chain: audit event 0: entry_hash mismatch — content was altered
after it was written
ERROR: memories.jsonl:1: active record has no corroborating promotion audit
event — forged/hand-flipped recordReal output (ids shortened). You can reproduce this exact catch on your own machine in the next two sections — no clone required.
Related MCP server: Orenyl
Install
pip install procheiron # or: pipx install procheiron — see the note below
pip install "procheiron[crypto]" # optional: ed25519 signing (the chain itself needs nothing)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.
Break it yourself (60 seconds)
The demo above, on your own machine: scaffold a commons, write one governed memory, then rewrite history and watch the chain snap.
procheiron init ./commons && cd commons
# 1. propose a memory as alice
python3 memory_propose.py --created-by alice --type decision --scope project \
--subject "retry policy" --statement "Retries use exponential backoff." \
--source-path docs/decisions.md --confidence 0.9
# 2. promote it — reviewed by someone who is NOT alice (self-review is refused)
python3 memory_promote.py --memory-id <id printed by step 1> --new-status active \
--reviewer bob --authorized-by casey --reason "verified against the source" \
--allow-unverified-reviewer
procheiron validate . # PASS
# 3. rewrite history — swap the reviewer on the promotion event
sed -i.bak 's/bob/rogue/g' memory/index/audit.jsonl
procheiron validate . # FAIL: entry_hash mismatch — content was altered
mv memory/index/audit.jsonl.bak memory/index/audit.jsonl # put history back → PASS againWorks with your agent
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:
claude mcp add procheiron -- procheiron mcp --root ./commonsAnything with an mcpServers config (Cursor, Claude Desktop, …) — merge, don't replace:
{ "mcpServers": { "procheiron": { "command": "procheiron", "args": ["mcp", "--root", "./commons"] } } }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.
How it works
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:$ python3 memory_promote.py --memory-id mem_20260709_retry_policy… --new-status active \ --reviewer alice --reason "looks right to me" memory_promote: REFUSED — self-review: 'alice' created this record (invalid transition §8.7)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-headand 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.
How it compares
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 |
|
† 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.
Commands
Command | What it does |
| Scaffold a governed memory commons. |
| Validate a deployment. Add |
| Trust-loop numbers: records, independent promotions, blocks caught. |
| Mint an ed25519 keypair for signed authorship (needs |
| Serve the commons to agents over MCP (stdio JSON-RPC). |
| Run the conformance suite (needs a repo checkout). |
| What it says. |
What the audit log can and can't do
A candid word before you rely on it.
The hash chain makes the log tamper-evident: nobody can quietly edit history without breaking
the chain. But the chain only proves the log is internally consistent — someone with write access
to the file can rebuild the whole thing from scratch and it will verify. The fix is to anchor the
newest entry hash somewhere that person can't touch (a git commit works fine) and hand it back at
check time: procheiron validate --expect-head <hex>. Now a full rewrite is caught too.
The enforcement profile has the same problem — it lives in the same directory as everything it
governs, so it can be downgraded from inside. Anchor it the same way with
--expect-lint <fingerprint>. Both anchors are checked unconditionally, and deleting what they
anchor fails the check rather than skipping it; procheiron validate --json prints the current
audit_head and lint_fingerprint so you have something to pin.
Signing raises the bar further. With the crypto extra and a key registry (known_actor_keys),
every event from a registered actor must carry that actor's valid signature. Stripping a
signature fails validation; it does not slip through.
And the honest residual: if one OS user owns the log, the keys, and the key registry, a determined insider can still rewrite and re-sign everything. On a single shared machine you get tamper-evidence (detectable through the external anchor), not tamper-prevention. To stop that insider outright you need the head anchored externally and the keys held out of the writer's reach — a separate user, an HSM, or keyless signing.
One more line worth drawing: all of this is provenance, not correctness. The gate proves who wrote and reviewed a record and that nobody rewrote history — it cannot make the content true. A reviewer can approve a wrong fact and it becomes trusted; what you get then is a clean trail to trace it and a supersession path to retire it, not prevention.
We keep a running ledger of what's proven versus merely claimed in CLAIMS.md, with evidence cited per claim. If anything in this README ever disagrees with that file, the file is right.
What's in the repo
Path | What it is |
| The v0.1 specification: governance, memory commons, control plane, the normative conformance MUST-list, and the Core/Profile boundary. |
| The test of record. |
| The adopter templates — the exact bytes |
|
|
Design choices
Zero runtime dependencies. Everything a live deployment runs is standard-library Python. The one optional extra is
procheiron[crypto]for ed25519 signing; the hash chain itself needs nothing. (jsonschemaandopaappear only as dev/CI cross-checks.)Tamper-evident by default, signed by choice. See
chain.pyandsigning.py.Portable core, specific profile. The spec stays generic; deployment-specific bindings (identities, paths, authority ladders) live in a profile. See
spec/boundary.md.No recall, ever. Embeddings and retrieval are the memory engine's job. Procheiron will not grow a competing one.
Roadmap
A second, independent real deployment passing conformance — the point where "works for its authors" becomes "works".
A reference adapter showing Procheiron governing a popular third-party memory engine end to end.
Key-custody guidance for production — separate-user, HSM, and keyless-signing patterns, so signing holds up even on a single machine.
Shipped so far: v0.1 brought the spec, conformance suite, CLI, and scaffolder; v0.2 brought the tamper-evident chain and optional signing.
Running Procheiron somewhere? Open a deployment report — an independent deployment is literally roadmap item one.
FAQ
Is this a memory engine? No. No embeddings, no ranking, no recall benchmarks, and never will.
The memory.search/memory.get tools are a governance filter over records (by status and scope,
returning only reviewed records by default) — not content retrieval. It governs the records your
engine holds.
Can it stop a malicious insider? Detection, yes; prevention only if you do two things — anchor the chain head outside the insider's reach and keep signing keys out of their write scope. The section above spells out exactly where the line is.
Why zero dependencies? A trust layer shouldn't ask you to trust a dependency tree. Everything a live deployment runs is standard-library Python; even the hash chain is stdlib.
How do I know if it fits my setup? Two questions decide it. Are your writers independently controlled — different people, teams, or processes — or does one operator run every agent? And can you operate an external head anchor plus key custody outside the writer's reach? Two yeses and the guarantees bind fully. Two noes and the review gate is closer to convention than enforcement for you — you still get a tamper-evident audit trail and a hard anti-self-review check, but the deeper promise doesn't apply to your architecture.
Is it production-ready? Not by our own rule. Conformance passes at fixture level, but the "production-replicable" claim is reserved until a second real deployment — run by someone who isn't us — passes the suite. That's roadmap item one. What it is already good for today: a tamper-evident audit trail and enforced independent review on a single-team memory commons — exactly what the 60-second demo above shows.
What if I stop using it? pipx uninstall procheiron, and keep everything: the commons is
plain JSONL and Markdown — every record and every audit event stays readable with cat. No
export step, no lock-in.
What does the name mean? Procheiron (πρόχειρον) is Greek for "ready at hand" — historically, a short practical handbook of law. A fitting name for a small set of rules you keep within reach.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceMCP Server for AI agent identity and authorization. Create, verify, and manage agent identities with trust scores and scoped authorization tokens.MIT
- Alicense-qualityCmaintenanceMCP server providing agent memory with deterministic deletion guarantees, enabling compliant event storage, context retrieval, and audit-proof data management.Apache 2.0
- AlicenseCqualityBmaintenanceAn MCP server offering hybrid memory recall and continuity tools for AI agents. It also provides a governance gateway that pre-approves risky shell/file/git actions before execution.19Apache 2.0
- AlicenseAqualityAmaintenanceMCP server exposing memory search, index, and stats tools for agents, with honesty guards to prevent re-litigation of settled decisions.53Apache 2.0
Related MCP Connectors
A paid remote MCP for agent memory MCP, built to return verdicts, receipts, usage logs, and audit-re
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/logotheusneuro-cpu/procheiron-core'
If you have feedback or need assistance with the MCP directory API, please join our Discord server