mcp-server-tree-sitter AGENTS.md

mcp-server-tree-sitter AGENTS.md is an instructions file for Codex, OpenCode from wrale/mcp-server-tree-sitter. It costs 823 tokens per session, scanned A, original, MIT.

Repository instructions for an MCP Tree-sitter Server, a Python service that analyses source code using Tree-sitter and connects to AI assistants through MCP.

In plain words
What is it for?
Use them when setting up the server, modifying its Python code, understanding its language and tool structure, or checking changes before committing.
Why use it?
They collect setup, architecture, configuration, and pre-commit checks in one place, reducing mistakes when changing the project.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions AGENTS.md.

Install

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.

agentmods
npx agentmods add instructions/wrale/mcp-server-tree-sitter/agents-md
Clone the repo
git clone --depth 1 https://github.com/wrale/mcp-server-tree-sitter

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for mcp-server-tree-sitter AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/wrale/mcp-server-tree-sitter/agents-md.svg)](https://agentmods.dev/instructions/wrale/mcp-server-tree-sitter/agents-md)
Your own site
<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>
Per session 823 This file is loaded in full into every session.
When invoked 823 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash 7f25271e860c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

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.

AGENTS.md · 72 lines

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.pyConfigurationManager auto-loads YAML from MCP_TS_CONFIG_PATH or ~/.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 — includes query_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

  1. Create language/templates/<lang>.py with a TEMPLATES dict (follow existing patterns like go.py)
  2. Register the file extension in language/registry.py _language_map
  3. Import and register in language/templates/__init__.py
  4. Add default symbol types in tools/analysis.py extract_symbols()
  5. Verify the language identifier works: from tree_sitter_language_pack import get_language; get_language("<id>")

Read the full file on GitHub · 72 lines

Changes

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.

  1. 6d ago First seen · 72 lines · 823 tokens per session scan A 7f25271e860c

Subscribe to this mod's changes

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.