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 commands/flagler-county-bocc/mcp-forge/00-creategit clone --depth 1 https://github.com/Flagler-County-BoCC/mcp-forgeWrote 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/commands/flagler-county-bocc/mcp-forge/00-create)<a href="https://agentmods.dev/commands/flagler-county-bocc/mcp-forge/00-create"><img src="https://agentmods.dev/badge/commands/flagler-county-bocc/mcp-forge/00-create.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.00000 | $0.01156 |
| Opus 5 | $0.00000 | $0.00578 |
| Sonnet 5 | $0.00000 | $0.00231 |
| Haiku 4.5 | $0.00000 | $0.00116 |
Grade A, and why
00-create 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 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.
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.
This is a copy
100% identical to 00-create 2 — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Step 0 (Create Mode) — Generate the Manifest from an API Spec
Use this INSTEAD of
shared/00-audit.mdwhen creating a NEW mcp-server from an API specification rather than rewriting existing code. Output is the SAMEAUDIT_MANIFESTshape consumed by every downstream step — only the source differs. After this step, run Steps 1–14 andentrypoints/mcp-server.mdexactly as for a rewrite.
Role
You are a senior architect generating an MCP server from an API specification. You produce deterministic output: the same spec twice yields an identical manifest.
Input — pick the FIRST that applies
- OpenAPI / Swagger document (
openapi.json,openapi.yaml,swagger.json) present in the project or provided by the user. Preferred — machine-readable. - BUILD_SPEC (below) — a structured block the user fills in when no OpenAPI document exists.
Do NOT explore live API docs or infer endpoints from prose. If neither input is available, STOP and ask the user to provide one.
BUILD_SPEC template (use only when there is no OpenAPI document)
// BUILD_SPEC
{
"name": "<kebab-case project name>",
"baseUrl": "<https://api.example.com/v1>",
"auth": "<none | apiKey | basic | bearer>",
"authEnvPrefix": "<UPPER_SNAKE prefix, e.g. ACME>",
"operations": [
{
"operationId": "<camelCase, e.g. getComputer>",
"method": "<GET|POST|PUT|PATCH|DELETE>",
"path": "</computers/{id}>",
"tag": "<logical group, e.g. computers>",
"summary": "<one line>",
"responseFields": ["<top-level field name>", "..."]
}
]
}
Derivation rules (apply identically every run)
projectName: OpenAPI info.title slugified to kebab-case; or BUILD_SPEC name.
projectType: always "mcp-server". mcpTransport: always "stdio".
detectedFramework: "@modelcontextprotocol/sdk". detectedLanguage:
"typescript". detectedOrm/detectedTestRunner: "none"/"vitest".
One mcpTools entry per operation (each path × method = one operation):
name=<module-prefix>-<verb>-<noun>where:verbby HTTP method: GET→get(orlistif the path has no trailing{param}), POST→create, PUT/PATCH→update, DELETE→delete.noun= the LAST non-parameter path segment, lowercased, used verbatim (do NOT singularize/pluralize — English rules are not deterministic).module-prefix= the operationtag(OpenAPI) ortag(BUILD_SPEC), lowercased and kebab-cased; if absent, the FIRST path segment.- If
operationIdis present, use it kebab-cased ONLY to disambiguate two operations that would otherwise collide; never as the primary name.
module= themodule-prefixabove.description= operationsummarytrimmed to one line (or OpenAPIdescriptionfirst line).file=src/tools/<module>/<module>.tool.ts.
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.
- 4d ago First seen · 93 lines · 0 tokens per session scan A 992a9820d68f
00-create is a command published in the GitHub repository Flagler-County-BoCC/mcp-forge (1 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,156 tokens. A static security scan graded it A with 0 findings. It is 100% identical to 00-create 2, differing in 0 lines, and is treated as a copy.
Other commands, from other repositories
git
Git operations with intelligent commit messages and workflow optimization.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.