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/andyliner13/ts-mcp-server/agents-mdgit clone --depth 1 https://github.com/AndyLiner13/ts-mcp-serverWrote 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/andyliner13/ts-mcp-server/agents-md)<a href="https://agentmods.dev/instructions/andyliner13/ts-mcp-server/agents-md"><img src="https://agentmods.dev/badge/instructions/andyliner13/ts-mcp-server/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 | $0.02974 | $0.02974 |
| Opus 5 | $0.01487 | $0.01487 |
| Sonnet 5 | $0.00595 | $0.00595 |
| Haiku 4.5 | $0.00297 | $0.00297 |
Grade A, and why
ts-mcp-server 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 5d 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 — 323 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ts-mcp-server Codebase Instructions
Philosophy
This is a pure MCP server that wraps TypeScript's tsserver protocol. The core principles are:
1. Zero Custom Logic
- No custom types — All types are imported directly from
typescript(ts.server.protocol.*) - No wrappers — User input is passed directly to tsserver commands with no transformation
- No heuristics — No regex, path resolution tricks, or "smart" behavior
- No output formatting — Raw tsserver responses are returned as-is, serialized to JSON
2. One Tool Per tsserver Command
- Each tool maps 1:1 to a single
tsserverprotocol command - Tool names must match the exact
CommandTypesstring value from the tsserver protocol (e.g.,references,completionInfo,getCodeFixes) - Never combine multiple tsserver commands into a single "convenience" tool
3. Raw Output
Every tool returns the exact response from tsserver:
return {
content: [{ type: "text", text: JSON.stringify(body) }],
};
Never:
- Filter, group, sort, or truncate the response
- Add custom fields or metadata
- Format or pretty-print beyond
JSON.stringify - Trim whitespace or normalize paths
4. Minimal Shared Infrastructure
The only shared code is in tsserver.ts:
send<T, A>()— Send a command to tsserver and await the responseopen(file)— Open a file in tsserver's projectwriteEdits(edits)— Apply file edits to disk and reloadapplyRefactor(opts, preview)— Shared helper for refactor tools only
Tool Definitions (MCP Best Practices)
Follow the Model Context Protocol specification and MCP tool best practices for all tool definitions.
Tool Name (name)
- Unique identifier for the tool
- Naming rules depend on whether the tool is read-only or an edit tool
Read-Only Tools
For tools that only query/read (no preview parameter, readOnlyHint: true):
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.
- 5d ago First seen · 323 lines · 2,974 tokens per session scan A 136b24f0db3d
ts-mcp-server AGENTS.md is an instructions file published in the GitHub repository AndyLiner13/ts-mcp-server (3 stars, last pushed 5mo ago), licensed MIT. It adds 2,974 tokens to every session, about $0.0149 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-31.
Other instructions, from other repositories
swift-tui AGENTS.md
AGENTS.md instructions for SwiftTUI/swift-tui, covering agents.md, build & test commands, architecture (one-page summary), development guidelines and code style.
vite-ts-react-template code-style.instructions.md
Instructions for bartstc/vite-ts-react-template, covering code style, file naming, typescript, react and general.
omergulcicek.com AGENTS.md
AGENTS.md instructions for omergulcicek/omergulcicek.com, covering agents.md, persona, cli commands, operational guardrails and communication.
labex-cheatsheets GEMINI.md
Gemini CLI instructions for labex-labs/labex-cheatsheets, covering gemini customization file, project overview, technologies, coding style and conventions and routing & layout system.
Kokoro-Engine CLAUDE.md
Claude Code instructions for chyinan/Kokoro-Engine, covering claude.md, git 规范, 项目概述, 常用命令 and 安装依赖.
best-claude-hud AGENTS.md
Instructions for GaoSSR/best-claude-hud, covering project agent instructions and release work.