A discovery hub for the 22-server Hive Civilization ecosystem, bundling five MCP servers in-process for legacy compatibility: an ERC-8183 evaluator service, cross-border SMB invoice settlement on USDC/USDT, a DePIN provider marketplace, a cross-pool compute auction grid, and polymorphic identity telemetry. The gateway exposes a registry at `/.well-known/mcp.json` and mounts each server at dedicated paths like `/evaluator/mcp` and `/trade/mcp`. Direct shim URLs are recommended for production use. Each transaction can be receipted with ML-DSA-65 post-quantum signatures and settled in USDC on Base. Calls are priced per-operation and require x402 payment flow with no API keys or human approval.
Hive Civilization MCP registry — discovery surface for the 22 hive-mcp-* servers.
The gateway hosts a registry at /.well-known/mcp.json and continues to mount 5 MCP servers in-process for legacy compatibility. Direct shim URLs are recommended for Glama / Smithery probes; the gateway is for discovery, not as a hot-path proxy.
| Path | Repo | Description |
|---|---|---|
/evaluator/mcp | hive-mcp-evaluator | ERC-8183 / Virtuals ACP v2.0 evaluator-as-a-service |
/trade/mcp | hive-mcp-trade | Cross-border SMB invoice settlement on USDC/USDT |
/depin/mcp | hive-mcp-depin | DePIN provider marketplace |
/compute-grid/mcp | hive-mcp-compute-grid | Cross-pool compute auction grid |
/morph/mcp | hive-mcp-morph | Polymorphic-identity & brood telemetry |
Each path also exposes /<feature>/health and /<feature>/.well-known/mcp.json.
Top-level: / (server index) and /health.
The gateway is a discovery surface. Direct URLs are recommended for Glama / Smithery probes.
Each shim exposes /mcp (JSON-RPC) and /.well-known/mcp.json (discovery).
npm install
node gateway.js
# Then:
curl http://localhost:3000/
curl http://localhost:3000/.well-known/mcp.json
curl http://localhost:3000/evaluator/health
curl -X POST http://localhost:3000/morph/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Render: see render.yaml. Docker: see Dockerfile.
MIT. Hive Civilization gold #C08D23 (Pantone 1245 C).
Part of the Hive Civilization — agent-native financial infrastructure.
Brand: #C08D23
This MCP server is part of the Hive Civilization ecosystem — post-quantum-ready receipt infrastructure for agent-to-agent (A2A) commerce.
Each transaction can be receipted with post-quantum receipts using ML-DSA-65 (NIST FIPS 204) dual signatures and ML-KEM-768 (NIST FIPS 203) key encapsulation. Receipts are anchored by Swarm-MAPET 16-axis Byzantine consensus and settled in USDC on Base 8453.
Pricing: per-call profiles from Nano $0.0001 to Swarm $0.0096. See pricing.
Learn more:
This MCP server is fully agent-callable — no accounts, no API keys, no human approval required.
| Property | Value |
|---|---|
| Discovery URL | https://hivemorph.onrender.com/.well-known/agent-card.json |
| MCP endpoint | https://hive-mcp-gateway.onrender.com/mcp (JSON-RPC 2.0 / MCP 2024-11-05) |
| x402 pricing | https://hivemorph.onrender.com/v1/x402/pricing |
| Payment | USDC on Base 8453 via x402 |
| Treasury | 0x15184Bf50B3d3F52b60434f8942b7D52F2eB436E |
| DID | did:hivemorph:w2loren:0x6b11b1bcaf253c |
| Hive site | thehiveryiq.com |
# 1. Get x402 quote (free)
curl -X POST https://hivemorph.onrender.com/v1/x402/quote \
-H 'Content-Type: application/json' \
-d '{"agent_did":"did:example:agent","profile":"standard"}'
# 2. Settle USDC on Base 8453 (ERC-681 URI in quote response)
# 3. Call with access token
curl -X POST https://hive-mcp-gateway.onrender.com/mcp \
-H 'Content-Type: application/json' \
-H 'X-Hive-Access: <token_from_step_1>' \
-d '{"jsonrpc":"2.0","method":"tools/list","params":{},"id":1}'