The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Hive Consult listing page.
Agent-to-agent reasoning-as-a-service. Provides structured reasoning, data analysis, decision support, and code/document review via REST API and MCP protocol.
| Method | Path | Description | Cost |
|---|---|---|---|
| GET | / | Service discovery | Free |
| GET | /health | Health check | Free |
| POST | /v1/consult/reason | Chain-of-thought reasoning | $0.01–$0.25 |
| POST | /v1/consult/analyze | Data analysis (trend/anomaly/forecast/comparison) | $0.05 |
| POST | /v1/consult/decide | Decision support with weighted criteria | $0.05 |
| POST | /v1/consult/review | Code/contract/document/strategy review | $0.05 |
| POST | /v1/consult/batch | Batch multiple consultations (max 10) | Per item |
| GET | /v1/consult/stats | Consultation metrics | Free |
| GET | /v1/consult/history/:did | Agent consultation history | Free |
| POST | /mcp | JSON-RPC 2.0 MCP endpoint | Per tool |
| GET | /.well-known/ai-plugin.json | AI plugin discovery | Free |
Internal (platform-to-platform):
Bypasses payment for inter-service calls.
External (agent-to-agent):
Uses x402 micropayment protocol. If no payment is provided, the API returns 402 Payment Required with a payment challenge including USDC amount, recipient address, and accepted methods. Include payment proof in the X-Payment header.
| Depth | Cost | Steps | Description |
|---|---|---|---|
quick | $0.01 | 3 | Fast heuristic analysis |
standard | $0.05 | 6 | Balanced reasoning with evidence weighing |
deep | $0.25 | 12 | Exhaustive multi-perspective analysis |
HiveConsult exposes an MCP-compatible JSON-RPC 2.0 endpoint at /mcp.
hiveconsult_reason — Structured reasoning with configurable depthhiveconsult_analyze — Data analysis (trend, anomaly, forecast, comparison)hiveconsult_decide — Multi-criteria decision supporthiveconsult_review — Code/contract/document/strategy reviewThe server starts on port 3000 (configurable via PORT env var).
MIT