← 返回 Skills 市场
jolestar

Hive Mcp Skill

作者 jolestar · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
154
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install hive-mcp-skill
功能描述
Use Hive Intelligence MCP through UXC for broad crypto market, onchain, portfolio, and risk workflows with help-first discovery and convenience-layer guardra...
使用说明 (SKILL.md)

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

  • 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

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

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:

  • 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.

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

  • 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 \x3Coperation> ... is equivalent to uxc https://hiveintelligence.xyz/mcp \x3Coperation> ....

References

安全使用建议
This skill is coherent and relatively low-risk, but consider the following before installing: (1) It makes network requests to https://hiveintelligence.xyz/mcp — verify you trust that endpoint and its TLS certificate. (2) It delegates discovery/auth handling to the 'uxc' skill/CLI — review that tool/skill to ensure it doesn't use or request unrelated credentials. (3) Never paste private keys, secrets, or other sensitive credentials into the agent when using discovery/invoke commands. (4) If you need long-term or write-capable workflows, require explicit review and explicit credential binding before enabling those operations. (5) The included validate.sh is a harmless repository linter; it will not be executed automatically by the agent, but you can run it locally to check file consistency.
功能分析
Type: OpenClaw Skill Name: hive-mcp-skill Version: 1.0.0 The skill bundle provides a legitimate integration for the Hive Intelligence MCP (Model Context Protocol) service, focusing on crypto market data and onchain analytics. It utilizes the `uxc` tool to interface with a remote endpoint (https://hiveintelligence.xyz/mcp) and includes comprehensive instructions for endpoint discovery, schema inspection, and usage guardrails in SKILL.md and usage-patterns.md. No evidence of data exfiltration, malicious execution, or prompt injection was found.
能力评估
Purpose & Capability
Name and description match the requested actions: the skill instructs the agent to use the Hive MCP endpoint via the uxc CLI wrapper and discover/invoke read-oriented endpoints. No unrelated binaries, env vars, or config paths are requested.
Instruction Scope
SKILL.md stays within the declared purpose: it links or uses hive-mcp-cli (uxc wrapper), discovers categories, inspects schemas, and invokes endpoints. Guardrails limit write operations and recommend narrow payloads. Note: the skill explicitly reuses the 'uxc' skill for auth/discovery — that means behavior and privileges can be expanded by whatever the uxc skill does, so review uxc if you trust this skill for sensitive workflows.
Install Mechanism
Instruction-only skill with no install spec. The only runtime dependency is a preinstalled 'uxc' CLI and network access to the official hiveintelligence.xyz endpoint. Provided validation script is local and only checks file contents; there is no remote download or archive extraction.
Credentials
The skill declares no required environment variables or credentials and includes a public, help-first flow that works without auth. The SKILL.md notes that higher-tier auth may appear later and that credentials must be bound explicitly if needed.
Persistence & Privilege
The skill is not always-enabled, does not request system-wide or other-skills' configuration access, and does not attempt to persist credentials or modify other skills. Autonomous invocation (model invocation) is enabled by default but not combined with other concerning flags.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hive-mcp-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hive-mcp-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
hive-mcp-skill 1.0.0 – Initial release - Provides access to Hive Intelligence MCP endpoints via the uxc tool. - Supports discovery and invocation for crypto market, onchain, portfolio, and risk workflows with built-in guardrails. - Leverages `uxc` for shared discovery, parsing, and authentication flows. - Outlines best practices, endpoint usage, and schema inspection steps. - Designed as a help-first, convenience aggregation layer, not a replacement for direct provider skills.
元数据
Slug hive-mcp-skill
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Hive Mcp Skill 是什么?

Use Hive Intelligence MCP through UXC for broad crypto market, onchain, portfolio, and risk workflows with help-first discovery and convenience-layer guardra... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 154 次。

如何安装 Hive Mcp Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install hive-mcp-skill」即可一键安装,无需额外配置。

Hive Mcp Skill 是免费的吗?

是的,Hive Mcp Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Hive Mcp Skill 支持哪些平台?

Hive Mcp Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Hive Mcp Skill?

由 jolestar(@jolestar)开发并维护,当前版本 v1.0.0。

💬 留言讨论