Start in 30 Seconds

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.


Install the skill pack

The recommended installer configures Hive MCP and copies the bundled skills into clients that support local skill directories:

npx -y hive-intelligence@latest init --all --browser

What it does:

  1. Runs PKCE browser auth and stores your key in ~/.config/hive/credentials.json.
  2. Registers Hive MCP in detected clients such as Claude Desktop, Claude Code, Cursor, Windsurf, VS Code, Codex CLI, and Gemini CLI, and prints the UI connector details for ChatGPT Desktop.
  3. Copies Hive skill folders into ~/.claude/skills/ and ~/.cursor/skills/ where those clients can load them directly.
  4. Prints manual connector instructions for UI-only clients such as ChatGPT Desktop.

Headless environments can skip browser auth and provide the key through HIVE_API_KEY:

npx -y hive-intelligence@latest init --all
export HIVE_API_KEY=hive_live_...

For client-specific setup, use the install guide or the one-command installer page.


Runtime sources

SourceUse it for
hive://skillsRuntime skill metadata during an MCP session
hive://toolsetsTask-routing maps before choosing exact tools
hive://task-canariesRepresentative calls for validating workflow coverage
/skills/index.jsonPublic JSON mirror for crawlers and non-MCP agents
/agent-onboarding/SKILL.mdInstall-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

SkillMirrorCovers
Install Hive MCPhive-mcpConnect Hive's hosted remote MCP endpoint
Get a Hive API Keyhive-build-onboardingBrowser auth, dashboard keys, headless setup
Build With Hivehive-buildREST, MCP SDK clients, backend services
Use Hive CLIhive-cliTerminal workflows, scripts, cron jobs
Route A Crypto Queryhive-queryIntent routing across every task toolset
Tool Discoveryhive-tool-discoverysearch_tools, schemas, resources, invocation
Market Researchhive-market-researchPrices, liquidity, exchanges, OHLC, derivatives
Token Diligencehive-token-diligenceMetadata, holders, liquidity, enrichment, risk
Wallet Investigationhive-wallet-investigationBalances, transfers, NFTs, PnL, DeFi positions
Security Riskhive-security-riskToken, approval, address, dApp, phishing, simulation risk
DEX And Pool Analysishive-dex-pool-analysisPools, pairs, liquidity, trades, OHLCV
DeFi Researchhive-defi-researchProtocols, TVL, fees, revenue, bridges, yields
NFT Researchhive-nft-researchCollections, ownership, metadata, floors, rarity
Solana Analysishive-solana-analysisSPL accounts, DAS assets, parsed transactions, priority fees
Network Infrastructurehive-network-infrastructureGas, blocks, receipts, logs, RPC diagnostics
Prediction Marketshive-prediction-marketsEvents, outcomes, market stats, traders, trades

Verify the install

Run the local health check:

hive doctor

Then 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, 348 wrapped provider tools, 7 runtime resources, 3 prompts, 11 task toolsets, and 16 public skill packs.