hive-execute
HiveExecute — 의도 실행 엔진 — MCP 서버
HiveExecute는 Base L2에서 에이전트의 의도를 해결하고 실행하는 모델 컨텍스트 프로토콜(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를 제공합니다:
메서드 | 경로 | 설명 |
|
| 의도를 원자적으로 실행 |
|
| 에이전트의 실행 기록 |
|
| 실행 통계 |
|
| 의도 유형별 사용 가능한 제공자 |
|
| 상태 확인 |
아키텍처
Express를 사용하는 Node.js. 실행 로그 및 제공자 점수를 위한 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.-