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.
npx agentmods add skills/bigsy/mcpmu/skill_datanpx skills add Bigsy/mcpmu --skill skill_datagit clone --depth 1 https://github.com/Bigsy/mcpmuWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00064 | $0.04205 |
| Opus 5 | $0.00032 | $0.02103 |
| Sonnet 5 | $0.00013 | $0.00841 |
| Haiku 4.5 | $0.00006 | $0.00421 |
Grade A, and why
mcpmu scanned grade A with 1 finding 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
allowed-tools: Bash(mcpmu *), Bash(brew *), Bash(go install *), Bash(claude mcp *), Bash(codex mcp *), Bash(which mcpmu), Bash(command -v mcpmu), Bash(curl http://127.0.0.1:*), Bash(curl http://localhost:*) How it starts
The opening of the file, as written. The whole thing — 477 lines — stays where its author put it; the contents beside it link to each section on GitHub.
mcpmu — MCP Server Manager
mcpmu is a multiplexing MCP server manager. You configure MCP servers once in mcpmu, then expose them as a single unified MCP endpoint to any agent (Claude Code, Codex, Cursor, Windsurf, etc.).
Installing mcpmu
First check if mcpmu is already installed:
which mcpmu
If not installed, install via Homebrew (preferred) or Go:
Homebrew (macOS/Linux):
brew tap Bigsy/tap && brew install mcpmu
From source (requires Go):
go install github.com/Bigsy/mcpmu/cmd/mcpmu@latest
Registering mcpmu as an MCP Server
After installing mcpmu, register it so your agent can use all mcpmu-managed servers through a single endpoint.
Claude Code:
claude mcp add mcpmu -- mcpmu serve --stdio
Codex:
codex mcp add mcpmu -- mcpmu serve --stdio
OpenCode (global config ~/.config/opencode/config.json, or project-level opencode.json):
{
"mcp": {
"mcpmu": {
"type": "local",
"command": ["mcpmu", "serve", "--stdio"]
}
}
}
Any MCP config JSON (Cursor, Windsurf, etc.):
{
"mcpmu": {
"command": "mcpmu",
"args": ["serve", "--stdio"]
}
}
With a specific namespace:
claude mcp add work -- mcpmu serve --stdio --namespace work
codex mcp add work -- mcpmu serve --stdio --namespace work
OpenCode (namespace-specific):
{
"mcp": {
"work": {
"type": "local",
"command": ["mcpmu", "serve", "--stdio", "--namespace", "work"]
}
}
}
With management tools (lets the agent add/remove servers via MCP):
claude mcp add mcpmu -- mcpmu serve --stdio --expose-manager-tools
With a compressed tool surface (saves context on large namespaces):
claude mcp add mcpmu -- mcpmu serve --stdio --compress medium
With --compress, tools/list returns only three wrapper tools —
list_tools, get_tool_schema, and invoke_tool — with a compact
one-line-per-tool listing embedded in invoke_tool's description. The agent
fetches full schemas on demand and calls tools through invoke_tool, so it
only pays context for the schemas it actually uses. Levels: low (full
descriptions), medium (first sentence — recommended), high (argument names
only), max (tool names only). Works with --http too. mcpmu tool
permissions still apply to the real target tool; note that client-side
per-tool rules only ever see invoke_tool, so prefer mcpmu permissions when
compression is on.
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.
- 2d ago First seen · 477 lines · 64 tokens per session scan A c3a9e147b871
mcpmu is a skill published in the GitHub repository Bigsy/mcpmu (15 stars, last pushed 5d ago), licensed MIT. It adds 64 tokens to every session and 4,205 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
promptscript
PromptScript language expert for reading, writing, modifying, and troubleshooting .prs files. Use when working with PromptScript syntax, creating or editing .prs files, adding blocks like @identity, @standards, @restrictions, @shortcuts, @skills, or @agents, configuring promptscript.yaml, resolving compilation errors…
skill-push
Create and push reusable skills to SkillNote from Codex when repeated instructions are detected or the user says "create a skill", "save this pattern", "push a skill". Guides drafting, review, collection selection, and publishing.
skillnote-doctor
A diagnostic tool for OpenClaw agents -- checks skill registry connectivity, AGENTS.md setup, config file validity, and installed skill health. Use when your setup seems broken, skills aren't loading, or you want to audit your agent's configuration.
collection
Choose which SkillNote skill collection is active for this Codex project. Use when the user says "change collection", "switch skills", "use frontend skills", or "show collections".
assistant
Assistant — on any repo, scan README→docs→AGENTS→CONTRIBUTING→PR templates→task runners→devcontainer→CI→configs before code; cite sources; prefer AGENTS.md for agent behavior; portable across Cursor/Copilot/Claude; use agent-toolkit CLI when needed.
cli-for-agents
Designs or reviews CLIs so coding agents can run them reliably: non-interactive flags, layered --help with examples, stdin/pipelines, fast actionable errors, idempotency, dry-run, and predictable structure. Use when building a CLI, adding commands, writing --help, or when the user mentions agents, terminals, or…