cardano-mcp-balances
cardano-mcp-balances
Query wallet balances, addresses, and UTxOs through a configured cardano MCP server. Read-only — no signing, no submission.
When to use
- User asks about wallet balance, ADA holdings, or native token amounts.
- User asks for their wallet address(es).
- User asks about UTxOs or wants to inspect unspent outputs.
- A configured
cardanoMCP server is available.
When NOT to use
- No
cardanoMCP server is configured — fall back tokoios-agent-walletorcardano-cli-wallets. - User needs testnet data — current integration assumes mainnet unless testnet support is explicitly validated.
- User needs to build or submit transactions — see
cardano-mcp-transactionsor builder skills.
Operating rules
- Detect MCP first. If
get_balances,get_addresses, orget_utxostools are not available, fall back to Koios or CLI skills. Never error on missing MCP. - Never ask for seed phrases or keys. The MCP server manages key material internally.
- Lovelace conversion.
get_balancesreturns ADA amounts in lovelace. Always divide by 1,000,000 when displaying to the user. - Network assumption. Current integration assumes mainnet unless testnet support is explicitly validated against the configured MCP server.
MCP tools
get_balances
All token balances for the connected wallet.
- Input: none
- Output:
{ balances: [{ name, policyId, nameHex, amount }] } name:"ADA"for lovelace, decoded hex for native assetsamount: lovelace for ADA (divide by 1,000,000), raw quantity for native assetspolicyId: empty string for ADA, 56-char hex for native assetsnameHex: empty string for ADA, hex-encoded asset name for native assets
get_addresses
All addresses for the connected wallet.
- Input: none
- Output:
{ addresses: string[] }— deduplicated bech32 addresses derived from UTxOs
get_utxos
All unspent transaction outputs for the connected wallet.
- Input: none
- Output:
{ utxos: string[] }— each UTxO serialized as CBOR hex
Provider precedence
Wallet state query:
1. cardano MCP (if configured) ← this skill
2. koios-agent-wallet (MeshJS + Koios, any network)
3. cardano-cli-wallets (CLI, any network)
Read-only wallet state goes MCP-first when available. If MCP is unavailable or the user needs testnet, fall back without prompting.
Example output format
=== Wallet Summary ===
Address: addr1qx...
ADA: 142.35 ₳
Native tokens:
- HOSKY (f0ff48...): 1,000,000
- SNEK (279c90...): 500
UTxOs: 7
References
shared/mcp-provider.mdkoios-agent-wallet(Koios fallback)cardano-cli-wallets(CLI fallback)- cardano-mcp: https://github.com/IndigoProtocol/cardano-mcp
More from flux-point-studios/cardano-agent-skills
aiken-smart-contracts
Aiken workflows: validators, building, blueprints, .plutus generation. Safe guidance for smart contract development.
41cardano-protocol-params
Protocol parameters: fetch pparams, understand fees, min-UTxO, execution budgets. Read-only diagnostics.
35plutus-v3-conway
Plutus V3 under Conway: unified context, governance scripts, V2→V3 migration. Conceptual and practical guidance.
34cardano-cli-wallets
Wallet guidance: key generation, address building, UTxO queries. Provides templates and explanations (no execution).
34cardano-cli-plutus-scripts
Plutus script guidance: datums, redeemers, collateral, reference scripts. Templates only—use operator to execute.
34cardano-cli-transactions
Transaction guidance: build, sign, submit patterns. Provides templates (no execution). Use operator skill to execute.
33