Agent Receipts MCP Server

Verifiable, signed, immutable receipts for autonomous agent actions

Remote serverstreamable-httpTypeScript

What is the Agent Receipts MCP server?

Agent Receipts MCP server exists for a simple reason — assistants are far more useful when they can act on Agent Receipts directly instead of describing what you should do. Verifiable, signed, immutable receipts for autonomous agent actions.

What you get

Persistent memory for AI agents, backed by cryptographic receipts. Every fact your agent learns is signed, traceable, and independently verifiable. No cloud required.

  • Mem0 — — great memory, but no proof. It remembers things, but can't prove when or why it learned them. Memories are mutable
  • Langfuse — — great observability, but it's tracing, not proof. Logs are internal to your system, not verifiable by third parties
  • Zep — — temporal knowledge graph, but hosted and opaque

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

What the assistant can call

Once Agent Receipts is connected, these are the calls the assistant has available:

  • Timestamps — when it happened, when it completed
  • Mem0 — great memory, but no proof. It remembers things, but can't prove when or why it learned them. Memories are mutable
  • Langfuse — great observability, but it's tracing, not proof. Logs are internal to your system, not verifiable by third parties
  • Zep — temporal knowledge graph, but hosted and opaque
  • Memory — Signed entity-observation graph
  • Proof — Ed25519 signed receipts
  • Verification — Offline, by anyone, no server
  • Infrastructure — npx and done. Zero config
  • Cost — Free forever (local)
  • Export — Portable bundles with crypto verification
  • track_action — Track an agent action with automatic hashing
  • create_receipt — Create a receipt with pre-computed hashes

Configuration and credentials

You will need 3 environment variables: AGENT_RECEIPTS_AGENT_ID, AGENT_RECEIPTS_ORG_ID, RECEIPT_SIGNING_PRIVATE_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Agent Receipts.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the agent receipts mcp server does with a few real requests.

Choosing this one

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Agent Receipts's toolset — Timestamps, Mem0, Langfuse and 11 more — is a fair guide to whether it matches your workflow. It is maintained by webaesbyamin; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Agent Receipts's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Timestampswhen it happened, when it completed
Mem0great memory, but no proof. It remembers things, but can't prove when or why it learned them. Memories are mutable.
Langfusegreat observability, but it's tracing, not proof. Logs are internal to your system, not verifiable by third parties.
Zeptemporal knowledge graph, but hosted and opaque.
MemorySigned entity-observation graph
ProofEd25519 signed receipts
VerificationOffline, by anyone, no server
Infrastructurenpx and done. Zero config.
CostFree forever (local)
ExportPortable bundles with crypto verification
track_actionTrack an agent action with automatic hashing
create_receiptCreate a receipt with pre-computed hashes
complete_receiptComplete a pending receipt with results
verify_receiptVerify the cryptographic signature

How to install the Agent Receipts MCP server

{
  "mcpServers": {
    "agent-receipts": {
      "command": "npx",
      "args": ["-y", "@agent-receipts/mcp-server"],
      "env": {
        "AGENT_RECEIPTS_AGENT_ID": "your-value",
        "AGENT_RECEIPTS_ORG_ID": "your-value",
        "RECEIPT_SIGNING_PRIVATE_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
AGENT_RECEIPTS_AGENT_IDConfiguration value read at startup.Optional
AGENT_RECEIPTS_ORG_IDConfiguration value read at startup.Optional
RECEIPT_SIGNING_PRIVATE_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Agent Receipts to Timestamps.
  • Use Agent Receipts to Mem0.
  • Use Agent Receipts to Langfuse.

Frequently asked questions

It connects Agent Receipts to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Timestamps, Mem0, Langfuse, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Agent Receipts directly.