central-mcp

central-mcp is a skill for Claude Code, Codex from andy5090/central-mcp. It costs 28 tokens per session (1,588 once invoked), scanned A, original, MIT.

A project-portfolio coordinator for coding agents working across multiple registered projects. It can send work to a project's agent, check progress, stop a run, and report results.

In plain words
What is it for?
Use it to list projects, assign prompts to their coding agents, poll or cancel running jobs, and produce reports across projects.
Why use it?
It removes the need to manage each agent and project separately or track background runs by hand. It also keeps dispatch history, token use, quotas, and results together.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: mentions Codex; built for openclaw; mentions OpenCode.

Good fit Use it to list projects, assign prompts to their coding agents, poll or cancel running jobs, and produce reports across projects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andy5090/central-mcp/agentos
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 andy5090/central-mcp --skill agentos
Clone the repo
git clone --depth 1 https://github.com/andy5090/central-mcp

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 central-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/andy5090/central-mcp/agentos/github.svg)](https://agentmods.dev/skills/andy5090/central-mcp/agentos)
Your own site
<a href="https://agentmods.dev/skills/andy5090/central-mcp/agentos"><img src="https://agentmods.dev/badge/skills/andy5090/central-mcp/agentos/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 central-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/andy5090/central-mcp/agentos"><img src="https://agentmods.dev/badge/skills/andy5090/central-mcp/agentos.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,588 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.
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.00028 $0.01588
Opus 5 $0.00014 $0.00794
Sonnet 5 $0.00006 $0.00318
Haiku 4.5 $0.00003 $0.00159

Measured yesterday against content hash 62744cd4ae33, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

central-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 yesterday.

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.

src/central_mcp/data/agentos-skill.md · 89 lines

How it starts

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

central-mcp — agentOS Orchestration Guide

central-mcp is the portfolio PM for someone running many agent-driven projects at once. Each registered project is bound to a coding-agent CLI (claude / codex / gemini / opencode / droid / hermes / openclaw / gjc). If cmcp install <you> has been run, its MCP tools are registered as the central server and you can call them natively.

Prefer these tools over raw shell commands whenever the work targets a registered project: dispatches get logging, history, token accounting, quota-aware fallback, and observation surfaces for free. Use your shell for ad-hoc work outside the registry.

Core loop

  1. list_projects — see the portfolio (name, agent, path, tags). Pass workspace="__all__" for every workspace.
  2. dispatch(name, prompt) — run the project's agent non-interactively in its cwd. Non-blocking: returns a dispatch_id in <100 ms while the agent works in the background.
  3. check_dispatch(dispatch_id) — poll. {status: "running", elapsed_sec} while alive; the full result (output, tokens, duration_sec) once finished.
  4. cancel_dispatch(dispatch_id) — abort a runaway dispatch.
dispatch(name="my-app", prompt="Run the test suite and fix any failures")
→ {dispatch_id: "a1b2c3d4"}
check_dispatch(dispatch_id="a1b2c3d4")
→ {status: "running", elapsed_sec: 42.0}   # later: full result

Coding dispatches routinely take 1–15 minutes. Do not busy-wait: check once ~every 3 s only if the user is waiting on the answer; otherwise report the dispatch_id, move on, and re-check on your next turn, heartbeat, or cron tick. Every central-mcp tool response also piggybacks completions that finished since your last call, so any later tool use surfaces finished work automatically.

Fan-out

dispatch(name="@workspace-name", prompt=...) sends one prompt to every project in that workspace at once and returns one dispatch_id per project. Good for portfolio-wide chores ("update CI config", "audit dependencies").

Read the full file on GitHub · 89 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. yesterday First seen · 89 lines · 28 tokens per session scan A 62744cd4ae33

Subscribe to this mod's changes

central-mcp is a skill published in the GitHub repository andy5090/central-mcp (5 stars, last pushed yesterday), licensed MIT. It adds 28 tokens to every session and 1,588 once invoked, about $0.0001 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-09-08.

Related

Other skills, from other repositories

dispatch

Use when a task file exists in .hyperflow/tasks/ and workers need dispatching. Fans out parallel workers under per-batch Reviewers, runs a final integration review, and commits per sub-task. Endpoint of the auto-chain — no auto-deploy. Trigger with /hyperflow:dispatch, "run the plan", "execute the task", "build it"…

jeremylongshore/tons-of-skills-marketplace · 81 tokens

atmos-migration

This skill helps you migrate a repository to Atmos. It covers native Terraform, Terraform Workspaces, Terramate, Terragrunt, Makefiles, Justfiles, and Taskfiles. It gives minimum-disruption paths, file-layout options, workspace mapping, task-to-command mapping, generatehcl/script decomposition, and the remote-state…

cloudposse/atmos · 96 tokens

atmos-modernization

Atmos Modernization: migrate deprecated or legacy Atmos patterns to current names, Native CI, Atmos Pro drift detection, dependencies.components, nametemplate, and declared secrets.

cloudposse/atmos · 36 tokens

atmos-init

Bootstrapping new Atmos projects with atmos init: built-in template catalog, differences from atmos scaffold generate, project record, and update-safe 3-way merge.

cloudposse/atmos · 35 tokens

atmos-workflows

Workflow automation: native step types, multi-step workflows, parallel/matrix/wait/container/emulator steps, when: conditions (CEL), require/assert preconditions, output steps, retries, dependencies, and cross-component orchestration.

cloudposse/atmos · 49 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens