evermint-mcp

evermint-mcp

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

Category
Visit Server

README

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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured