Get Started
Hive Agent Skills
Hive ships a first-party skill pack alongside the managed MCP server. Skills teach an agent how to use Hive; the MCP server still performs the live data calls.
Use this page when you want the human-readable index. Agents can read the runtime resource hive://skills, the public JSON mirror at /skills/index.json, or the individual Markdown mirrors linked below.
Use the skill pack
Hive publishes installable skills, public website mirrors, and runtime MCP resources. Use the public skills mirror when your agent supports npx skills; use hive://skills when the agent is already inside a Hive MCP session.
Install every Hive skill with the skills CLI:
npx skills add hive-intel/hive-skillsPreview the available skills without installing:
npx skills add hive-intel/hive-skills --listInstall one focused skill:
npx skills add hive-intel/hive-skills --skill hive-token-diligence --yesThe current published Hive CLI also initializes local credentials and can install supported local agent resources:
npx -y -p hive-intelligence@latest hive init --all --browserHeadless environments can provide the key through HIVE_API_KEY:
export HIVE_API_KEY=hive_live_...For client-specific MCP setup, use the install guide. For CLI setup and config-snippet commands, use CLI and Agent Skills Setup.
Current distribution
github.com/hive-intel/hive-skills- public installable skills mirror fornpx skills.hive://skills- runtime skill metadata inside an MCP session./skills/index.json- public JSON index of the skill pack./skills/*.md- individual skill Markdown mirrors for AI crawlers and humans./agent-onboarding/SKILL.md- agent install decision tree.npx -y -p hive-intelligence@latest hive init --all --browser- full local setup with browser auth and supported agent resources.
Agent Skills are distribution and workflow guidance. MCP is the execution surface for live calls, REST is the backend HTTP surface, and the CLI is the local terminal surface.
Runtime sources
| Source | Use it for |
|---|---|
npx skills add hive-intel/hive-skills | Install the full Hive skill pack into supported agent environments |
npx skills add hive-intel/hive-skills --skill hive-token-diligence --yes | Install one focused Hive workflow skill |
hive://skills | Runtime skill metadata during an MCP session |
hive://toolsets | Task-routing maps before choosing exact tools |
hive://task-canaries | Representative calls for validating workflow coverage |
/skills/index.json | Public JSON mirror for crawlers and non-MCP agents |
/agent-onboarding/SKILL.md | Install-path decision tree for autonomous agents |
Agents should prefer runtime resources over cached docs. The root workflow is: read hive://toolsets or call search_tools, inspect the schema with get_api_endpoint_schema, then execute with invoke_api_endpoint.
Skill inventory
| Skill | Mirror | Covers |
|---|---|---|
| Install Hive MCP | hive-mcp | Connect Hive's hosted remote MCP endpoint |
| Get a Hive API Key | hive-build-onboarding | Browser auth, dashboard keys, headless setup |
| Build With Hive | hive-build | REST, MCP clients, published TypeScript adapter |
| Use Hive CLI | hive-cli | Terminal workflows, scripts, cron jobs |
| Route A Crypto Query | hive-query | Intent routing across every task toolset |
| Stateful Monitoring | hive-stateful-monitoring | Monitors, alerts, memory facts, reports, and B2B subjects |
| Tool Discovery | hive-tool-discovery | search_tools, schemas, resources, invocation |
| Market Research | hive-market-research | Prices, liquidity, exchanges, OHLC, derivatives |
| Token Diligence | hive-token-diligence | Metadata, holders, liquidity, enrichment, risk |
| Wallet Investigation | hive-wallet-investigation | Balances, transfers, NFTs, PnL, DeFi positions |
| Security Risk | hive-security-risk | Token, approval, address, dApp, phishing, simulation risk |
| DEX And Pool Analysis | hive-dex-pool-analysis | Pools, pairs, liquidity, trades, OHLCV |
| DeFi Research | hive-defi-research | Protocols, TVL, fees, revenue, bridges, yields |
| NFT Research | hive-nft-research | Collections, ownership, metadata, floors, rarity |
| Solana Analysis | hive-solana-analysis | SPL accounts, DAS assets, parsed transactions, priority fees |
| Network Infrastructure | hive-network-infrastructure | Gas, blocks, receipts, logs, RPC diagnostics |
| Prediction Markets | hive-prediction-markets | Events, outcomes, market stats, traders, trades |
Verify the install
Run the local health check:
hive doctorThen verify the live catalog:
curl -X GET "https://mcp.hiveintelligence.xyz/api/v1/tools?limit=5" \
-H "Authorization: Bearer YOUR_HIVE_API_KEY"The current production snapshot exposes 13 root discovery tools, 351 categorized provider tools, 18 Hive-native stateful tools, 7 runtime resources, 3 prompts, 12 task toolsets, and 17 public skill packs. The full callable catalog is 369 tools.