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/bug-ops/mcpls/mcp-toolsgit clone --depth 1 https://github.com/bug-ops/mcplsWhat 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.00357 | $0.00357 |
| Opus 5 | $0.00179 | $0.00179 |
| Sonnet 5 | $0.00071 | $0.00071 |
| Haiku 4.5 | $0.00036 | $0.00036 |
Grade A, and why
mcpls mcp-tools.instructions.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.
What it actually says
Type safety
Tool parameter structs must use domain types, not raw primitives, for values with
protocol-specific conventions. Position fields (line, column) must be documented as
1-based in both the /// doc comment and the #[schemars(description)] — the MCP↔LSP
coordinate conversion happens in the bridge layer, not here.
Path parameters must accept absolute paths. State this in the schema description; AI clients use it to form requests correctly.
New tool structs require #[derive(JsonSchema)]. Omitting it silently removes the tool
from the schema exposed to clients — they cannot discover or invoke it.
Error handling
Tool handlers must return structured MCP error responses on failure, never panic.
unwrap() and expect() in handler code kill the entire server process and drop all
active client sessions. Use ? with proper error mapping instead.
All error variants must carry enough context for the caller to understand what went
wrong. A bare "internal error" string is not actionable. Include the file path,
method name, or other relevant detail.
Idiomatic dispatch
When adding a new tool, register it in both the capability advertisement (tool list) and the dispatch match arm. A tool missing from the list is undiscoverable; a tool missing from dispatch panics at runtime. A compile-time check (e.g. a const assertion or a test that calls every listed tool name through dispatch) is preferable to relying on manual review.
Prefer exhaustive match arms over wildcard catch-alls in dispatch. A wildcard silently swallows unhandled tool names; exhaustive matching makes unregistered names a compile error.
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 · 39 lines · 357 tokens per session scan A 03ee734460ca
mcpls mcp-tools.instructions.md is an instructions file published in the GitHub repository bug-ops/mcpls (66 stars, last pushed 4d ago), licensed Apache-2.0. It adds 357 tokens to every session, about $0.0018 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
octocode AGENTS.md
AGENTS.md instructions for bgauryy/octocode, covering agents.md — octocode monorepo, dogfood, architecture, packages and tools.
octocode CLAUDE.md
Claude Code instructions for bgauryy/octocode: Read AGENTS.md. Discover repository skills under .agents/skills and activate only those matching the task.
leantoken AGENTS.md
Instructions for morluto/leantoken, covering repository guidance, architecture, development, change-specific validation and contributions.
rangeLink CLAUDE.md
Instructions for couimet/rangeLink: Project-specific instructions for Claude Code RangeLink - Code location link generator for VSCode/Cursor 2.0 - XML-structured format.
reposkein AGENTS.md
Instructions for reposkein/reposkein, covering reposkein knowledge base, hard invariants (ci-enforced — never break), structure, where to look and conventions (this repo only).
ScalaSemantic AGENTS.md
Instructions for MercurieVV/ScalaSemantic, covering agents.md instructions and quick start.