mcp4openapi: Skill for Claude Code

.claude/skills/create-crud-mcp-profile/SKILL.md

create-crud-mcp-profile is a skill for Claude Code from davidruzicka/mcp4openapi. It costs 68 tokens per session (1,003 once invoked), scanned A, original, MIT.

A workflow for adding a CRUD MCP profile from an OpenAPI specification. CRUD means creating, reading, updating, and deleting records; an OpenAPI specification describes how a software service can be used.

In plain words
What is it for?
Use it to map API actions and parameters, create profile files and tests, update documentation, and validate the new profile.
Why use it?
It helps you follow the repository’s existing structure and checks when connecting another service, reducing repeated discovery and missed documentation or tests.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions AGENTS.md.

This is davidruzicka/mcp4openapi's own configuration. It tells Claude Code how to work on mcp4openapi itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mcp4openapi configures →

Reuse

Borrowing it

Nothing to install: this file belongs to davidruzicka/mcp4openapi. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/davidruzicka/mcp4openapi/main/.claude/skills/create-crud-mcp-profile/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/davidruzicka/mcp4openapi

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 create-crud-mcp-profile

README.md
[![agentmods](https://agentmods.dev/badge/skills/davidruzicka/mcp4openapi/create-crud-mcp-profile.svg)](https://agentmods.dev/skills/davidruzicka/mcp4openapi/create-crud-mcp-profile)
Your own site
<a href="https://agentmods.dev/skills/davidruzicka/mcp4openapi/create-crud-mcp-profile"><img src="https://agentmods.dev/badge/skills/davidruzicka/mcp4openapi/create-crud-mcp-profile.svg" alt="Measured on agentmods" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,003 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00068 $0.01003
Opus 5 $0.00034 $0.00502
Sonnet 5 $0.00014 $0.00201
Haiku 4.5 $0.00007 $0.00100

Measured 7d ago against content hash 374ca35634e9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

create-crud-mcp-profile 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 7d 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.

.claude/skills/create-crud-mcp-profile/SKILL.md · 92 lines

How it starts

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

CRUD MCP Profile Builder

Build a production-ready profile in profiles/<api>/ without rediscovering repository conventions.

Load This Context First

Read only these sources first, in this order:

  1. AGENTS.md (canonical rules and workflow constraints)
  2. IMPLEMENTATION.md (architecture intent)
  3. docs/PROFILE-GUIDE.md (profile structure and patterns)
  4. docs/PROFILE-TEST-GUIDE.md (schema-driven tests)
  5. A strong local reference profile:
    • profiles/youtrack/profile.json for CRUD grouping style
    • profiles/github-security/profile.json for compact two-tool pattern
  6. Target spec and folder:
    • profiles/<api>/openapi.* or equivalent file present in folder

Then inspect only relevant docs for updates:

  • README.md profile lists/sections
  • CHANGELOG.md ([Unreleased])
  • TODO.md only if you are implementing an existing backlog item

For repeatable command snippets, use references/discovery-and-validation.md.

Expected Output

Create or update these files:

  1. profiles/<api>/profile.json
  2. profiles/<api>/profile.test.json
  3. README.md (profile list and profiles section)
  4. CHANGELOG.md (single-line user-facing entry in Unreleased)

Optional:

  • Fix invalid OpenAPI syntax in the bundled spec if parser/validator fails (for example invalid items shape).

Workflow

  1. Inventory the target spec.
  2. Build operation map from operationId + HTTP method + path.
  3. Decide CRUD grouping based on available methods:
    • retrieve_content for GET-like reads
    • create_content for POST creates
    • update_content for PATCH/PUT/POST updates
    • delete_content for DELETE removes
    • If API is read-heavy, keep only meaningful groups (do not add empty tools).
  4. Define action names that are explicit and stable (for example list_*, get_*, create_*, update_*, delete_*).
  5. Generate parameter model from OpenAPI:
    • required: true for parameters required by all actions in a tool
    • required_for for action-specific required parameters
    • include useful optional filters
    • add parameter_aliases for common ergonomic names (owner, repo, project_id, etc.)
  6. Set interceptors:
    • bearer auth with API-specific env var name (for example CODECOV_TOKEN)
    • base URL env var + sane default when known
    • retry policy aligned with existing profiles when applicable
  7. Build profile.test.json with schema-driven scenarios:
    • one scenario per action minimum
    • coverage.require_all_actions: true
    • add request assertions when behavior is non-trivial (aliases, metadata params, response field forwarding, proxy download)
  8. Validate and test.
  9. Update docs (README.md, CHANGELOG.md).

Read the full file on GitHub · 92 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 92 lines · 68 tokens per session scan A 374ca35634e9

Subscribe to this mod's changes

create-crud-mcp-profile is a skill published in the GitHub repository davidruzicka/mcp4openapi (0 stars, last pushed 4d ago), licensed MIT. It adds 68 tokens to every session and 1,003 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

babysit-pr

Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…

openai/codex · 114 tokens