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/wrale/mcp-server-tree-sitter/agents-mdgit clone --depth 1 https://github.com/wrale/mcp-server-tree-sitterWrote 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/instructions/wrale/mcp-server-tree-sitter/agents-md)<a href="https://agentmods.dev/instructions/wrale/mcp-server-tree-sitter/agents-md"><img src="https://agentmods.dev/badge/instructions/wrale/mcp-server-tree-sitter/agents-md.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.1 | $0.00823 | $0.00823 |
| Opus 5 | $0.00411 | $0.00411 |
| Sonnet 5 | $0.00165 | $0.00165 |
| Haiku 4.5 | $0.00082 | $0.00082 |
Grade A, and why
mcp-server-tree-sitter 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 6d 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 — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Instructions for AI coding agents working in this repository.
Project Overview
MCP Tree-sitter Server — a Model Context Protocol server providing code analysis via tree-sitter. Python 3.10+, packaged with hatchling, managed with uv.
Setup
uv venv --python 3.12
uv pip install -e ".[dev]"
Before Committing
All of these must pass — CI enforces them:
ruff check src/ # Lint (E, F, I, W, B rules)
ruff format --check src/ # Format check
mypy src/mcp_server_tree_sitter # Type check
pytest tests/ # 217+ tests, must all pass
Or use the Makefile: make prepare
Key Architecture
- Source:
src/mcp_server_tree_sitter/ - DI container:
di.py— constructs all dependencies; avoid circular imports with it - Config:
config.py—ConfigurationManagerauto-loads YAML fromMCP_TS_CONFIG_PATHor~/.config/tree-sitter/config.yaml. Precedence: env vars > YAML > defaults - Language registry:
language/registry.py— maps file extensions to tree-sitter-language-pack identifiers - Templates:
language/templates/— per-language query templates (one file per language) - Tools:
tools/— MCP tool implementations (analysis, search, ast_operations, file_operations) - Helpers:
utils/tree_sitter_helpers.py— includesquery_captures()compat wrapper for tree-sitter >= 0.24
tree-sitter API Compatibility
tree-sitter >= 0.24 removed Query.captures(). Always use the query_captures(query, node) wrapper from utils/tree_sitter_helpers.py instead of calling query.captures() directly. This applies to both source and test code.
Adding a New Language
- Create
language/templates/<lang>.pywith aTEMPLATESdict (follow existing patterns likego.py) - Register the file extension in
language/registry.py_language_map - Import and register in
language/templates/__init__.py - Add default symbol types in
tools/analysis.pyextract_symbols() - Verify the language identifier works:
from tree_sitter_language_pack import get_language; get_language("<id>")
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.
- 6d ago First seen · 72 lines · 823 tokens per session scan A 7f25271e860c
mcp-server-tree-sitter AGENTS.md is an instructions file published in the GitHub repository wrale/mcp-server-tree-sitter (309 stars, last pushed 3mo ago), licensed MIT. It adds 823 tokens to every session, about $0.0041 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
bear-notes-mcp CLAUDE.md
Claude Code instructions for vasylenko/bear-notes-mcp, covering project purpose, rules of absolute importance, core technical documentation for this project, source layout and additional technical context.
bear-notes-mcp copilot-instructions.md
Copilot instructions for vasylenko/bear-notes-mcp, covering when performing a code review for a pr, review objective, review guidelines and when working on a new feature or an idea.
bear-notes-mcp AGENTS.md
AGENTS.md instructions for vasylenko/bear-notes-mcp, a project described as: MCP Server for Bear note taking app available as Claude Desktop extension or standalone server for any other AI tool.
Usage4Claude CLAUDE.md
Claude Code instructions for f-is-h/Usage4Claude, covering usage4claude — project overview, build & test, architecture map, key conventions and known pitfalls.
ls-mcp AGENTS.md
AGENTS.md instructions for lirantal/ls-mcp, covering agents.md, start here, documentation, prs and issues and releases.
navegador CLAUDE.md
Instructions for ConflictHQ/navegador, covering navegador — claude context, what it is, stack, package layout and falkordb connection.