CryptoSkill — Crypto Skill Registry
Search, browse, and install crypto AI agent skills and MCP servers from cryptoskill.org.
When to Use
Use this skill when:
- The user asks to find crypto/blockchain/DeFi/exchange skills
- The user wants to install a skill for a specific protocol (e.g., "install Binance trading skill")
- The user asks about available MCP servers for crypto
- The user wants to search for skills by category (exchanges, DeFi, chains, analytics, etc.)
- The user says "cryptoskill", "/cryptoskill", or asks about crypto agent capabilities
Available Categories
| Category |
Skills |
Examples |
| exchanges |
168 |
Binance, OKX, Kraken, KuCoin, Hyperliquid, Gate.io |
| defi |
46 |
Uniswap, Aave, GMX, Rocket Pool, Venus, Lido |
| mcp-servers |
45 |
Alchemy, Solana, CoinGecko, EigenLayer, Blockscout |
| chains |
41 |
Ethereum, Solana, Bitcoin, Lightning, Base, Monad |
| analytics |
36 |
CoinMarketCap, Nansen, Dune, DefiLlama, Etherscan |
| trading |
25 |
Grid trading, whale tracking, yield scanning, signals |
| identity |
17 |
ERC-8004, 8004scan, self-agent-id |
| payments |
16 |
x402, mpp, tempo |
| wallets |
14 |
MetaMask, Bitget Wallet, Cobo TSS, MPC |
| prediction-markets |
12 |
Polymarket API, trading bots, whale copying |
| dev-tools |
12 |
Alchemy, Moralis, Foundry, Hardhat, Wagmi |
| social |
7 |
Farcaster, Nostr, XMTP |
| ai-crypto |
7 |
Bittensor, Virtuals, ElizaOS, privacy-layer |
How to Search
Search by name
Find skills related to "uniswap"
The agent will search the registry at https://github.com/jiayaoqijia/cryptoskill/tree/main/skills
Search by category
Show me all DeFi skills
List available MCP servers
What exchange skills are available?
Search by protocol
Find Binance official skills
Are there Solana MCP servers?
What skills does Kraken have?
How to Install
Install a Skill (for Claude Code)
# Clone the registry (one time)
git clone https://github.com/jiayaoqijia/cryptoskill.git /tmp/cs
# Copy a skill into your project
cp -r /tmp/cs/skills/exchanges/binance-spot-api .claude/skills/
# Or copy multiple skills
cp -r /tmp/cs/skills/defi/uniswap-official-swap-integration .claude/skills/
cp -r /tmp/cs/skills/analytics/coingecko-price .claude/skills/
Install an MCP Server (for Claude Code)
# Add a hosted MCP server
claude mcp add blockscout https://mcp.blockscout.com/mcp
# Or add via SSE
claude mcp add --transport sse eigenlayer-mcp https://eigenlayer-mcp-server-sand.vercel.app/sse
# Or install from npm
npx @coingecko/coingecko-mcp
# Or clone and run locally
git clone https://github.com/solana-foundation/solana-mcp-official.git
cd solana-mcp-official && npm install && npm start
Install via ClawHub CLI (for OpenClaw)
npm i -g clawhub
clawhub install binance-spot-api
Official Skills
These skills come from verified project teams:
| Project |
Skills |
Source |
| Kraken |
50 |
krakenfx/kraken-cli |
| Binance |
20+ |
binance/binance-skills-hub |
| OKX |
16+ |
okx/onchainos-skills |
| Gate.io |
13 |
ClawHub: gate-exchange |
| Nansen |
10 |
ClawHub: nansen-devops |
| Uniswap |
8 |
Uniswap/uniswap-ai |
| KuCoin |
7 |
Kucoin/kucoin-skills-hub |
| Bitget |
7 |
BitgetLimited/agent_hub |
| CoinMarketCap |
7 |
coinmarketcap |
| Rocket Pool |
7 |
rocket-pool/skills |
Contributing
Submit new skills at cryptoskill.org or open a PR at https://github.com/jiayaoqijia/cryptoskill
Links
1---2name: cryptoskill3description: Search, browse, and install crypto AI agent skills and MCP servers from cryptoskill.org — the largest curated registry of crypto skills with 450+ skills and 40+ MCP servers across 13 categories.4---56# CryptoSkill — Crypto Skill Registry78Search, browse, and install crypto AI agent skills and MCP servers from [cryptoskill.org](https://cryptoskill.org).910## When to Use1112Use this skill when:13- The user asks to find crypto/blockchain/DeFi/exchange skills14- The user wants to install a skill for a specific protocol (e.g., "install Binance trading skill")15- The user asks about available MCP servers for crypto16- The user wants to search for skills by category (exchanges, DeFi, chains, analytics, etc.)17- The user says "cryptoskill", "/cryptoskill", or asks about crypto agent capabilities1819## Available Categories2021| Category | Skills | Examples |22|---|---|---|23| exchanges | 168 | Binance, OKX, Kraken, KuCoin, Hyperliquid, Gate.io |24| defi | 46 | Uniswap, Aave, GMX, Rocket Pool, Venus, Lido |25| mcp-servers | 45 | Alchemy, Solana, CoinGecko, EigenLayer, Blockscout |26| chains | 41 | Ethereum, Solana, Bitcoin, Lightning, Base, Monad |27| analytics | 36 | CoinMarketCap, Nansen, Dune, DefiLlama, Etherscan |28| trading | 25 | Grid trading, whale tracking, yield scanning, signals |29| identity | 17 | ERC-8004, 8004scan, self-agent-id |30| payments | 16 | x402, mpp, tempo |31| wallets | 14 | MetaMask, Bitget Wallet, Cobo TSS, MPC |32| prediction-markets | 12 | Polymarket API, trading bots, whale copying |33| dev-tools | 12 | Alchemy, Moralis, Foundry, Hardhat, Wagmi |34| social | 7 | Farcaster, Nostr, XMTP |35| ai-crypto | 7 | Bittensor, Virtuals, ElizaOS, privacy-layer |3637## How to Search3839### Search by name40```41Find skills related to "uniswap"42```43The agent will search the registry at https://github.com/jiayaoqijia/cryptoskill/tree/main/skills4445### Search by category46```47Show me all DeFi skills48List available MCP servers49What exchange skills are available?50```5152### Search by protocol53```54Find Binance official skills55Are there Solana MCP servers?56What skills does Kraken have?57```5859## How to Install6061### Install a Skill (for Claude Code)6263```bash64# Clone the registry (one time)65git clone https://github.com/jiayaoqijia/cryptoskill.git /tmp/cs6667# Copy a skill into your project68cp -r /tmp/cs/skills/exchanges/binance-spot-api .claude/skills/6970# Or copy multiple skills71cp -r /tmp/cs/skills/defi/uniswap-official-swap-integration .claude/skills/72cp -r /tmp/cs/skills/analytics/coingecko-price .claude/skills/73```7475### Install an MCP Server (for Claude Code)7677```bash78# Add a hosted MCP server79claude mcp add blockscout https://mcp.blockscout.com/mcp8081# Or add via SSE82claude mcp add --transport sse eigenlayer-mcp https://eigenlayer-mcp-server-sand.vercel.app/sse8384# Or install from npm85npx @coingecko/coingecko-mcp8687# Or clone and run locally88git clone https://github.com/solana-foundation/solana-mcp-official.git89cd solana-mcp-official && npm install && npm start90```9192### Install via ClawHub CLI (for OpenClaw)9394```bash95npm i -g clawhub96clawhub install binance-spot-api97```9899## Official Skills100101These skills come from verified project teams:102103| Project | Skills | Source |104|---|---|---|105| Kraken | 50 | krakenfx/kraken-cli |106| Binance | 20+ | binance/binance-skills-hub |107| OKX | 16+ | okx/onchainos-skills |108| Gate.io | 13 | ClawHub: gate-exchange |109| Nansen | 10 | ClawHub: nansen-devops |110| Uniswap | 8 | Uniswap/uniswap-ai |111| KuCoin | 7 | Kucoin/kucoin-skills-hub |112| Bitget | 7 | BitgetLimited/agent_hub |113| CoinMarketCap | 7 | coinmarketcap |114| Rocket Pool | 7 | rocket-pool/skills |115116## Contributing117118Submit new skills at [cryptoskill.org](https://cryptoskill.org) or open a PR at https://github.com/jiayaoqijia/cryptoskill119120## Links121122- Website: https://cryptoskill.org123- GitHub: https://github.com/jiayaoqijia/cryptoskill124- Submit: maintainers@altresear.ch