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 commands/px0-ai/px0/mcpgit clone --depth 1 https://github.com/px0-ai/px0Wrote 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.
[](https://agentmods.dev/commands/px0-ai/px0/mcp)<a href="https://agentmods.dev/commands/px0-ai/px0/mcp"><img src="https://agentmods.dev/badge/commands/px0-ai/px0/mcp.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00899 |
| Opus 5 | $0.00000 | $0.00449 |
| Sonnet 5 | $0.00000 | $0.00180 |
| Haiku 4.5 | $0.00000 | $0.00090 |
Grade A, and why
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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.
px0 mcp
Expose the brain and the workflow list over the Model Context Protocol, so a coding agent can use them without being told how the CLI works.
px0 already holds two things an agent wants: a brain that can answer questions from what you have read, and a set of workflows that can be run. A CLI can be shelled out to; MCP means the agent can discover what is there and what each thing takes.
Implemented by px0/mcp.py. No MCP SDK is involved — the surface needed is
initialize, tools/list, and tools/call over stdio.
px0 mcp serve [--allow-runs]
px0 mcp serve
Speak MCP on stdin and stdout, one JSON-RPC message per line, until stdin closes.
--allow-runs
Let a client run workflows.
- Input: flag, no value. Default off.
- Off by default because a workflow can post, send, and file things. Without it
workflow_runis not even listed, and calling it returns an error saying how to enable it.
px0 mcp serve
px0 mcp serve --allow-runs
What it exposes
| Tool | What it does | Needs --allow-runs |
|---|---|---|
brain_ask |
Answer a question from the brain, citing the files used | no |
brain_search |
Return matching passages, without a model call | no |
workflows_list |
Every workflow, with its schedule and whether it is disabled | no |
guidelines_list |
Every guideline file, with what each one covers | no |
guideline_read |
One guideline verbatim, to follow it | no |
workflow_run |
Run a workflow, optionally as a dry run | yes |
brain_ask and brain_search take an optional kind (blog, paper, doc,
video, stub) and k. Nothing under the brain's private folder is ever
returned.
Registering it with a client
Claude Code, and most MCP clients, take a command and its arguments:
{
"mcpServers": {
"px0": {
"command": "px0",
"args": ["mcp", "serve"],
"env": { "PX0_HOME": "/Users/you/.px0" }
}
}
}
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.
- 5d ago First seen · 108 lines · 0 tokens per session scan A 5f467c7bdd7f
mcp is a command published in the GitHub repository px0-ai/px0 (241 stars, last pushed 8d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 899 tokens. 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.
Other commands, from other repositories
wiki-ingest
Ingest a source document into the LLM Wiki.
README
This folder gathers the project's 9 slash commands in a single place. Each command file specifies its traversal pattern (which Layer × Cycle cells it passes through, and in which cycle-stage flow) plus the Human Reviewer Gate. The nature of each role and the Layer × Cycle matrix have their SoT in…
wiki-discover
Discover unexpected connections in the LLM Wiki (Memex serendipity).
wiki-news
Search for latest news related to the LLM Wiki's key topics.
wiki-query
Query the LLM Wiki and synthesize an answer.
wiki-export
Export wiki to merged files for Claude.ai Project Knowledge.