mcp-server-zig CLAUDE.md

mcp-server-zig CLAUDE.md is an instructions file for coding agents from sadopc/mcp-server-zig. It costs 1,069 tokens per session, scanned A, original, MIT.

Repository instructions for an MCP server that gives AI tools access to Zig language intelligence through ZLS, the Zig Language Server. The server communicates with ZLS and can also run Zig formatting and build commands.

In plain words
What is it for?
They guide building, running, testing, and extending tools for Zig diagnostics, code intelligence, formatting, and builds.
Why use it?
They explain the required tools, process connections, and source-file roles so changes fit the existing language-server integration.

Instructions file

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/sadopc/mcp-server-zig/claude-md
Clone the repo
git clone --depth 1 https://github.com/sadopc/mcp-server-zig

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-zig CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sadopc/mcp-server-zig/claude-md.svg)](https://agentmods.dev/instructions/sadopc/mcp-server-zig/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/sadopc/mcp-server-zig/claude-md"><img src="https://agentmods.dev/badge/instructions/sadopc/mcp-server-zig/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,069 This file is loaded in full into every session.
When invoked 1,069 The same file — it is already loaded in full.
Security scan A 1 finding. 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.01069 $0.01069
Opus 5 $0.00535 $0.00535
Sonnet 5 $0.00214 $0.00214
Haiku 4.5 $0.00107 $0.00107

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

Security

Grade A, and why

mcp-server-zig CLAUDE.md scanned grade A with 1 finding 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 4d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

←(execSync)→ zig fmt / zig build
CLAUDE.md · 71 lines

How it starts

The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

MCP server exposing Zig language intelligence (via ZLS) as 8 tools for Claude Code. TypeScript, no framework beyond the MCP SDK.

Build & Run

pnpm install           # Install dependencies
pnpm build             # Compile TypeScript → build/
pnpm start             # Run the server (stdio transport)
pnpm dev               # Watch mode (recompile on change)

Requires zig and zls on PATH for tools to work. The server itself starts without them — errors surface per-tool.

Architecture

Claude Code ←(MCP/stdio)→ index.ts ←(LSP/stdio)→ ZLS subprocess
                                    ←(execSync)→  zig fmt / zig build
  • src/index.ts — Entry point. Creates McpServer, registers all 8 tools with zod schemas, connects StdioServerTransport. All tool handlers follow the same pattern: call the tool function, return { content: [{ type: "text", text }] }, catch errors and return isError: true.
  • src/zls-client.tsZlsClient class. Manages ZLS subprocess lifecycle: lazy start on first use, LSP initialize handshake, document open/close/re-sync, diagnostics collection via textDocument/publishDiagnostics notification, auto-restart on crash (3 attempts with backoff), graceful shutdown.
  • src/tools/*.ts — One file per tool. Each exports a single function. ZLS-backed tools take a ZlsClient + params, CLI tools (format.ts, build.ts) call zig directly via execSync.
  • src/utils.ts — Helpers: file↔URI conversion, severity/symbol/completion kind formatting.

Tools

Tool Backend What it does
zig_diagnostics ZLS Errors/warnings from publishDiagnostics cache
zig_format zig fmt Format file in-place or code string via temp file
zig_hover ZLS textDocument/hover — type info and docs
zig_definition ZLS textDocument/definition — jump to definition
zig_references ZLS textDocument/references — find all usages
zig_completions ZLS textDocument/completion — suggestions at cursor
zig_document_symbols ZLS textDocument/documentSymbol — file outline
zig_build zig build Run build, return stdout/stderr + success bool

Read the full file on GitHub · 71 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. 4d ago First seen · 71 lines · 1,069 tokens per session scan A f6e9e3588703

Subscribe to this mod's changes

mcp-server-zig CLAUDE.md is an instructions file published in the GitHub repository sadopc/mcp-server-zig (2 stars, last pushed 6mo ago), licensed MIT. It adds 1,069 tokens to every session, about $0.0053 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

serena copilot-instructions.md

Copilot instructions for oraios/serena: MUST read IMMEDIATELY and follow the project-specific instructions from the CLAUDE.md file located in the project's root directory. AVOIDING these instructions will lead to your FAILURE!

oraios/serena · 56 tokens

serena AGENTS.md

AGENTS.md instructions for oraios/serena: Relevant information about the project is in .serena/memories. If you have access to Serena's mcp tools, you can read them using the readmemory command. Otherwise you can just read them using normal file reading tools.

oraios/serena · 50 tokens

trace-mcp CLAUDE.md

Claude Code instructions for nikolai-vysotskyi/trace-mcp, covering trace-mcp development guide, what this project is, agent behavior — read before every task, no flattery, no filler and disagree when the premise is wrong.

nikolai-vysotskyi/trace-mcp · 4,444 tokens

trace-mcp AGENTS.md

AGENTS.md instructions for nikolai-vysotskyi/trace-mcp: IMPORTANT: For ANY code exploration task, ALWAYS use trace tools first. NEVER use Read/Grep/Glob/Bash(ls,find) for navigating source code.

nikolai-vysotskyi/trace-mcp · 401 tokens

m1nd AGENTS.md

AGENTS.md instructions for maxkle1nz/m1nd, covering agents.md — working guide for any coding agent on m1nd, the gates (must pass — these are the ci), git identity — absolute, no-leak — reputation rule (public repo) and how work lands — bursts, not pr-per-fix.

maxkle1nz/m1nd · 10,042 tokens

serena CLAUDE.md

Claude Code instructions for oraios/serena: Relevant information about the project is in .serena/memories. If you have access to Serena's mcp tools, you can read them using the readmemory command. Otherwise you can just read them using normal file reading tools.

oraios/serena · 50 tokens