verify_receiptVerify any Sovereign receipt by passing canonical + signature. Returns {valid: true|false} — same endpoint compliance auditors use.
Install Sovereign as an MCP server. Verify any agent-run receipt, fetch the freshest public one, or stream the live feed — directly from Claude Desktop, Claude Code, Cursor, or any MCP-compatible client. One config line. No API key.
{
"mcpServers": {
"sovereign-verifier": {
"type": "http",
"url": "https://sovereignmatrix.agency/api/mcp/verifier"
}
}
}verify_receiptVerify any Sovereign receipt by passing canonical + signature. Returns {valid: true|false} — same endpoint compliance auditors use.
fetch_receiptPull a receipt by id. Returns canonical + signature + agent name + model + timestamps. Visibility-gated: only public/unlisted receipts.
latest_public_receiptGet the freshest public receipt. Useful for 'show me what was just signed' demos in AI tools.
recent_public_receiptsFeed of the last N public receipts (1-50, default 10). Each row is a fingerprint summary — call fetch_receipt for full data.
The server speaks JSON-RPC 2.0 over HTTP — installable clients are the easy path, but curl works too:
curl -X POST https://sovereignmatrix.agency/api/mcp/verifier \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'Or visit /api/mcp/verifier in a browser for the GET self-description.