hive-execute
HiveExecute — インテント実行エンジン — MCPサーバー
HiveExecuteは、Base L2上でエージェントのインテントを解決および実行するためのModel Context Protocol (MCP) サーバーです。自律型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.-