hive-execute
HiveExecute — 意图执行引擎 — MCP 服务器
HiveExecute 是一个模型上下文协议 (MCP) 服务器,用于在 Base L2 上解析和执行代理意图。它为自主 AI 代理处理转账、兑换、多跳结算以及复杂的交易图谱。
MCP 端点
POST /mcp所有工具交互均通过 HTTP 使用 JSON-RPC 2.0。
初始化
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize"
}列出工具
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list"
}调用工具
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "hiveexecute_submit_intent",
"arguments": {
"intent_type": "transfer",
"from_did": "did:hive:alice",
"to_did": "did:hive:bob",
"amount_usdc": 10.00,
"memo": "Payment for services"
}
}
}Related MCP server: near-intent-swaps
工具
工具 | 描述 |
| 提交意图以进行解析和执行 |
| 通过意图 ID 获取执行状态 |
| 获取执行统计信息(总执行次数、成功率、交易量) |
| 列出可用的执行提供商及其能力 |
hiveexecute_submit_intent
提交意图以进行原子化解析和执行。
参数:
参数 | 类型 | 必需 | 描述 |
| string | 是 |
|
| string | 是 | 发送方 DID |
| string | 是 | 接收方 DID |
| number | 是 | USDC 金额 |
| string | 否 | 描述或备注 |
hiveexecute_get_status
获取先前提交意图的执行状态。
参数:
参数 | 类型 | 必需 | 描述 |
| string | 是 | 来自 |
hiveexecute_get_stats
返回总执行次数、成功率、USDC 总交易量、总节省金额以及每日执行计数。无参数。
hiveexecute_list_providers
返回按意图类型分组的可用执行提供商,包含可靠性评分和执行历史。无参数。
REST API
除了 MCP 端点外,HiveExecute 还公开了 REST API:
方法 | 路径 | 描述 |
|
| 原子化执行意图 |
|
| 代理的执行历史记录 |
|
| 执行统计信息 |
|
| 按意图类型划分的可用提供商 |
|
| 健康检查 |
架构
使用 Node.js 和 Express 构建。使用 SQLite 存储执行日志和提供商评分。属于 Base L2 上 Hive Civilization 自主代理经济的一部分。
许可证
专有 — Hive Civilization
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for Boson Protocol — on-chain agentic commerce for physical & digital goods.
MCP server for Modern Treasury — payment orders, transactions, counterparties and ledgers.
MCP server for OnceAsk, the AI-native current-address layer for people and agents.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for cross-platform agent onboarding. Registers external agents, translates intents from LangChain, CrewAI, AutoGen, and A2A formats, and proxies cross-ecosystem transactions.MIT
- FlicenseAqualityCmaintenanceMCP server enabling AI agents to perform cross-chain token swaps through NEAR's intent-based architecture using the Defuse Protocol, with token discovery, quote retrieval, swap execution, and status tracking.528 npm1-
- AlicenseNot gradedqualityBmaintenanceMCP server that enables AI agents to run a deterministic orchestration loop with decomposition, subagent execution, and review feedback across multiple LLM backends.60MIT
- FlicenseNot gradedqualityBmaintenanceAn MCP server that enables AI agents to safely interact with a double-entry payments ledger, enforcing idempotency, policy-based access control, and human-in-the-loop approval for high-value actions.-