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 instructions/basementstudio/xmcp/agents-mdgit clone --depth 1 https://github.com/basementstudio/xmcpWhat 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.00487 | $0.00487 |
| Opus 5 | $0.00244 | $0.00244 |
| Sonnet 5 | $0.00097 | $0.00097 |
| Haiku 4.5 | $0.00049 | $0.00049 |
Grade A, and why
xmcp AGENTS.md 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 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.
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 — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent guidance - xmcp
This file is the root instruction set for coding agents and contributors. Read
the scoped AGENTS.md file for any area you touch:
packages/AGENTS.mdfor framework, CLI, scaffolder, and plugin packages.examples/AGENTS.mdfor examples.apps/website/AGENTS.mdfor the docs site and website.
Repo basics
- Use Node 22 and pnpm.
- All changes target
main. There is nocanarybranch; canary npm releases are cut frommainas Changesets snapshot releases. - Keep PRs focused. If related work appears while editing, leave it for a follow-up unless it is required for the current fix.
- User-facing feature or behavior changes need docs and a runnable example. If an example is not appropriate, explain why in the PR.
- Prefer existing patterns and helper APIs over new abstractions.
- Do not add dependencies unless the repo already has no reasonable primitive for the job.
Review standards
Apply these before handing work back:
- Use repo formatting and linting, not editor defaults.
- Keep logs minimal. Do not add process narration or debug logs.
- Do not add fixed
setTimeoutorsetIntervalnumbers unless the delay is a named constant with a clear reason. Prefer signal-based flow. - Avoid broad rewrites, especially in compiler, loader, runtime, and scaffold paths.
- Preserve transport semantics. Do not turn stateless HTTP flows into stateful session-based flows, or stateful flows into stateless ones, unless the task explicitly requires that transport contract change.
- Stateless HTTP must not depend on server-side memory from previous requests.
Any client metadata needed by tools after
initializemust be repeated in the current request, not recovered from a hidden session/cache. - Do not force users to wrap every tool, resource, or prompt for a framework feature.
- Keep config fields optional when values can be inferred safely.
- Delete stale examples instead of patching deprecated patterns.
- Explain non-obvious choices in code or PR notes: new hooks, wrappers, required fields, timers, plugin registration, and foundational rewrites.
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 · 47 lines · 487 tokens per session scan A 6831a23e6044
xmcp AGENTS.md is an instructions file published in the GitHub repository basementstudio/xmcp (1,324 stars, last pushed 3d ago), licensed MIT. It adds 487 tokens to every session, about $0.0024 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.
Other instructions, from other repositories
ida-pro-mcp CLAUDE.md
Instructions for mrexodia/ida-pro-mcp, covering claude.md, what this project is, core implementation rules, ida thread safety and api conventions.
jesse AGENTS.md
Instructions for jesse-ai/jesse, covering jesse repository guide for ai agents, skills, key characteristics, central framework and technology stack.
laravel AGENTS.md
AGENTS.md instructions for laravel/laravel, covering laravel application, prerequisites and agent setup.
tableau-mcp CLAUDE.md
Instructions for tableau/tableau-mcp, covering claude.md, build & development commands, building, running the server and testing.
AgentEval copilot-instructions.md
Instructions for AgentEvalHQ/AgentEval, covering agenteval - ai coding agent instructions, architecture overview, environment setup, optional: secondary models for comparison and build & test commands.
LarAgent AGENTS.md
Instructions for MaestroError/LarAgent, covering purpose, key principles, planning, executing plan and testing.