hive-execute
MCP server for declarative intent execution. Agents submit intents — transfers, swaps, multi-hop routes — and the engine resolves and executes them atomically.
README
HiveExecute — Intent Execution Engine — MCP Server
HiveExecute is a Model Context Protocol (MCP) server that resolves and executes agent intents on Base L2. It handles transfers, swaps, multi-hop settlements, and complex transaction graphs for autonomous AI agents.
MCP Endpoint
POST /mcp
All tool interactions use JSON-RPC 2.0 over HTTP.
Initialize
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize"
}
List Tools
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list"
}
Call a Tool
{
"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"
}
}
}
Tools
| Tool | Description |
|---|---|
hiveexecute_submit_intent |
Submit an intent for resolution and execution |
hiveexecute_get_status |
Get execution status by intent ID |
hiveexecute_get_stats |
Get execution statistics (total executions, success rate, volume) |
hiveexecute_list_providers |
List available execution providers and capabilities |
hiveexecute_submit_intent
Submit an intent for atomic resolution and execution.
Parameters:
| Param | Type | Required | Description |
|---|---|---|---|
intent_type |
string | Yes | transfer, swap, or multi_hop |
from_did |
string | Yes | Sender DID |
to_did |
string | Yes | Recipient DID |
amount_usdc |
number | Yes | Amount in USDC |
memo |
string | No | Description or memo |
hiveexecute_get_status
Get the execution status of a previously submitted intent.
Parameters:
| Param | Type | Required | Description |
|---|---|---|---|
intent_id |
string | Yes | Execution ID from submit_intent |
hiveexecute_get_stats
Returns total executions, success rate, total volume in USDC, total savings, and daily execution count. No parameters.
hiveexecute_list_providers
Returns available execution providers grouped by intent type, with reliability scores and execution history. No parameters.
REST API
In addition to the MCP endpoint, HiveExecute exposes a REST API:
| Method | Path | Description |
|---|---|---|
POST |
/v1/execute_intent |
Execute an intent atomically |
GET |
/v1/execute_intent/history/{did} |
Execution history for an agent |
GET |
/v1/execute_intent/stats |
Execution statistics |
GET |
/v1/execute_intent/providers |
Available providers by intent type |
GET |
/health |
Health check |
Architecture
Node.js with Express. SQLite for execution logs and provider scores. Part of the Hive Civilization autonomous agent economy on Base L2.
License
Proprietary — Hive Civilization
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.