Postcondition
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., "@Postconditionverify soul-mcp@4.0.1 published on npm"
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.
Postcondition
Agents call tools. Postcondition checks whether the world changed.
An agent receiving success: true from a tool only knows that the call returned.
It does not know that a release is public, a file contains the intended data, a
commit reached a remote-tracking branch, or an API now exposes the required
state.
Postcondition adds that missing step. It is a local-first MCP server, TypeScript SDK, and CLI for declaring observable outcomes, checking them with constrained read-only verifiers, and keeping hash-chained observation receipts.
intent → action in any tool → independent observation → honest verdict
├─ satisfied
├─ violated
└─ unknownIt does not execute the action, expose hidden chain-of-thought, or turn an agent's own claim into external proof.
Quick start
Run the MCP server without a global install:
npx -y postcondition-mcp serveAdd it to an MCP client:
{
"mcpServers": {
"postcondition": {
"command": "npx",
"args": ["-y", "postcondition-mcp", "serve"]
}
}
}The database defaults to ~/.postcondition/postcondition.db. Set
POSTCONDITION_DB to use a different absolute path.
Related MCP server: agent-gate
The smallest useful flow
Define the world state that should be true:
postcondition define --json '{
"statement": "soul-mcp 4.0.1 is visible in the public npm registry",
"subject": "npm:soul-mcp@4.0.1",
"verifier": {
"kind": "npm",
"package": "soul-mcp",
"check": { "op": "version_exists", "version": "4.0.1" }
}
}'After the publishing action, check the returned contract id:
postcondition check pc_...The result contains an observation, an evidence digest, the previous receipt
hash, and the current receipt hash. postcondition verify-ledger recomputes the
chain.
Verifiers
Kind | Supported checks | Network/process behaviour |
| exists, absent, SHA-256, text, JSON pointer, size | Local read only; content inspection capped at 16 MiB |
| status, text, JSON pointer | GET only; no custom headers; 3 redirects; 30 s maximum |
| branch, clean state, HEAD, tag, remote containment | Fixed read-only |
| published version, dist-tag | Public registry GET |
| explicit human or agent attestation | No automatic observation |
HTTP and registry checks block loopback, link-local, private, and reserved
addresses by default. For intentional local development checks, opt in with
POSTCONDITION_ALLOW_PRIVATE=1. Read the threat model
before enabling it in an environment that can reach sensitive services.
MCP surface
Seven tools:
postcondition_define— record a testable outcome and verifier.postcondition_check— observe now and append a receipt.postcondition_get— read one contract and its history.postcondition_list— filter recent contracts by verdict.postcondition_attest— record a labelled human or agent attestation.postcondition_retract— invalidate a bad contract without deleting history.postcondition_verify_ledger— recompute evidence digests and the receipt chain.
Resources:
postcondition://statuspostcondition://contractspostcondition://receiptspostcondition://contract/{id}
Prompt: verify-before-done.
TypeScript SDK
import { PostconditionRuntime } from 'postcondition-mcp';
const runtime = new PostconditionRuntime({ dbPath: './postconditions.db' });
const contract = runtime.define({
statement: 'The generated manifest declares version 1.2.0',
verifier: {
kind: 'file',
path: './package.json',
check: { op: 'json_equals', pointer: '/version', value: '1.2.0' },
},
});
const receipt = await runtime.check(contract.id);
console.log(receipt.verdict); // satisfied | violated | unknown
runtime.close();Evidence is classified, not flattened
Evidence class | Meaning |
| A remote HTTP/npm endpoint was read independently |
| A constrained local file or Git check ran |
| A human supplied the result |
| An agent supplied its own result |
These labels remain in every receipt. An attestation can be useful, but it is never silently presented as external observation.
Design rules
Outcome, not execution: Postcondition observes after an action; it is not a second orchestration framework.
Unknown is a valid result: timeouts, parsing failures, blocked targets, and unavailable evidence do not become false violations or fabricated success.
No arbitrary command verifier: Git checks use fixed argument sets and
execFile, never a user-provided shell command.Corrections stay visible: contracts can be retracted, not erased through the public API.
Protocol-clean stdout: MCP mode reserves stdout for JSON-RPC.
Local-first: no account, telemetry, hosted control plane, or API key is required.
What the receipt chain proves
Each observation stores a canonical evidence digest and includes the prior receipt hash. The verifier can detect modified evidence, modified receipt fields, reordered receipts, or a broken link in the local chain.
It does not yet provide cryptographic non-repudiation against an attacker who can rewrite the database and recompute the entire chain. Signed checkpoints and external anchors are future work. This boundary is intentional and tested; see limitations.
Development
Requires Node.js 20 or newer.
npm install
npm test
npm run test:coverage
npm run smoke:packThe test suite covers the SDK, SQLite persistence, receipt mutation, CLI, an actual MCP stdio handshake, file limits, fixed Git checks, redirects, network blocking, and registry observations across the supported Node versions in CI.
Origin
Postcondition grew from a repeated design principle across Christian Bucher's Soul and Miguel systems: autonomy should carry evidence, permission boundaries, corrections, and observable outcomes. It is a clean public implementation, not an export of personal memory, private session logs, or the Miguel monolith. Read ORIGINS.md for the public lineage.
Status
0.1.x is an early public interface. Contract and receipt schemas may gain
fields before 1.0; existing SQLite data will be migrated rather than silently
discarded. Please report security issues through the private process in
SECURITY.md.
MIT © Christian Bucher
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
- Flicense-qualityCmaintenanceThis MCP server verifies that an agent’s claimed tool output matches the actual response returned by a tool to prevent invented or distorted results. It flags mismatches, omissions, and invented fields to ensure downstream logic only processes verified tool data.
- AlicenseBqualityAmaintenanceAn MCP server that enforces fail-closed deterministic checks, independent refute-first review, and tamper-evident hash-chained receipts for AI agent outputs before claiming completion.43MIT
- FlicenseAqualityCmaintenanceMCP server that auto-emits tamper-evident receipts for every tool call, enabling EU AI Act Article 12 compliance with signed, chain-linked receipts.1
- -license-quality-maintenanceAn MCP server that validates tool calls against JSON Schema, performs deterministic repair, redacts secrets, and maintains a hash-chained audit ledger.
Related MCP Connectors
Hash-chained HMAC-signed audit log MCP for A2A (agent-to-agent) calls. Every tool-call, agent-ha...
Viridis Verified: wrap any MCP server with tamper-evident delivery receipts + metered fees.
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
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/christian140903-sudo/postcondition-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server