Cardano MCP Server

Cardano MCP — transactions, addresses, UTxOs, balances, ADAHandles & stake delegation

Local serverstdio

What is the Cardano MCP server?

Cardano MCP — transactions, addresses, UTxOs, balances, ADAHandles & stake delegation. That is what the cardano mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

MCP server for interacting with the Cardano blockchain from AI agents and automation systems via the Model Context Protocol.

  • Submit signed transactions to the Cardano network
  • Retrieve wallet addresses and UTxOs
  • Fetch token balances (ADA + native tokens)
  • Resolve ADAHandles (handle.me)
  • Check stake delegation and claimable rewards
  • Wallet-aware tools powered by Lucid Evolution

The tools it exposes

The server publishes 9 tools. What each one is for:

  • submit_transaction — Sign and submit a Cardano transaction from the connected wallet
  • get_addresses — Retrieve all Cardano addresses for the connected wallet
  • get_utxos — Retrieve all UTxOs for the connected wallet in raw CBOR format
  • get_balances — Retrieve all token balances for the connected wallet
  • get_adahandles — Retrieve all ADAHandles (handle.me) owned by the connected wallet
  • get_stake_delegation — Retrieve stake pool delegation and available ADA rewards
  • Cursor — The Cursor tool exposed by this server
  • Windsurf — The Windsurf tool exposed by this server
  • OpenClaw — Skills are automatically configured — start using Cardano wallet tools immediately

Getting it running

The server ships on npm as @indigoprotocol/cardano-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What it needs from you

Configuration is passed through the environment: SEED_PHRASE, BLOCKFROST_PROJECT_ID, BLOCKFROST_API_KEY, KUPO_URL, OGMIOS_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Cardano's toolset — submit_transaction, get_addresses, get_utxos and 6 more — is a fair guide to whether it matches your workflow. It is maintained by IndigoProtocol; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Cardano's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Cardano.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
submit_transactionSign and submit a Cardano transaction from the connected wallet
get_addressesRetrieve all Cardano addresses for the connected wallet
get_utxosRetrieve all UTxOs for the connected wallet in raw CBOR format
get_balancesRetrieve all token balances for the connected wallet
get_adahandlesRetrieve all ADAHandles ([handle.me](https://handle.me/)) owned by the connected wallet
get_stake_delegationRetrieve stake pool delegation and available ADA rewards
CursorThe Cursor tool exposed by this server.
WindsurfThe Windsurf tool exposed by this server.
OpenClawSkills are automatically configured — start using Cardano wallet tools immediately.

How to install the Cardano MCP server

{
  "mcpServers": {
    "cardano": {
      "command": "npx",
      "args": ["-y", "@indigoprotocol/cardano-mcp"],
      "env": {
        "SEED_PHRASE": "your-value",
        "BLOCKFROST_PROJECT_ID": "your-value",
        "BLOCKFROST_API_KEY": "your-value",
        "KUPO_URL": "your-value",
        "OGMIOS_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SEED_PHRASEConfiguration value read at startup.Optional
BLOCKFROST_PROJECT_IDConfiguration value read at startup.Optional
BLOCKFROST_API_KEYCredential the server authenticates with.Yes
KUPO_URLEndpoint or connection string the server talks to.Yes
OGMIOS_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Cardano to submit transaction.
  • Use Cardano to get addresses.
  • Use Cardano to get utxos.

Frequently asked questions

It connects Cardano to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (submit_transaction, get_addresses, get_utxos, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Cardano directly.