npm evermint-mcpstdioMITupdated 4mo ago
Tamper-evident receipts for AI agent actions. The notary layer for agent-to-agent transactions.
What can you do with evermint mcp?
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
- 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
Add evermint mcp to your client. Pick the one you use.
claude mcp add evermint-mcp -- npx -y evermint-mcpcodex mcp add evermint-mcp -- npx -y evermint-mcpamp mcp add evermint-mcp -- npx -y evermint-mcp{
"mcpServers": {
"evermint-mcp": {
"command": "npx",
"args": [
"-y",
"evermint-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"evermint-mcp": {
"command": "npx",
"args": [
"-y",
"evermint-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"evermint-mcp","command":"npx","args":["-y","evermint-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"evermint-mcp": {
"command": "npx",
"args": [
"-y",
"evermint-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"evermint-mcp": {
"command": "npx",
"args": [
"-y",
"evermint-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"evermint-mcp": {
"command": "npx",
"args": [
"-y",
"evermint-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"evermint-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"evermint-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"evermint-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"evermint-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y evermint-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance13/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 117 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.4Latest | May 7, 2026 |