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/agentailor/create-mcp-server/claude-mdgit clone --depth 1 https://github.com/agentailor/create-mcp-serverWhat 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.03285 | $0.03285 |
| Opus 5 | $0.01643 | $0.01643 |
| Sonnet 5 | $0.00657 | $0.00657 |
| Haiku 4.5 | $0.00329 | $0.00329 |
Grade A, and why
create-mcp-server CLAUDE.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 3d 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 — 274 lines — stays where its author put it; the contents beside it link to each section on GitHub.
@agentailor/create-mcp-server
A CLI tool to scaffold new MCP (Model Context Protocol) server projects.
Project Structure
create-mcp-server/
├── src/
│ ├── index.ts # CLI entry point
│ ├── cli.ts # CLI argument parsing (Commander.js)
│ ├── cli.test.ts # Tests for CLI argument parsing
│ ├── interactive.ts # Interactive prompt flow (prompts library)
│ ├── project-generator.ts # Shared project generation logic
│ └── templates/
│ ├── common/ # Shared template files
│ │ ├── package.json.ts # package.json template (framework-aware)
│ │ ├── tsconfig.json.ts # tsconfig.json template
│ │ ├── gitignore.ts # .gitignore template
│ │ ├── env.example.ts # .env.example template
│ │ └── templates.test.ts # Tests for common templates
│ ├── deployment/ # Deployment configuration templates
│ │ ├── dockerfile.ts # Dockerfile template
│ │ ├── dockerignore.ts # .dockerignore template
│ │ ├── index.ts # Barrel exports
│ │ └── templates.test.ts # Tests for deployment templates
│ ├── sdk/ # Official MCP SDK v2 templates
│ │ ├── stateless/ # Shared HTTP template (source of truth)
│ │ │ ├── server.ts # MCP server definition template
│ │ │ ├── index.ts # getIndexTemplate (createMcpHandler + toNodeHandler)
│ │ │ ├── readme.ts # README.md template (OAuth-aware)
│ │ │ └── templates.test.ts
│ │ ├── stateful/ # Compatibility shim - re-exports stateless
│ │ │ ├── server.ts # Re-exports from stateless
│ │ │ ├── index.ts # Re-exports getIndexTemplate from stateless
│ │ │ ├── readme.ts # Re-exports from stateless
│ │ │ ├── auth.ts # OAuth authentication template (owned here)
│ │ │ ├── auth.test.ts # Tests for auth template
│ │ │ └── templates.test.ts
│ │ └── stdio/ # stdio transport template
│ │ ├── server.ts # Re-exports from stateless
│ │ ├── index.ts # Barrel export + getIndexTemplate (serveStdio)
│ │ ├── readme.ts # README.md template (for local clients)
│ │ └── templates.test.ts
│ └── fastmcp/ # FastMCP templates
│ ├── server.ts # FastMCP server definition template
│ ├── index.ts # Barrel export + getIndexTemplate
│ ├── readme.ts # README.md template
│ └── templates.test.ts
├── dist/ # Compiled output (generated)
├── docs/
│ └── oauth-setup.md # OAuth setup guide for various providers
├── official-examples/ # Reference MCP server examples
├── package.json
├── tsconfig.json
└── README.md
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.
- 3d ago First seen · 274 lines · 3,285 tokens per session scan A 6d1a45e40400
create-mcp-server CLAUDE.md is an instructions file published in the GitHub repository agentailor/create-mcp-server (14 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 3,285 tokens to every session, about $0.0164 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
XcodeBuildMCP AGENTS.md
AGENTS.md instructions for getsentry/XcodeBuildMCP, covering development rules, build & test, architecture, contributing workflow and code quality.
XcodeBuildMCP CLAUDE.md
Claude Code instructions for getsentry/XcodeBuildMCP, covering development rules, code quality, test conventions, commands and github.
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.