00-create

00-create is a command for Claude Code from Flagler-County-BoCC/mcp-forge. It costs 0 tokens per session (1,156 once invoked), scanned A, a copy of 00-create 2, MIT.

A creation step that generates a deterministic manifest for an MCP server from an OpenAPI or Swagger specification. A manifest is a structured inventory used by later generation and review steps.

In plain words
What is it for?
Use it when starting a new MCP server from an API specification. It accepts a machine-readable OpenAPI or Swagger file, or a structured build specification when no such file exists.
Why use it?
It establishes one agreed description of the API before implementation begins, reducing ambiguity and ensuring the same specification produces the same output.

Command for Claude Code

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 commands/flagler-county-bocc/mcp-forge/00-create
Clone the repo
git clone --depth 1 https://github.com/Flagler-County-BoCC/mcp-forge

Made for: Claude Code.

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 00-create

README.md
[![agentmods](https://agentmods.dev/badge/commands/flagler-county-bocc/mcp-forge/00-create.svg)](https://agentmods.dev/commands/flagler-county-bocc/mcp-forge/00-create)
Your own site
<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>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,156 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00000 $0.01156
Opus 5 $0.00000 $0.00578
Sonnet 5 $0.00000 $0.00231
Haiku 4.5 $0.00000 $0.00116

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

Security

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.

Origin

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.

.claude/commands/shared/00-create.md · 93 lines

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.md when creating a NEW mcp-server from an API specification rather than rewriting existing code. Output is the SAME AUDIT_MANIFEST shape consumed by every downstream step — only the source differs. After this step, run Steps 1–14 and entrypoints/mcp-server.md exactly 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

  1. OpenAPI / Swagger document (openapi.json, openapi.yaml, swagger.json) present in the project or provided by the user. Preferred — machine-readable.
  2. 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:
    • verb by HTTP method: GET→get (or list if 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 operation tag (OpenAPI) or tag (BUILD_SPEC), lowercased and kebab-cased; if absent, the FIRST path segment.
    • If operationId is present, use it kebab-cased ONLY to disambiguate two operations that would otherwise collide; never as the primary name.
  • module = the module-prefix above.
  • description = operation summary trimmed to one line (or OpenAPI description first line).
  • file = src/tools/<module>/<module>.tool.ts.

Read the full file on GitHub · 93 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 · 93 lines · 0 tokens per session scan A 992a9820d68f

Subscribe to this mod's changes

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.