Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Mint tamper-evident receipts for AI agent actions. The notary layer for agent-to-agent transactions.

README.md

evermint-mcp

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

  1. 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"
      }
    }
  }
}
  1. 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.json name: "evermint-mcp"
  • bin entry: { "evermint-mcp": "./dist/server.js" }
  • Add to Anthropic MCP registry at modelcontextprotocol.io/registry

Contact

info@evermint.app

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.