Hive Intelligence MCP Skill

Use this skill to run Hive Intelligence MCP operations through uxc.

Reuse the uxc skill for shared protocol discovery, output parsing, and generic auth handling.

Prerequisites

Scope

This skill covers the official remote Hive MCP surface for:

This skill does not cover:

Positioning

Hive is an official remote MCP convenience layer.

Use it when a user wants one broad crypto MCP entrypoint quickly.

Do not treat Hive as a substitute for direct provider integrations like DexScreener, Helius, Blocknative, or other first-party skills where long-term provider coverage quality matters.

Endpoint

Use the official Hive MCP endpoint:

Authentication

The public help-first flow for this skill works without a local auth bootstrap.

If Hive later introduces auth for higher-tier access, verify the runtime error and bind credentials before extending this skill.

Core Workflow

  1. Use the fixed link command by default:

    • command -v hive-mcp-cli
    • If missing, create it: uxc link hive-mcp-cli https://hiveintelligence.xyz/mcp
    • hive-mcp-cli -h
  2. Discover categories first:

    • hive-mcp-cli get_market_and_price_endpoints
    • hive-mcp-cli get_onchain_dex_pool_endpoints
    • hive-mcp-cli get_portfolio_wallet_endpoints
    • hive-mcp-cli get_security_risk_endpoints
  3. Inspect endpoint schema before invoking:

    • hive-mcp-cli get_api_endpoint_schema endpoint=get_token_price
    • hive-mcp-cli get_api_endpoint_schema endpoint=get_wallet_portfolio
  4. Invoke only after confirming the schema:

    • hive-mcp-cli invoke_api_endpoint endpoint_name=get_token_price args:='{"symbol":"BTC"}'
    • hive-mcp-cli invoke_api_endpoint endpoint_name=get_wallet_portfolio args:='{"address":"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"}'

Recommended Discovery Operations

Guardrails

References