AI skills for the Cardano blockchain
Agent Skills for the Cardano MCP Server -- wallet balances, ADAHandles, staking, and transaction submission for AI agents.
Built on the open Agent Skills standard -- a portable skill format recognized by OpenAI Codex, Gemini CLI, GitHub Copilot, Cursor, VS Code, OpenClaw, and 20+ other platforms.
npx @indigoprotocol/cardano-skills ██████╗ █████╗ ██████╗ ██████╗ █████╗ ███╗ ██╗ ██████╗
██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗████╗ ██║██╔═══██╗
██║ ███████║██████╔╝██║ ██║███████║██╔██╗ ██║██║ ██║
██║ ██╔══██║██╔══██╗██║ ██║██╔══██║██║╚██╗██║██║ ██║
╚██████╗██║ ██║██║ ██║██████╔╝██║ ██║██║ ╚████║╚██████╔╝
╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝
█████╗ ██╗
██╔══██╗██║
███████║██║
██╔══██║██║
██║ ██║██║
╚═╝ ╚═╝╚═╝
That's it — 4 wallet skills for Claude, Cursor, VS Code, OpenClaw, and 20+ platforms.
Prerequisite: Cardano MCP must be installed first.
npx @indigoprotocol/cardano-skills --allnpx @indigoprotocol/cardano-skills ██████╗ █████╗ ██████╗ ██████╗ █████╗ ███╗ ██╗ ██████╗
██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗████╗ ██║██╔═══██╗
██║ ███████║██████╔╝██║ ██║███████║██╔██╗ ██║██║ ██║
██║ ██╔══██║██╔══██╗██║ ██║██╔══██║██║╚██╗██║██║ ██║
╚██████╗██║ ██║██║ ██║██████╔╝██║ ██║██║ ╚████║╚██████╔╝
╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝
Cardano AI — Wallet skills for AI agents
Found 4 skills
Select skills to install (space to toggle)
□ cardano-balances
□ cardano-identity
□ cardano-staking
□ cardano-transactions
npx @indigoprotocol/cardano-skills --listnpx @indigoprotocol/cardano-skills --skill cardano-balancesnpx @indigoprotocol/cardano-skills --agent claude-code
npx @indigoprotocol/cardano-skills --agent cursornpx @indigoprotocol/cardano-skills --globalnpx skills add IndigoProtocol/cardano-aiclawhub install cardano-balances
clawhub install cardano-identity
clawhub install cardano-staking
clawhub install cardano-transactionsAdd the Cardano MCP server to your agent config:
Claude Code (~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"cardano": {
"command": "npx",
"args": ["@indigoprotocol/cardano-mcp"]
}
}
}Cursor (.cursor/mcp.json):
{
"mcpServers": {
"cardano": {
"command": "npx",
"args": ["@indigoprotocol/cardano-mcp"]
}
}
}npm install -g @indigoprotocol/cardano-mcpThe Cardano MCP server requires a seed phrase for wallet connection. See the cardano-mcp docs for setup.
Cardano AI Ecosystem
├── Cardano MCP (Tools) -> github.com/IndigoProtocol/cardano-mcp
└── Cardano AI (Skills) -> this repo
├── .claude-plugin/ -> plugin discovery manifest
└── packages/
├── cardano-skills/ -> npx installer CLI
└── plugins/
└── cardano-wallet/ -> wallet skills package
└── skills/
├── cardano-balances/
├── cardano-identity/
├── cardano-staking/
└── cardano-transactions/
Agent Skills is an open standard for portable AI agent capabilities. Skills are SKILL.md files that any compatible agent can read and execute.
These skills are built for the Cardano blockchain, but the format works with any platform that supports the Agent Skills standard.
- Cardano MCP Server: https://github.com/IndigoProtocol/cardano-mcp
- npm (MCP): https://www.npmjs.com/package/@indigoprotocol/cardano-mcp
- Agent Skills Standard: https://agentskills.io/home
MIT