cardano-mcp-staking
cardano-mcp-staking
Query staking delegation status and available ADA rewards through a configured cardano MCP server. Read-only — this skill cannot register, delegate, or withdraw. For staking operations, use cardano-cli-staking or koios-agent-wallet.
When to use
- User asks which pool they are delegated to.
- User asks about pending staking rewards.
- User wants a quick staking status check.
- A configured
cardanoMCP server is available.
When NOT to use
- No
cardanoMCP server is configured — usekoios-agent-wallet(fetchAccountInfo) orcardano-cli query stake-address-info. - User wants to delegate, register, or withdraw — use
cardano-cli-staking/cardano-cli-staking-operatororkoios-agent-wallet(MODE=stake). - User needs testnet staking info — current integration assumes mainnet unless testnet support is explicitly validated.
Operating rules
- Detect MCP first. If
get_stake_delegationis not available, fall back to Koios or CLI. - Never ask for seed phrases or keys.
- Rewards are in ADA. The MCP tool returns
availableAdaRewardsalready divided by 10^6 — do not divide again. - Pool ID is bech32. The returned
poolIdis bech32-encoded (pool1...). Link to a pool explorer (e.g., Cardanoscan) for details. - Network assumption. Current integration assumes mainnet unless testnet support is explicitly validated.
MCP tool
get_stake_delegation
Staking pool and available rewards for the connected wallet.
- Input: none
- Output:
{ poolId: string, availableAdaRewards: number } poolId: bech32 pool ID (pool1...) or empty if not delegatedavailableAdaRewards: available rewards in ADA (already divided by 10^6)
Example output
=== Staking Status ===
Delegated to: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy (IOHK)
Rewards: 12.45 ₳
References
shared/mcp-provider.mdcardano-cli-staking(CLI guidance for delegation)koios-agent-wallet(Koios-based staking)- 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.
42cardano-protocol-params
Protocol parameters: fetch pparams, understand fees, min-UTxO, execution budgets. Read-only diagnostics.
36cardano-cli-plutus-scripts
Plutus script guidance: datums, redeemers, collateral, reference scripts. Templates only—use operator to execute.
36plutus-v3-conway
Plutus V3 under Conway: unified context, governance scripts, V2→V3 migration. Conceptual and practical guidance.
35cardano-cli-wallets
Wallet guidance: key generation, address building, UTxO queries. Provides templates and explanations (no execution).
35cardano-cli-transactions
Transaction guidance: build, sign, submit patterns. Provides templates (no execution). Use operator skill to execute.
34