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/getsentry/xcodebuildmcp/agents-mdgit clone --depth 1 https://github.com/getsentry/XcodeBuildMCPWhat 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.02840 | $0.02840 |
| Opus 5 | $0.01420 | $0.01420 |
| Sonnet 5 | $0.00568 | $0.00568 |
| Haiku 4.5 | $0.00284 | $0.00284 |
Grade A, and why
XcodeBuildMCP 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 yesterday.
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- XcodeBuildMCP CLAUDE.md — 88% identical, 90 lines differ
How it starts
The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Development Rules
Build & Test
npm run build- Build (wireit + tsup, ESM)npm run test- Unit/integration tests (Vitest)npm run test:smoke- Smoke tests (builds first, serial execution)npm run lint/npm run lint:fix- ESLintnpm run format/npm run format:check- Prettiernpm run typecheck- TypeScript type checking (src + test config)
Architecture
ESM TypeScript project (type: module). Key layers:
src/cli/- CLI entrypoint, yargs wiring, daemon routingsrc/server/- MCP stdio server, lifecycle, workflow/resource registrationsrc/runtime/- Config bootstrap, session state, tool catalog assemblysrc/core/manifest/- YAML manifest loading, validation, tool module importssrc/mcp/tools/- Tool implementations grouped by workflow (mirrorsmanifests/workflows/)src/mcp/resources/- MCP resource implementationssrc/integrations/- External integrations (Xcode tools bridge)src/utils/- Shared helpers (execution, logging, validation, responses)src/visibility/- Tool/workflow exposure predicatessrc/daemon/- Background daemon for persistent sessionssrc/rendering/- Output rendering and formattingsrc/types/- Shared type definitions
Contributing Workflow
- Create a branch from
main - Make changes following the conventions in this file
- Run the pre-commit checklist before committing:
npm run lint:fix npm run typecheck npm run format npm run build npm test - Update
CHANGELOG.mdunder## [Unreleased] - Update documentation if adding or modifying features
- Clone and test against example projects (e.g.,
XcodeBuildMCP-iOS-Template) when changes affect runtime behavior - Push and create a pull request with a clear description
- Link any related issues
Code Quality
- No
anytypes unless absolutely necessary - Check node_modules for external API type definitions instead of guessing
- NEVER use inline imports - no
await import("./foo.js"), noimport("pkg").Typein type positions, no dynamic imports for types. Always use standard top-level imports. - NEVER remove or downgrade code to fix type errors from outdated dependencies; upgrade the dependency instead
- Always ask before removing functionality or code that appears to be intentional
- Do not add fallback behavior by default. If required context, configuration, runtime state, or dependencies are missing, fail loudly and fix the caller/setup instead of silently switching to an alternate path. Add a fallback only when explicitly requested or when it is a documented product requirement.
- Review the complete merge-base diff and trace changed or reused helper contracts, including error and sentinel returns, through callers, consumers, tests, and operational configuration.
- Verify standard quality commands include every changed path and exercise exact entry points and argument variants; validate explicitly when they do not.
- For asynchronous, workflow, or process-boundary changes, enumerate lifecycle states, retries, supersession, and race transitions; test terminal outcomes and missing or optional metadata.
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.
- yesterday First seen · 165 lines · 2,840 tokens per session scan A 94ae37d422ea
XcodeBuildMCP AGENTS.md is an instructions file published in the GitHub repository getsentry/XcodeBuildMCP (6,316 stars, last pushed yesterday), licensed MIT. It adds 2,840 tokens to every session, about $0.0142 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
create-mcp-server CLAUDE.md
Instructions for agentailor/create-mcp-server, covering @agentailor/create-mcp-server, project structure, development, install dependencies and build.
xc-mcp CLAUDE.md
Claude Code instructions for conorluddy/xc-mcp, covering claude.md, project overview, architecture (v4.0.0), v4.0 migration guide (breaking) and development commands.
mcp_espn_ff CLAUDE.md
Instructions for KBThree13/mcp_espn_ff, covering claude.md, project overview, running the server, architecture and single-file mcp server.
quip-mcp-server-typescript CLAUDE.md
Claude Code instructions for zxkane/quip-mcp-server-typescript, covering claude.md, common development commands, build and development, testing and code quality.
searxng-ai-kit AGENTS.md
AGENTS.md instructions for nikvdp/searxng-ai-kit, covering searxng ai kit development context and reminders, critical reminders, testing and running commands, project context and package structure.
deepsource-mcp-server CLAUDE.md
Instructions for sapientpants/deepsource-mcp-server, covering claude.md, repository overview, development commands, understanding mcp servers and quick start.