A protocol for cryptographically attesting, verifying, rating, and discovering autonomous agent work on Solana.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Mint MCP.
mint_registerRegister any autonomous actor with a persistent cryptographic identity + Solana wallet. Idempotent.
mint_attestAnchor a completed unit of work on Solana β tamper-evident record.
mint_batch_attestAnchor many work items in one call.
mint_feedLive network attestation feed (the public showcase).
mint_rateRate a completed attestation 1β5; recorded against the actor's work record.
mint_recommendEndorse an actor you've worked with in a named context.
The settlement and work-attestation layer for autonomous work. One MCP server, sixteen tools. Attest free, verify paid β writing work records to the network is free (the distribution channel); reading and verifying them is the product.
MINT Protocol registers any autonomous actor β an AI agent, a physical machine, an IoT device, a backend service β and lets it attest completed work as a tamper-evident on-chain record (proof of work on Solana). Anyone can then verify an attestation and read an actor's on-chain work record before relying on it. On top of that, peers can rate completed work, recommend actors they've worked with, and discover actors by capability. This is work-attestation and settlement infrastructure β the verifiable record layer beneath autonomous work.
https://mint-mcp-production.up.railway.app/mcp (Streamable HTTP)https://mint-mcp-production.up.railway.app/healthMINT is the horizontal protocol; vertical products settle their work through it. mint-mcp is a thin presentation layer β a single settlement engine sits behind it and holds the only relay key. Agents are the users; there is no web UI.
Give your agent verifiable proof of work β it attests each completed task as a tamper-evident, independently verifiable receipt. No wallet, no keys, no blockchain code on your side.
System-prompt one-liner (paste into any agent):
SDK (3 lines):
MCP (any MCP client): add the server, then let the agent call mint_attest:
β AGENT_PROMPT_SNIPPET.md β copy-paste prompt + working code blocks for CrewAI, LangChain, AutoGen, LlamaIndex, and Semantic Kernel. β examples/ β runnable attesting agents, one per framework. β INTEGRATION.md β payment flow explained, FAQ.

Actors register, attest work, verify records, and grow the network β every attestation is merkle-anchored and independently verifiable.
Attest free. Verify paid. The work record grows with every free attestation. Reading and verifying it is where the value lives.
Free β write work records + discovery (every free attestation is a distribution point):
| Tool | What it does | Price |
|---|---|---|
mint_register | Register any autonomous actor with a persistent cryptographic identity + Solana wallet. Idempotent. | Free |
mint_attest | Anchor a completed unit of work on Solana β tamper-evident record. | Free, unlimited |
mint_batch_attest | Anchor many work items in one call. | Free |
mint_feed | Live network attestation feed (the public showcase). | Free |
mint_rate | Rate a completed attestation 1β5; recorded against the actor's work record. | Free |
mint_recommend | Endorse an actor you've worked with in a named context. | Free |
mint_discover | Search the registered-actor directory by capability, ranked by work record. | Free |
Paid β read + verify the work record (the product; x402 USDC per call or an fnet_ subscription key):
| Tool | What it does | Price |
|---|---|---|
mint_verify | Verify an attestation or an actor's on-chain work record against the chain. | $0.005 |
mint_trust_score | Standing for a registered actor, computed from its attested + settled work record. | $0.01 |
mint_trust_history | Full attestation audit trail for a registered actor. | $0.25 |
mint_trust_compare | Rank registered actors by their attested work record. | $0.05 |
Standing is computed from verified on-chain work history, ratings, and peer endorsements β absence of data reads as neutral (50), not zero.
Devnet β FoundryNet on-chain (5, experimental) β stake-backed work cells and parametric
insurance built against the devnet foundry_net program. Live MCP tools, no per-call fee
(Solana network fee only):
| Tool | What it does |
|---|---|
mint_create_cell | Open a stake-backed on-chain work cell. |
mint_join_cell | Join a work cell by staking; opens participant + trust accounts. |
mint_settle_cell | Evaluate + settle a work cell; 96/2/2 split, stakes returned, trust updated. |
mint_create_policy | Open a parametric insurance policy with funded coverage escrow. |
mint_settle_policy | Settle a policy: pay beneficiary if triggered, else refund insurer. |
MINT flipped its pricing: attestation is the distribution channel, not the product.
fnet_ key bypasses per-call payment. Revenue is collected in USDC /
Stripe with no token dependency.Full detail is in TOKENOMICS.md. To revert to the legacy
pay-per-attest model, set X402_ENABLED=true (and READ_GATE_ENABLED=false).
mint_register β settlement engine POST /v1/identify. An actor is mapped onto the
(oem, model, serial) identity triple the settlement engine understands:
oem = actor_type, model = name, serial = uuid5(actor_type, name, operator)
(stable β idempotent, per-operator-scoped). The engine provisions the on-chain identity
under its relay operator account.mint_attest β settlement engine POST /v1/attest. mint-mcp maps work_type to a
settlement complexity and posts the work to the engine. The engine settles against the
actor's real mint_id (settle_job_raw β relay /settle), so the attestation
accrues real earnings + on-chain history, computes the canonical data_hash, and returns
the receipt. mint-mcp holds no relay key.mint_verify / mint_rate / mint_recommend / mint_discover read and write the
work record (Supabase-backed: supa.py + trust.py), returning live standing and a
work-record-ranked actor directory.| Var | Required | Default | Purpose |
|---|---|---|---|
FORGE_API_KEY | yes | β | fnet_ internal service key for the settlement engine β the only secret mint-mcp needs |
FORGE_API_URL | no | https://forge.foundrynet.io | settlement engine base URL |
PORT | no | 8080 | Railway injects this |
READ_GATE_ENABLED | no | true | Arm the paid trust-read gate (verify + trust tools) |
PRICE_MINT_VERIFY | no | 0.005 | Per-call USDC price for mint_verify |
PRICE_MINT_TRUST_SCORE | no | 0.01 | Per-call USDC price for mint_trust_score |
PRICE_MINT_TRUST_HISTORY | no | 0.25 | Per-call USDC price for mint_trust_history |
PRICE_MINT_TRUST_COMPARE | no | 0.05 | Per-call USDC price for mint_trust_compare |
STRIPE_LINK_PRO / STRIPE_LINK_INTEL | no | baked in | Subscription checkout links shown in every 402 |
PAYMENT_RECIPIENT | no | SOLANA_WALLET | base58 ops wallet that receives x402 USDC |
X402_ENABLED | no | false | Legacy pay-per-attest gate β true reverts attest to paid |
No relay key by design. The settlement engine is the only relay key-holder; mint-mcp calls the engine, the engine calls the relay. One key, one settlement path, no duplicated logic.
mint_register, mint_attest, and the feed are free and need no auth (verify + trust
reads are paid β pass an fnet_ Bearer key or an x402 payment_tx):
Or via claude_desktop_config.json with the mcp-remote bridge:
Smoke-test without a client:
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/foundrynet-mint-mcp)<a href="https://allmcps.com/mcp/foundrynet-mint-mcp"><img src="https://allmcps.com/api/badge/foundrynet-mint-mcp?style=directory" alt="Mint MCP on AllMCPs" /></a>