hive-mcp

hive-mcp is a skill for Claude Code, Codex from intertwine/hive-orchestrator. It costs 42 tokens per session (558 once invoked), scanned A, original, MIT.

A guide to Hive’s small MCP interface for searching workspace information and running limited local Python code. MCP is a way for an AI agent to call tools provided by another service.

In plain words
What is it for?
Configuring Hive MCP access, searching project and workspace records, looking up API documentation or examples, and executing bounded Python operations through Hive.
Why use it?
It explains how to connect an agent to Hive without exposing the entire command-line interface. It also clarifies which operations belong in the MCP tools and which still belong in Hive’s CLI and stored workspace files.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Configuring Hive MCP access, searching project and workspace records, looking up API documentation or examples, and executing bounded Python operations through Hive.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/intertwine/hive-orchestrator/hive-mcp
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add intertwine/hive-orchestrator --skill hive-mcp
Clone the repo
git clone --depth 1 https://github.com/intertwine/hive-orchestrator

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hive-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/intertwine/hive-orchestrator/hive-mcp/github.svg)](https://agentmods.dev/skills/intertwine/hive-orchestrator/hive-mcp)
Your own site
<a href="https://agentmods.dev/skills/intertwine/hive-orchestrator/hive-mcp"><img src="https://agentmods.dev/badge/skills/intertwine/hive-orchestrator/hive-mcp/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hive-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/intertwine/hive-orchestrator/hive-mcp"><img src="https://agentmods.dev/badge/skills/intertwine/hive-orchestrator/hive-mcp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 558 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.00558
Opus 5 $0.00021 $0.00279
Sonnet 5 $0.00008 $0.00112
Haiku 4.5 $0.00004 $0.00056

Measured 10d ago against content hash 700b31f2bfab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

hive-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/hive-mcp/SKILL.md · 105 lines

How it starts

The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Hive MCP Server

The MCP surface is intentionally small — two tools for agent integration:

  • search — query workspace state
  • execute — run bounded Python code

Everything durable still goes through the hive CLI and the .hive/ substrate.

Setup

Example MCP config:

{
  "mcpServers": {
    "hive": {
      "command": "hive-mcp",
      "env": {
        "HIVE_BASE_PATH": "/path/to/workspace"
      }
    }
  }
}

HIVE_BASE_PATH should point at the workspace you want the server to search and execute against.

If running from a local checkout instead of an installed package, uv run hive-mcp is the equivalent launch command.

Available Tools

search

Search workspace state, API docs, examples, schemas, and project summaries.

Arguments:

  • query required
  • scopes optional — filter to specific indexes (api, examples, project, workspace)
  • limit optional, defaults to 8

Example:

{
  "name": "search",
  "arguments": {
    "query": "run acceptance",
    "scopes": ["api", "workspace"],
    "limit": 5
  }
}

execute

Run bounded local code with a typed Hive client.

Arguments:

  • code required
  • language optional, Python only for now
  • profile optional
  • timeout_seconds optional

Example:

{
  "name": "execute",
  "arguments": {
    "language": "python",
    "profile": "default",
    "code": "result = hive.task.ready(limit=3)"
  }
}

Important Limits

  • execute is intentionally bounded and time-limited
  • Oversized execute payloads are rejected
  • The Python runner is the only supported language today
  • This MCP surface is not a substitute for the CLI

When To Prefer The CLI

Use the CLI for:

  • Task creation, updates, claims, and releases
  • Run lifecycle actions (start, finish, promote, steer)
  • Evaluator configuration and PROGRAM.md management
  • Projection sync and cache management
  • Campaign and portfolio operations
  • Memory observe, reflect, and search
  • Migration and workspace bootstrap

Read the full file on GitHub · 105 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 105 lines · 42 tokens per session scan A 700b31f2bfab

Subscribe to this mod's changes

hive-mcp is a skill published in the GitHub repository intertwine/hive-orchestrator (23 stars, last pushed 3d ago), licensed MIT. It adds 42 tokens to every session and 558 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.