Skip to main content

Convert OpenAPI specs into MCP (Model Context Protocol) servers

Project description

oapi2mcp

Convert any OpenAPI 3.x specification into a working MCP (Model Context Protocol) server — zero configuration, zero code.

PyPI Python License: MIT

Quick Start

# Run directly with uvx — no install needed
uvx oapi2mcp --spec http://localhost:3000/openapi.json

# Or install with pip
pip install oapi2mcp
oapi2mcp --spec http://localhost:3000/openapi.json

That's it. Every endpoint in your OpenAPI spec is now available as an MCP tool.

How It Works

  1. Parses your OpenAPI 3.x spec (local file or remote URL)
  2. Resolves all $ref references recursively
  3. Converts every operation into an MCP tool with a proper inputSchema
  4. Serves tools over stdio, SSE, or streamable-http
  5. Forwards tool calls to the upstream API via HTTP

Configuration

CLI Options

oapi2mcp --spec <SPEC> [--transport TRANSPORT] [--host HOST] [--port PORT] [--base-url URL]
Option Default Description
--spec required URL or local path to OpenAPI spec (JSON)
--transport stdio Transport: stdio, sse, streamable-http
--host 127.0.0.1 Host for SSE/streamable-http
--port 8000 Port for SSE/streamable-http
--base-url auto Override base URL for upstream API calls

Base URL Resolution

Base URL is resolved in this priority order:

  1. OPENAPI_BASE_URL environment variable
  2. --base-url CLI flag
  3. Inferred from spec URL (strip last path segment)
  4. servers[0].url from the spec itself

Authentication

Set environment variables to inject auth headers into upstream requests:

# Bearer token (default)
export API_KEY=your-token-here

# API key header
export API_KEY=your-key-here
export API_AUTH_TYPE=api-key

MCP Client Integration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "my-api": {
      "command": "uvx",
      "args": ["oapi2mcp", "--spec", "https://api.example.com/openapi.json"],
      "env": {
        "API_KEY": "your-token"
      }
    }
  }
}

SSE / Streamable HTTP

# SSE transport
oapi2mcp --spec https://api.example.com/openapi.json --transport sse --port 8000

# Streamable HTTP transport
oapi2mcp --spec https://api.example.com/openapi.json --transport streamable-http --port 8000

Features

  • Recursive $ref resolution — handles nested references in components
  • Collision detection — renames body properties that conflict with path/query/header params
  • Fallback operationId — auto-generates from method + path when missing
  • Error wrapping — upstream HTTP errors surface as MCP errors with diagnostics
  • 3 transports — stdio (default), SSE, and streamable-http

Requirements

  • Python >= 3.10
  • An OpenAPI 3.x spec in JSON format

Disclaimer

This project was generated with the assistance of AI. While it has been tested, it may contain bugs or unexpected behavior. Use at your own risk. The author assumes no responsibility or liability for any damages or losses arising from the use of this software.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oapi2mcp-0.1.0.tar.gz (4.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oapi2mcp-0.1.0-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file oapi2mcp-0.1.0.tar.gz.

File metadata

  • Download URL: oapi2mcp-0.1.0.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for oapi2mcp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4b7e978ffcee4f05a18b777aefef8589b4393f282b6aba5308e33ca72bfacf94
MD5 c0c8c26eaee043a28d7d958ef230b306
BLAKE2b-256 013ab1eeb89b275d572eba701c84c7ec53fda9fce38b897d4b093f15fb3d6a77

See more details on using hashes here.

File details

Details for the file oapi2mcp-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: oapi2mcp-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 8.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for oapi2mcp-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 503a33d0b2521baf3f9526d3613b3f93b731e9e88fb60f1e6a35ca6b276d986e
MD5 0588ae6969b66efe855c5e356e8177da
BLAKE2b-256 6f3e26daa290dbe259265ffd7097ee6c723b57af1417c059fbd7e36853ca56f6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page