Evermint
FreeNot checkedTamper-evident receipts for AI agent actions. The notary layer for agent-to-agent transactions.
About
Tamper-evident receipts for AI agent actions. The notary layer for agent-to-agent transactions.
README
Tamper-evident receipts for AI agent actions. The notary layer for agent-to-agent transactions.
Install
npm install -g evermint-mcp
Claude Desktop config
Add to your claude_desktop_config.json:
{
"mcpServers": {
"evermint": {
"command": "evermint-mcp",
"env": {
"EVERMINT_API_KEY": "EVR-sk_your_key_here"
}
}
}
}
Get an API key at https://evermint.app/api-keys
- Add to your Claude desktop config (
~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"evermint": {
"command": "npx",
"args": ["-y", "evermint-mcp"],
"env": {
"EVERMINT_API_KEY": "EVR-sk_your_key_here"
}
}
}
}
- Restart Claude. The tools appear automatically.
Tools
evermint_mint (API key required)
Mint a tamper-evident, cryptographically timestamped record of an action.
evermint_mint({
agent_id: "billing-agent-1",
action_type: "decision_made",
payload: { decision: "approved", confidence: 0.97 }
})
evermint_verify (public)
Verify a single record by Record ID.
evermint_verify({ record_id: "EVR-12C5N1A2" })
evermint_list_records (API key required)
List records for the authenticated org with optional filters. Returns metadata only (no payloads).
evermint_list_records({
agent_id: "billing-agent-1",
action_type: "decision_made",
since: "2026-01-01T00:00:00Z",
until: "2026-05-01T00:00:00Z",
limit: 50
})
All filters are optional. limit defaults to 50 (max 200).
evermint_get_record (API key required)
Fetch the full contents of a single record, including its original payload. Returns 403 if the record exists but belongs to a different organization.
evermint_get_record({ record_id: "EVR-12C5N1A2" })
evermint_verify_chain (public)
Verify a sequence of hash-chained records. Confirms each hash matches its content, and each chain_link correctly references the prior record.
// Explicit list, oldest first
evermint_verify_chain({
record_ids: ["EVR-AAAAAAAA", "EVR-BBBBBBBB", "EVR-CCCCCCCC"]
})
// Or walk forward from a starting point
evermint_verify_chain({
start_record_id: "EVR-AAAAAAAA",
length: 10
})
Returns per-record hash_valid, chain_link_valid, plus an overall chain_intact: true|false.
Verify any record
evermint.app/verify?id=EVR-XXXXXXXX
Publishing
To publish to npm as evermint-mcp:
package.jsonname:"evermint-mcp"binentry:{ "evermint-mcp": "./dist/server.js" }- Add to Anthropic MCP registry at modelcontextprotocol.io/registry
Contact
Install Evermint in Claude Desktop, Claude Code & Cursor
unyly install evermint-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add evermint-mcp -- npx -y evermint-mcpFAQ
Is Evermint MCP free?
Yes, Evermint MCP is free — one-click install via Unyly at no cost.
Does Evermint need an API key?
No, Evermint runs without API keys or environment variables.
Is Evermint hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Evermint in Claude Desktop, Claude Code or Cursor?
Open Evermint on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Evermint with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
