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/mcp-box/mcpscore/agents-mdgit clone --depth 1 https://github.com/mcp-box/mcpscoreWhat 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.01268 | $0.01268 |
| Opus 5 | $0.00634 | $0.00634 |
| Sonnet 5 | $0.00254 | $0.00254 |
| Haiku 4.5 | $0.00127 | $0.00127 |
Grade A, and why
mcpscore 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 3d 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 — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent instructions for mcpscore
- Run
make allbefore handing off — it mirrors CI (lint, typecheck, tests + coverage). The gate isuv run pyright mcpscore/anduv run ruff check— inline IDE diagnostics may differ; the commands are authoritative. rule_idis a stable public contract: never rename or reuse one. New rules must cite the MCP spec section (or SEP) they enforce in their resultdetails.- Rule lifecycle — three states, and the choice between them matters:
- Active — runs everywhere.
- Version-scoped — set
min_spec_version/max_spec_versionwhen a rule is correct but only for some revisions. Use this for anything the spec removed or deprecated: the rule keeps its ID and still judges servers on the revisions where the requirement held. Obsolescence is scoping, not deletion. - Retired — delete the rule only when it was wrong (it asserted something
the spec does not require, or contradicted another rule), and add an entry to
mcpscore/rules/retired.py. That registry generates the "Retired rules" table indocs/rules.mdx, so an old report or a stale CI waiver stays explainable. A retired ID is never reused — a test enforces it.
- Readiness rules (
group_name = "readiness") score on the readiness axis; since the 1.1.0 promotion they ALSO count in the main score, but only for modern-lifecycle servers (era modern/dual-era) in full audits — never for legacy servers, never in partial audits (readiness_promotedin mcp_auditor.py is the single switch). Rules that cannot judge anything return a skip reason — they never fail a server for missing observations. - Probes must never invoke
tools/callagainst a target server — audits must be free of tool side effects. Probes never raise; network failures areProbeOutcome.ERRORdata. docs/rules.mdxis generated — editscripts/generate_rules_doc.pyand runmake docs-rules, never the file itself. CI fails on drift.- Docs are MDX served by Mintlify from
docs/— pages need frontmatter; validate withmake docs-check. - For each new feature: update the docs and add a CHANGELOG entry (Keep a Changelog format). Docstrings: imperative first line, ≤120-char lines.
- Do not commit to
main; work on a branch. Do not add strategy or planning documents to this repository — it is public. docs-liveis a deploy pointer, never a working branch — and never delete it (normain; both are deletion-protected by repository rulesets since 2026-08-27). Mintlify serves docs.mcpscore.dev fromdocs-live;publish-docs.ymlforce-pushes it to each stable release tag. Deleting it takes the docs site down; committing to it gets overwritten at the next release. Docs changes go throughmainlike everything else and reach the site at the next release.
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.
- 3d ago First seen · 71 lines · 1,268 tokens per session scan A 0615f9d85010
mcpscore AGENTS.md is an instructions file published in the GitHub repository mcp-box/mcpscore (29 stars, last pushed 3d ago), licensed MIT. It adds 1,268 tokens to every session, about $0.0063 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
vector_mcp AGENTS.md
AGENTS.md instructions for sergiobayona/vector_mcp, covering agents.md, project overview, essential commands, development setup and testing and quality.
Genesis-World-MCP AGENTS.md
AGENTS.md instructions for Gnidreve/Genesis-World-MCP, covering agents.md — cas genesisworld mcp, what this is, standing orders — read first, design pillars and source layout & conventions.
pixabay-mcp-server CLAUDE.md
Claude Code instructions for hanoak/pixabay-mcp-server, covering claude.md, project overview, tech stack (decided — do not relitigate without discussion), architecture & folder conventions and coding standards.
youtube-studio-mcp AGENTS.md
AGENTS.md instructions for hygef-v4/youtube-studio-mcp: When the user requests software development, software architecture, new features, or modifications, ALWAYS read and follow CLAUDE.md to execute the AI-DLC workflow.
atelier-mcp copilot-instructions.md
Copilot instructions for anshrajore/atelier-mcp, covering run npm run sync-adapters to update, universal ui/ux rules, universal backend architecture rules and framework presets (available in skills/atelier/presets/).
xc-mcp CLAUDE.md
Claude Code instructions for conorluddy/xc-mcp, covering claude.md, project overview, architecture (v4.0.0), v4.0 migration guide (breaking) and development commands.