Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-bighub-mcp": {
"args": [
"-y",
"@bighub/bighub-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
BIGHUB turns proposed IT agent actions into better decisions before they run. It builds a Decision Packet, runs DecisionBrain, and surfaces an execution outcome: proceed when appropriate (can_run), pause for human review, ask for more context, or advise not to run—with an optional better_action before execution only when BIGHUB actually produced one.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@bighub/bighub-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @bighub/bighub-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.bighub/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Better decisions for IT agent actions.
BIGHUB turns proposed IT agent actions into better decisions before they run. It builds a Decision Packet, runs DecisionBrain, and surfaces an execution outcome: proceed when appropriate (can_run), pause for human review, ask for more context, or advise not to run—with an optional better_action before execution only when BIGHUB actually produced one.
For each proposed IT action (access changes, deployments, rotations, IAM updates, incidents, integrations), BIGHUB:
better_action when the backend proposes a distinct alternative—not a cosmetic rephrase of the originalexecution_mode (and legacy signals) into clear flags: can_run, needs_review, needs_more_context, should_not_rundecision.request_review(), SDK/MCP approvals) and first-class system integrations for GitHub, Sentry, Datadog, AWS CloudTrail, Terraform, Kubernetes, Argo CD, GitLab, Jenkins, Azure, Prometheus, Grafana, and OpenShiftpip install bighub
from bighub import Bighub
bighub = Bighub(api_key="...")
decision = bighub.decide(
action="Grant temporary Okta admin access to users 1-9 for 48h",
context={
"system": "okta",
"environment": "production",
"ticket": "INC-8821",
},
)
if decision.needs_review:
decision.request_review()
elif decision.needs_more_context:
print("More context required:", decision.reason)
elif decision.should_not_run:
print("Do not run:", decision.reason)
elif decision.can_run:
action_to_run = decision.better_action or decision.proposed_action
# Plug in your executor (Okta Admin API, runbook, CI gate, …)
run(action_to_run)
bighub.close()
The recommended public flow:
proposed IT action → Decision Packet → DecisionBrain → (better_action when real) → execution_mode / flags → review or context when needed
Decision returnsHigh-level fields developers use most often:
| Field / idea | Meaning |
|---|---|
proposed_action | What your agent originally proposed |
better_action | Distinct backend alternative when present; None if no real alternative was produced (never trusted as “better” simply because it echoes the proposal) |
packet | Decision Packet: intent, system, constraints, candidates, risks, verification, etc., when returned |
brain | DecisionBrain: reasoning summary, confidence, regret, review hints, etc., when returned |
mode | SDK execution mode mapped from execution_mode and legacy payloads (for example review, needs_context, blocked) |
can_run, needs_review, needs_more_context, should_not_run | Operational guidance before you execute |
selected_model / model_selection | Routing when the backend actually selected a model or path—otherwise None / empty-ish structure (SDK does not invent routing) |
For full detail and /actions/evaluate field mapping, see sdk/python/README.md.
BIGHUB’s public SDK is centered on bighub.decide(...) and Decision Packet because the packet is the primitive that improves decision quality before execution.
On the April 2026 GPT-5.5 benchmark suite, BIGHUB improved average good decision rate from 41.11% to 73.14% across 21 cells, 2,520 labeled traces, and 5,040 LLM calls.
Same GPT-5.5 model, same frozen traces, same benchmark rubric. The baseline and packet arms differ only by whether the BIGHUB Decision Packet is included in the model input.
| View | Baseline GPT-5.5 | With BIGHUB | Uplift |
|---|---|---|---|
| IT |