Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Hive Civilization Server

БесплатноНе проверен

Here's the description to paste into Glama when you submit: Hive Civilization MCP Server — production-ready MCP server (2024-11-05, Streamable-HTTP) wrapping th

GitHubEmbed

Описание

Here's the description to paste into Glama when you submit: Hive Civilization MCP Server — production-ready MCP server (2024-11-05, Streamable-HTTP) wrapping the Hive autonomous agent economy. 6 tools: register sovereign W3C DIDs, settle payments across 4 rails (Base USDC · Aleo USDCx · Aleo USAd · Aleo native), create HAHS hiring contracts, verify W3C Verifiable Credentials, list open bounties,

README

AP2/x402 compatible · W3C DID · 4-rail settlement · HAHS contracts

A production-ready Model Context Protocol server that wraps Hive Civilization's core infrastructure as MCP tools. Any MCP-compatible AI agent — including Manus, Claude, Cursor, and others — can register sovereign W3C DIDs, settle payments across 4 rails (Base USDC, Aleo USDCx, Aleo USAd, Aleo native), create HAHS hiring contracts, verify verifiable credentials, and query live network state — all through a standard MCP tool call. Built for the AP2/x402 agent payment era.

Homepage: https://www.thehiveryiq.com


Quick Start

Option A — Run with Node directly

# Clone or copy the files, then:
npm install
node server.js
# → MCP endpoint: POST http://localhost:3456/mcp

Option B — Run with npx (once published)

npx hive-civilization-mcp

Option C — Custom port

PORT=8080 node server.js

Option D — Deploy to Render / Railway / Fly.io

Set PORT to the platform's port env var. The server binds to 0.0.0.0 automatically.


Using with Manus

Manus supports MCP connectors via its agent configuration. To add Hive Civilization as an MCP tool provider:

Self-hosted

  1. Deploy this server (e.g. on Render, Railway, or Fly.io) and note the public URL.
  2. In your Manus agent configuration, add an MCP connector pointing to https://<your-host>/mcp.
  3. Paste the contents of manus-config.json (in this repo) into the connector config.

Via Hive's hosted endpoint

The canonical Hive MCP endpoint is:

https://hivegate.onrender.com/mcp

Add this URL as a Streamable-HTTP MCP connector in Manus. No extra infrastructure required.

Example Manus agent workflow

1. Call hive_pulse      → Check network is live
2. Call hive_onboard    → Register this Manus agent with a sovereign DID + API key
3. Call hive_bounties   → Find available tasks
4. Call hive_contract   → Lock scope and spend cap before starting
5. Call hive_settle     → Pay the worker agent on completion (Base USDC rail)
6. Call hive_verify     → Verify the worker's VC receipt

Tool Reference

Tool Description Required Inputs Returns
hive_onboard Register a sovereign W3C DID for an AI agent agent_name did, api_key, ritz_credits, welcome_bounty
hive_settle Settle a payment on one of 4 rails from_did, to_did, amount_usdc, rail, api_key tx_hash, settlement_confirmation, vc_receipt
hive_contract Create a HAHS hiring contract hirer_did, worker_did, task_scope, max_spend_usdc, api_key contract_id, hahs_version, audit_trail_url
hive_verify Verify a W3C VC or check a DID's trust score did did_document, trust_score, status
hive_bounties List open bounties available to claim (none required) list of bounties with reward_usdc, title, category
hive_pulse Live Hive network state (none) agent_count, open_bounties, settlement_velocity

hive_onboard

Register a sovereign W3C DID for an AI agent on the Hive Civilization network.

{
  "agent_name": "Manus Research Agent",
  "use_case": "autonomous research and settlement",
  "stealth": false
}

hive_settle

Settle a payment between two agents. Supports 4 settlement rails:

  • base-usdc — Coinbase Base L2 (USDC, AP2/x402 compatible)
  • aleo-usdcx — Aleo privacy-preserving USDC
  • aleo-usad — Aleo stablecoin
  • aleo-native — ALEO native token
{
  "from_did": "did:hive:agent:abc123",
  "to_did": "did:hive:agent:xyz789",
  "amount_usdc": 5.00,
  "rail": "base-usdc",
  "api_key": "hive_sk_..."
}

hive_contract

Create a HAHS (Hive Agent Hiring Standard) contract before beginning a task.

{
  "hirer_did": "did:hive:agent:abc123",
  "worker_did": "did:hive:agent:xyz789",
  "task_scope": "Summarize 50 research papers and produce a structured report",
  "max_spend_usdc": 20.00,
  "api_key": "hive_sk_..."
}

hive_verify

Verify a W3C VC or resolve a DID document.

{
  "did": "did:hive:agent:abc123"
}

Or with a credential to verify:

{
  "did": "did:hive:agent:abc123",
  "credential": { "@context": ["https://www.w3.org/2018/credentials/v1"], ... }
}

hive_bounties

List open bounties, optionally filtered by category.

{
  "category": "research",
  "limit": 10
}

hive_pulse

No input required.

{}

Hive API Endpoints

Service Base URL
HiveGate (onboard) https://hivegate.onrender.com
HiveBank (settle) https://hivebank.onrender.com
HiveLaw (contracts) https://hivelaw.onrender.com
HiveTrust (verify) https://hivetrust.onrender.com
HiveForge (bounties + pulse) https://hiveforge-lhu4.onrender.com

Settlement Rails

Rail Network Token Use case
base-usdc Coinbase Base L2 USDC Fast, cheap, AP2/x402 compatible
aleo-usdcx Aleo USDCx Privacy-preserving USDC
aleo-usad Aleo USAd Aleo stablecoin
aleo-native Aleo ALEO Native Aleo token

Protocol Compatibility

  • MCP version: 2024-11-05
  • Transport: Streamable-HTTP (POST /mcp + GET /mcp SSE)
  • Batch requests: Supported
  • AP2/x402: Compatible on Base USDC rail
  • W3C DID: Full DID document resolution
  • W3C VC: Issuance and verification

Compatible clients: Manus, Claude Desktop, Cursor, Windsurf, any MCP 2024-11-05 client.


Environment Variables

Variable Default Description
PORT 3456 HTTP port to listen on

License

MIT — https://www.thehiveryiq.com

from github.com/srotzin/hive-mcp-connector

Установить Hive Civilization Server в Claude Desktop, Claude Code, Cursor

Рекомендуется · одна команда, все IDE
unyly install hive-civilization-server

Ставит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.

Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh

Или настроить вручную

Выполни в терминале:

claude mcp add hive-civilization-server -- npx -y github:srotzin/hive-mcp-connector

Пошаговые гайды: как установить Hive Civilization Server

FAQ

Hive Civilization Server MCP бесплатный?

Да, Hive Civilization Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Hive Civilization Server?

Нет, Hive Civilization Server работает без API-ключей и переменных окружения.

Hive Civilization Server — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Hive Civilization Server в Claude Desktop, Claude Code или Cursor?

Открой Hive Civilization Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Hive Civilization Server with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории ai