hive-mcp-skill

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Hive Intelligence MCP Skill

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.
使用该Skill通过
uxc
执行Hive Intelligence MCP操作。
复用
uxc
Skill以实现共享协议发现、输出解析和通用认证处理。

Prerequisites

前提条件

  • uxc
    is installed and available in
    PATH
    .
  • Network access to
    https://hiveintelligence.xyz/mcp
    .
  • Access to the official Hive MCP documentation:
    • https://hiveintelligence.xyz/crypto-market-data-mcp
  • 已安装
    uxc
    且其可在
    PATH
    中访问。
  • 可访问网络地址
    https://hiveintelligence.xyz/mcp
  • 可访问官方Hive MCP文档:
    • https://hiveintelligence.xyz/crypto-market-data-mcp

Scope

适用范围

This skill covers the official remote Hive MCP surface for:
  • category-level endpoint discovery
  • crypto market and onchain data discovery
  • wallet and portfolio lookup workflows
  • security and risk endpoint discovery
  • schema inspection for underlying API endpoints
  • endpoint invocation through Hive's MCP tool layer
This skill does not cover:
  • direct replacement of first-party provider integrations
  • assuming one Hive endpoint has the same data quality as the underlying provider skill
  • write operations without separate explicit review
该Skill覆盖官方远程Hive MCP的以下功能领域:
  • 类别级端点发现
  • 加密货币市场与链上数据发现
  • 钱包与投资组合查询工作流
  • 安全与风险端点发现
  • 底层API端点的架构检查
  • 通过Hive的MCP工具层调用端点
该Skill 涵盖:
  • 直接替代第一方提供商集成
  • 假设Hive的某个端点具备与底层提供商Skill相同的数据质量
  • 未经单独明确审核的写入操作

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.
Hive是官方远程MCP便捷层。
当用户希望快速获得一个广泛的加密货币MCP入口点时,可使用它。
若长期提供商覆盖质量至关重要,请勿将Hive视为
DexScreener
Helius
Blocknative
或其他第一方Skill等直接提供商集成的替代品。

Endpoint

端点

Use the official Hive MCP endpoint:
  • https://hiveintelligence.xyz/mcp
使用官方Hive MCP端点:
  • https://hiveintelligence.xyz/mcp

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.
该Skill的公共以帮助为导向流程无需本地认证引导即可运行。
若Hive后续为更高层级访问引入认证机制,需先验证运行时错误并绑定凭证,再扩展该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"}'
  1. 默认使用固定链接命令:
    • command -v hive-mcp-cli
    • 若未找到,创建链接:
      uxc link hive-mcp-cli https://hiveintelligence.xyz/mcp
    • hive-mcp-cli -h
  2. 首先发现类别:
    • 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. 调用前检查端点架构:
    • hive-mcp-cli get_api_endpoint_schema endpoint=get_token_price
    • hive-mcp-cli get_api_endpoint_schema endpoint=get_wallet_portfolio
  4. 确认架构后再调用:
    • 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

推荐的发现操作

  • get_market_and_price_endpoints
  • get_onchain_dex_pool_endpoints
  • get_portfolio_wallet_endpoints
  • get_token_contract_endpoints
  • get_security_risk_endpoints
  • get_network_infrastructure_endpoints
  • get_market_and_price_endpoints
  • get_onchain_dex_pool_endpoints
  • get_portfolio_wallet_endpoints
  • get_token_contract_endpoints
  • get_security_risk_endpoints
  • get_network_infrastructure_endpoints

Guardrails

防护措施

  • Keep automation on the JSON output envelope; do not rely on
    --text
    .
  • Parse stable fields first:
    ok
    ,
    kind
    ,
    protocol
    ,
    data
    ,
    error
    .
  • Treat Hive as a convenience aggregation layer, not as the canonical source when a direct provider skill already exists.
  • Always inspect a target endpoint schema with
    get_api_endpoint_schema
    before calling
    invoke_api_endpoint
    .
  • Keep
    invoke_api_endpoint
    payloads narrow and explicit; do not guess large nested arg objects.
  • If a workflow becomes repetitive on one underlying provider surface, prefer a dedicated first-party skill over routing everything through Hive indefinitely.
  • hive-mcp-cli <operation> ...
    is equivalent to
    uxc https://hiveintelligence.xyz/mcp <operation> ...
    .
  • 自动化仅针对JSON输出包;请勿依赖
    --text
    参数。
  • 优先解析稳定字段:
    ok
    kind
    protocol
    data
    error
  • 将Hive视为便捷聚合层,而非已有直接提供商Skill时的权威数据源。
  • 调用
    invoke_api_endpoint
    前,务必使用
    get_api_endpoint_schema
    检查目标端点的架构。
  • invoke_api_endpoint
    的负载应简洁明确;请勿猜测大型嵌套参数对象。
  • 若某个工作流在单一底层提供商层面变得重复,优先使用专用第一方Skill,而非长期通过Hive路由所有请求。
  • hive-mcp-cli <operation> ...
    等同于
    uxc https://hiveintelligence.xyz/mcp <operation> ...

References

参考资料