openapi-mcp-bridge CLAUDE.md

openapi-mcp-bridge CLAUDE.md is an instructions file for coding agents from samuellawrence/openapi-mcp-bridge. It costs 689 tokens per session, scanned A, original, MIT.

A set of Claude Code instructions for an OpenAPI MCP Bridge, a server that turns API descriptions into tools an AI assistant can search and use.

In plain words
What is it for?
It helps Claude Code work with configuration, OpenAPI or Swagger specifications, API authentication, server commands, tests, and the mock Petstore service.
Why use it?
It explains how the project is organised, installed, run, tested, and checked for type errors.

Instructions file

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 instructions/samuellawrence/openapi-mcp-bridge/claude-md
Clone the repo
git clone --depth 1 https://github.com/samuellawrence/openapi-mcp-bridge

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 openapi-mcp-bridge CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/samuellawrence/openapi-mcp-bridge/claude-md.svg)](https://agentmods.dev/instructions/samuellawrence/openapi-mcp-bridge/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/samuellawrence/openapi-mcp-bridge/claude-md"><img src="https://agentmods.dev/badge/instructions/samuellawrence/openapi-mcp-bridge/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 689 This file is loaded in full into every session.
When invoked 689 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.00689 $0.00689
Opus 5 $0.00345 $0.00345
Sonnet 5 $0.00138 $0.00138
Haiku 4.5 $0.00069 $0.00069

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

Security

Grade A, and why

openapi-mcp-bridge 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 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.

CLAUDE.md · 75 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project Overview

OpenAPI MCP Bridge is an MCP server that takes OpenAPI/Swagger specifications and exposes them as MCP tools. It allows AI assistants to search, explore, and execute any REST API.

Commands

Install dependencies

uv sync --all-extras

Run the MCP server

python -m src.server                           # Fuzzy search (default)
python -m src.server --search-provider embedding  # Embedding search

Run tests

pytest tests/ -v                               # All tests
pytest tests/test_parser.py -v                 # Single test file
pytest tests/test_parser.py::TestConfig -v     # Single test class
pytest tests/test_integration.py -v            # Integration tests (starts mock server)

Run mock Petstore server (for manual testing)

uvicorn mock-petstore.app:app --port 8000

Type checking

pyright src/

Architecture

The system follows a pipeline architecture:

  1. Config (config.py) → Loads config/apis.json, resolves $ENV_VAR references in auth tokens
  2. Parser (parser.py) → Fetches and parses OpenAPI 3.x/Swagger 2.0 specs, resolves $ref references
  3. Registry (registry.py) → Manages multiple APIs, stores parsed specs in memory
  4. Search (search/) → Two providers:
    • FuzzySearchProvider: Uses thefuzz for string matching
    • EmbeddingSearchProvider: Uses sentence-transformers for semantic search
  5. Executor (executor.py) → Executes HTTP requests via httpx, handles auth, pagination, response truncation
  6. Guardrails (guardrails.py) → Blocks destructive operations (DELETE/PUT/PATCH) unless confirmed=true
  7. Server (server.py) → FastMCP server exposing 4 tools: list_apis, search_endpoints, execute_endpoint, batch_execute

Key Design Decisions

  • Async throughout: Parser, registry, and executor are all async for non-blocking I/O
  • Lazy model loading: Embedding model only loads when first search is performed
  • Guardrails by default: Destructive operations require explicit confirmation
  • Environment variable resolution: Auth tokens can reference env vars with $VAR_NAME syntax
  • Pydantic models: All data structures use Pydantic for validation

Read the full file on GitHub · 75 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 · 75 lines · 689 tokens per session scan A fc78c736318b

Subscribe to this mod's changes

openapi-mcp-bridge CLAUDE.md is an instructions file published in the GitHub repository samuellawrence/openapi-mcp-bridge (0 stars, last pushed 1mo ago), licensed MIT. It adds 689 tokens to every session, about $0.0034 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.