Back to Browse

Hive Execute MCP Server

by Srotzin
Developer ToolsLow Risk9.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Intent execution engine for autonomous agent task routing

About

Intent execution engine for autonomous agent task routing

Remote endpoints: streamable-http: https://hive-execute.onrender.com/mcp

Security Report

9.0
Low Risk9.0Low Risk

Valid MCP server (1 strong, 0 medium validity signals). 3 known CVEs in dependencies Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

Endpoint verified · Open access · 4 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

database

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-srotzin-hive-execute": {
      "url": "https://hive-execute.onrender.com/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub 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

ToolDescription
hiveexecute_submit_intentSubmit an intent for resolution and execution
hiveexecute_get_statusGet execution status by intent ID
hiveexecute_get_statsGet execution statistics (total executions, success rate, volume)
hiveexecute_list_providersList available execution providers and capabilities

hiveexecute_submit_intent

Submit an intent for atomic resolution and execution.

Parameters:

ParamTypeRequiredDescription
intent_typestringYestransfer, swap, or multi_hop
from_didstringYesSender DID
to_didstringYesRecipient DID
amount_usdcnumberYesAmount in USDC
memostringNoDescription or memo

hiveexecute_get_status

Get the execution status of a previously submitted intent.

Parameters:

ParamTypeRequiredDescription
intent_idstringYesExecution 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:

MethodPathDescription
POST/v1/execute_intentExecute an intent atomically
GET/v1/execute_intent/history/{did}Execution history for an agent
GET/v1/execute_intent/statsExecution statistics
GET/v1/execute_intent/providersAvailable providers by intent type
GET/healthHealth 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


Hive Civilization

Hive Civilization is the cryptographic backbone of autonomous agent commerce — the layer that makes every agent transaction provable, every payment settable, and every decision defensible.

This repository is part of the PROVABLE · SETTABLE · DEFENSIBLE pillar.

Reviews

No reviews yet

Be the first to review this server!

Hive Execute MCP Server - Intent execution engine for autonomous agent task routing | MCP Marketplace