ts-mcp-server AGENTS.md

ts-mcp-server AGENTS.md is an instructions file for Codex, OpenCode from AndyLiner13/ts-mcp-server. It costs 2,974 tokens per session, scanned A, original, MIT.

Repository instructions for a server that connects coding tools to TypeScript's language service, which analyses TypeScript code for features such as references and completions.

In plain words
What is it for?
Use them when adding or changing tools in the ts-mcp-server codebase, especially tools mapped to TypeScript language-service commands.
Why use it?
They keep the server's tools predictable by passing requests through directly and returning TypeScript's original responses.

Instructions file for CodexOpenCode

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/andyliner13/ts-mcp-server/agents-md
Clone the repo
git clone --depth 1 https://github.com/AndyLiner13/ts-mcp-server

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 ts-mcp-server AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/andyliner13/ts-mcp-server/agents-md.svg)](https://agentmods.dev/instructions/andyliner13/ts-mcp-server/agents-md)
Your own site
<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>
Per session 2,974 This file is loaded in full into every session.
When invoked 2,974 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 $0.02974 $0.02974
Opus 5 $0.01487 $0.01487
Sonnet 5 $0.00595 $0.00595
Haiku 4.5 $0.00297 $0.00297

Measured 5d ago against content hash 136b24f0db3d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 323 lines

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 tsserver protocol command
  • Tool names must match the exact CommandTypes string 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 response
  • open(file) — Open a file in tsserver's project
  • writeEdits(edits) — Apply file edits to disk and reload
  • applyRefactor(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):

Read the full file on GitHub · 323 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. 5d ago First seen · 323 lines · 2,974 tokens per session scan A 136b24f0db3d

Subscribe to this mod's changes

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.