MCP Hub
Back to servers

BIGHUB

The execution governance layer for autonomous AI agents.

Registry
Updated
Mar 9, 2026

Quick Install

npx -y @bighub/bighub-mcp

BIGHUB

Control plane for AI agent actions.

Validate, bound, and govern every autonomous AI agent decision before it acts — making autonomy safe, intelligent, and ready for production.

BIGHUB sits between AI reasoning and real-world execution. Agents can plan and decide, but real-world actions execute only within your defined limits.

LLM / Agent Runtime
        ↓
Provider Adapter (e.g. bighub-openai)
        ↓
BIGHUB Control Plane API
        ↓
Rules + Approvals + Memory + Policy Intelligence
        ↓
execute / block / require approval

Packages

PackageLanguageInstallDescription
bighubPythonpip install bighubCore SDK — actions, rules, approvals, kill switch, webhooks, API keys, Future Memory.
bighub-openaiPythonpip install bighub-openaiOpenAI Responses API adapter — govern tool/function calls with BIGHUB policies.
@bighub/bighub-mcpTypeScriptnpm install @bighub/bighub-mcpMCP server — use BIGHUB governance from any Model Context Protocol client.
bighub-anthropicPythonAnthropic adapter — coming soon.
bighub-openai (JS)TypeScriptOpenAI adapter for Node.js — coming soon.

Why BIGHUB?

Without BIGHUBWith BIGHUB
Agent acts directly in productionEvery action validated before execution
Guardrails are suggestionsPolicies are enforced at runtime
Logging shows what happenedDecisions are blocked before they happen
Autonomy grows, exposure growsBounded autonomy, controlled risk

Quickstart (Python SDK)

pip install bighub
import os
from bighub import BighubClient

client = BighubClient(api_key=os.getenv("BIGHUB_API_KEY"))

result = client.actions.submit(
    action="update_price",
    value=150.0,
    domain="financial_actions",
    actor="AI_AGENT_001",
)

print(result["allowed"], result["risk_score"])
client.close()

Repository layout

├── sdk/
│   └── python/            ← pip install bighub
├── adapters/
│   ├── python/
│   │   ├── openai/        ← pip install bighub-openai
│   │   └── anthropic/     ← coming soon
│   └── js/
│       └── openai/        ← coming soon
├── servers/
│   └── mcp/               ← npm install @bighub/bighub-mcp
└── examples/
    ├── python/
    └── js/

Links

License

MIT

Reviews

No reviews yet

Sign in to write a review