Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.icohangar-ops/agent-conductor

NPM · @CUBICZAN/AGENT-CONDUCTOR · SCANNED AUG 23

AGENTS.md + skills MCP with CHP R0 gate and adversary decision tools.

70 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 30 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability84
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 562 tokens (~80/item across 7 items; 7 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

How do I install the io.github.icohangar-ops/agent-conductor MCP server?

io.github.icohangar-ops/agent-conductor runs locally as an npm package, launched with npx -y @cubiczan/agent-conductor. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

npm · @cubiczan/agent-conductor

# add to Claude Code
claude mcp add icohangar-ops-agent-conductor -- npx -y @cubiczan/agent-conductor
// .cursor/mcp.json
{
  "mcpServers": {
    "icohangar-ops-agent-conductor": {
      "command": "npx",
      "args": [
        "-y",
        "@cubiczan/agent-conductor"
      ]
    }
  }
}
// .vscode/mcp.json
{
  "servers": {
    "icohangar-ops-agent-conductor": {
      "command": "npx",
      "args": [
        "-y",
        "@cubiczan/agent-conductor"
      ]
    }
  }
}
# add to Codex CLI
codex mcp add icohangar-ops-agent-conductor -- npx -y @cubiczan/agent-conductor
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "icohangar-ops-agent-conductor": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@cubiczan/agent-conductor"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add icohangar-ops-agent-conductor --command npx --arg -y --arg @cubiczan/agent-conductor
# ~/.hermes/config.yaml
mcp_servers:
  icohangar-ops-agent-conductor:
    command: "npx"
    args: ["-y", "@cubiczan/agent-conductor"]
// ~/.netclaw/config/netclaw.json
{
  "McpServers": {
    "icohangar-ops-agent-conductor": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "@cubiczan/agent-conductor"
      ]
    }
  }
}
# add to Vellum
assistant mcp add icohangar-ops-agent-conductor -t stdio -c npx -a -y @cubiczan/agent-conductor
// mcp.json
{
  "mcpServers": {
    "icohangar-ops-agent-conductor": {
      "command": "npx",
      "args": [
        "-y",
        "@cubiczan/agent-conductor"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 23 Aug 26 +15
    • Malware scan: unverified → pass security
  • 22 Aug 26 55

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 23 Aug 2026 · Analysed npm/@cubiczan/agent-conductor@0.1.0

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 96 packages
Packages resolved 96
Stale 30
Tree resolution Complete
MCP tools · 7 exposed · ~562 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
contract_load ~75

Compile an AGENTS.md operating manual into a structured agent contract: mission, non-negotiable rules, layer responsibilities, verification gates, recommended skills, and out-of-scope list. Pass a file path or a project directory (defaults to the current working directory).

NameTypeReqDescription
pathstringAGENTS.md path or project root

No output schema declared.

No examples provided.

contract_verification ~60

Return the verification gates from a project's agent contract — the named checklists and shell commands that must pass before work is handed off. Run these and confirm success before declaring any task complete.

NameTypeReqDescription
pathstringAGENTS.md path or project root

No output schema declared.

No examples provided.

decision_adversary ~105

Run a one-shot Consensus Hardening Protocol adversarial pass against a claim or proposed change: CHP attacks its foundations, scores them 0-100, and returns findings plus a session status (EXPLORING / HALT / REFRAME_REQUIRED). Use before locking any high-stakes decision.

NameTypeReqDescription
claimstringyesThe claim or decision to attack
contextstringSupporting context for the claim
high_stakesbooleanDefault true

No output schema declared.

No examples provided.

decision_gate ~107

Run the Consensus Hardening Protocol R0 gate on a proposed decision: is it solvable, scoped, valid, and worth making at all? Any FATAL answer returns HALT — stop and reframe before doing the work.

NameTypeReqDescription
scopedbooleanyesIs the scope explicitly bounded?
solvablebooleanyesCan this problem actually be solved?
validbooleanyesIs the current state accurately understood?
worth_itbooleanyesDo the stakes justify the work?

No output schema declared.

No examples provided.

engine_status ~79

Health/readiness probe for the CHP decision engine (Python subprocess). By default returns a cheap readiness snapshot (running, last exit code, restart-backoff state) WITHOUT spawning Python. Pass probe=true to also issue a live ping that warms/spawns the subprocess.

NameTypeReqDescription
probebooleanIssue a live ping (spawns the subprocess). Default false.

No output schema declared.

No examples provided.

skill_load ~68

Load the full SKILL.md body for a named skill — the on-demand half of progressive disclosure. Call only when the current task matches the skill's description.

NameTypeReqDescription
namestringyesSkill name as returned by skills_list
projectRootstringProject root (defaults to cwd)

No output schema declared.

No examples provided.

skills_list ~68

Discover SKILL.md skills visible from a project root (project-scope .conductor/.claude/.cursor skill dirs, then personal ones). Returns metadata only (~100 tokens per skill); use skill_load for the full body.

NameTypeReqDescription
projectRootstringProject root (defaults to cwd)

No output schema declared.

No examples provided.

Common questions

What is the io.github.icohangar-ops/agent-conductor MCP server?

io.github.icohangar-ops/agent-conductor is an MCP server listed in the public MCP registry as io.github.icohangar-ops/agent-conductor. AGENTS.md + skills MCP with CHP R0 gate and adversary decision tools. This page covers its npm package (@cubiczan/agent-conductor).

Is the io.github.icohangar-ops/agent-conductor MCP server safe to use?

io.github.icohangar-ops/agent-conductor scores 70 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 23 August 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

What tools does the io.github.icohangar-ops/agent-conductor MCP server expose?

io.github.icohangar-ops/agent-conductor exposes 7 tools: contract_load, contract_verification, skills_list, skill_load, decision_gate, and 2 more. Their descriptions and schemas cost roughly 562 tokens of context every time the server is loaded.

Is the io.github.icohangar-ops/agent-conductor MCP server still maintained?

io.github.icohangar-ops/agent-conductor is still listed as active in the MCP registry. We last reached this channel on 23 August 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

What licence is the io.github.icohangar-ops/agent-conductor MCP server under?

io.github.icohangar-ops/agent-conductor declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.