Skip to main content

Agentic OpenAPI-to-MCP pipeline for AI-refined FastMCP and LangGraph server artifacts.

Project description

oas2mcp

CI Docs PyPI version Python versions License

Turn OpenAPI and Swagger specs into AI-refined Model Context Protocol (MCP) server surfaces you can inspect, diff, deploy, and ship with FastMCP or LangGraph.

oas2mcp is an agentic OpenAPI-to-MCP pipeline, not a raw route mirror. It loads common API specifications, normalizes them into typed internal models, classifies first-pass MCP candidates deterministically, then runs focused AI agent stages to improve names, descriptions, tool/resource semantics, prompt templates, shared resources, and server instructions.

Raw OpenAPI bootstrapping is useful for speed, but it usually exposes an API exactly as it was documented for humans and SDKs. MCP servers need a stronger semantic layer: stable tool names, clear read/write boundaries, resource-style access for safe reads, useful prompts, confirmation notes, and deployment metadata that agents can rely on. oas2mcp builds that layer as inspectable artifacts before anything is served.

Pipeline at a glance

OpenAPI / Swagger source
-> typed catalog normalization
-> deterministic MCP candidate hints
-> catalog summarizer agent
-> per-operation enhancer agent
-> catalog surface planner agent
-> export JSON artifacts
-> bootstrap FastMCP or deploy with LangGraph

The result is a reusable MCP planning bundle rather than a one-off generated server. You can review the generated JSON, diff it in pull requests, feed it into FastMCP bootstrap, or run the same flow as deployable LangGraph entrypoints with LangSmith tracing.

Why use it

  • Converts local files, remote URLs, file:// URIs, raw JSON/YAML text, OpenAPI 3.x, and Swagger/OpenAPI 2.0 inputs into one typed catalog model.
  • Keeps deterministic parsing and classification separate from AI refinement so the pipeline stays debuggable and repeatable.
  • Uses three narrow agent stages instead of one vague "generate a server" prompt.
  • Produces tool, resource, resource-template, prompt, and server-instruction metadata for richer MCP surfaces.
  • Exports artifacts under data/exports/ by default so generated state is easy to inspect and does not clutter the repository root.
  • Boots a FastMCP server from the original OpenAPI spec plus exported metadata, including name overrides and final tool/resource routing.
  • Provides LangGraph deployment wrappers and LangSmith tracing hooks for running the same refinement flow in production-style environments.
  • Includes tests for loader normalization, deterministic export logic, FastMCP behavior, and LangGraph wrappers.

The Agent System

oas2mcp uses an explicit multi-agent refinement pipeline:

  • catalog summarizer: reads the whole API shape once and captures domains, authentication style, data model patterns, and read/write behavior.
  • operation enhancer: refines one operation at a time, improving titles, descriptions, final MCP kind, confirmation guidance, and prompt templates.
  • catalog surface planner: designs the shared MCP layer, including catalog-level prompts, resources, resource templates, and server instructions.
  • orchestrator: keeps the run deterministic by loading once, summarizing once, enhancing operations in order, planning the shared surface once, and exporting typed artifacts.

This keeps the AI component useful but bounded. Agents improve semantics and ergonomics; deterministic code still owns loading, normalization, candidate generation, export paths, and bootstrap wiring.

Supported API Specs

The loader accepts common API specification forms directly:

  • remote URLs such as https://example.com/openapi.json
  • local files such as openapi.yaml, openapi.json, or specs/petstore.yaml
  • file:// URIs
  • raw JSON or YAML text
  • Swagger 2.0 / OpenAPI 2 documents, normalized into the internal catalog model

Generated Outputs

Typical export artifacts include:

  • data/exports/<catalog-slug>_enhanced_catalog.json
  • data/exports/<catalog-slug>_operation_notes.json
  • data/exports/<catalog-slug>_surface_plan.json
  • data/exports/<catalog-slug>_fastmcp_config.json

By default, generated JSON stays under data/exports/. Root-level snapshot files are opt-in only.

Install

For package usage:

pip install oas2mcp

For local development:

pdm install -G test -G docs -G cli

The cli group includes the in-memory LangGraph API server extras needed for langgraph dev, not just the bare CLI wrapper.

Example usage

1. Load and inspect a local or remote spec

from rich.console import Console

from oas2mcp import classify_catalog, load_openapi_spec_dict, render_catalog_summary
from oas2mcp.normalize.spec_to_catalog import spec_dict_to_catalog

source = "openapi.yaml"

spec_dict = load_openapi_spec_dict(source)
catalog = spec_dict_to_catalog(spec_dict, source_uri=source)
bundle = classify_catalog(catalog)

print(catalog.name)
print(f"operations: {len(catalog.operations)}")
print(f"candidates: {len(bundle.candidates)}")

render_catalog_summary(catalog, console=Console())

2. Run the full agent pipeline and export artifacts

This path requires OPENAI_API_KEY.

from oas2mcp.agent.orchestrator import run_and_export_oas2mcp_pipeline
from oas2mcp.agent.runtime import Oas2McpRuntimeContext
from oas2mcp.generate.config import ExportConfig

source = "openapi.yaml"

outputs = run_and_export_oas2mcp_pipeline(
    source=source,
    runtime_context=Oas2McpRuntimeContext(
        source_uri=source,
        project_name="petstore-mcp",
        user_goal="Produce a clean MCP surface for deployment.",
        output_style="compact",
        include_mcp_recommendations=True,
        include_risk_notes=False,
    ),
    export_config=ExportConfig(
        export_dir="data/exports",
        write_root_snapshot=False,
    ),
)

for name, path in outputs.items():
    print(name, path)

Typical outputs:

  • data/exports/<catalog-slug>_enhanced_catalog.json
  • data/exports/<catalog-slug>_operation_notes.json
  • data/exports/<catalog-slug>_surface_plan.json
  • data/exports/<catalog-slug>_fastmcp_config.json

3. Bootstrap FastMCP from exported artifacts

from oas2mcp.generate.fastmcp_app import (
    build_fastmcp_from_exported_artifacts,
    register_exported_prompts,
    register_exported_resources,
)

source = "openapi.yaml"
config_path = "data/exports/example-api_fastmcp_config.json"

mcp = build_fastmcp_from_exported_artifacts(
    source=source,
    fastmcp_config_path=config_path,
)
register_exported_resources(mcp, config_path)
register_exported_prompts(mcp, config_path)
mcp.run(transport="http", port=8000)

The bootstrap layer respects:

  • exported name overrides keyed by OpenAPI operationId
  • exported final_kind routing for tool vs resource vs resource template
  • catalog-level prompts and resources from the surface planner
  • server instructions derived from the shared surface plan

LangGraph and LangSmith deployment

The repo includes deployable LangGraph wrappers in src/oas2mcp/deploy/langgraph_app.py and a deployment config at config/langgraph.json.

Run the LangGraph CLI commands from the repository root so the config's ./src and ./.env paths resolve correctly.

The two exposed graphs are:

  • enhance_catalog: runs the in-memory summarize -> enhance -> surface-plan flow and returns enhanced catalog JSON
  • enhance_and_export_catalog: runs the export flow and returns written artifact paths

Run the local LangGraph dev server:

pdm run langgraph dev --config config/langgraph.json --no-browser

Validate the deployment config:

pdm run langgraph validate --config config/langgraph.json

Build or deploy:

pdm run langgraph build --config config/langgraph.json -t oas2mcp
pdm run langgraph deploy --config config/langgraph.json

langgraph deploy reads LANGSMITH_API_KEY from .env. The config is pinned to Python 3.13 so deployment matches the package runtime.

Environment

Copy the example env file:

cp .env.example .env

Required for agent-driven flows:

  • OPENAI_API_KEY

Optional for LangSmith tracing and LangGraph deployment:

  • LANGSMITH_TRACING=true
  • LANGSMITH_API_KEY
  • LANGSMITH_PROJECT
  • LANGSMITH_WORKSPACE_ID
  • LANGSMITH_DEPLOYMENT_NAME
  • LANGSMITH_ENDPOINT for self-hosted LangSmith only

Optional for live upstream FastMCP checks:

  • UPSTREAM_BEARER_TOKEN
  • UPSTREAM_API_KEY
  • UPSTREAM_API_KEY_HEADER

Verification

Formal test coverage:

pdm run pytest

The current suite covers:

  • loader and normalization behavior
  • deterministic export logic
  • FastMCP in-process e2e behavior
  • LangGraph wrapper behavior

Docs build:

rm -rf docs/source/autoapi docs/_build
pdm run sphinx-build -b html -W --keep-going docs/source docs/_build/html

Manual smoke checks:

pdm run python scripts/test_catalog_surface_planner_agent.py
pdm run python scripts/test_orchestrator.py
pdm run python scripts/test_fastmcp_bootstrap.py
pdm run python scripts/test_fastmcp_server.py
pdm run python scripts/test_fastmcp_client.py

Project layout

src/oas2mcp/
  loaders/       Fetch and parse OpenAPI sources
  normalize/     Convert raw specs into normalized models
  classify/      Deterministic MCP candidate generation
  agent/         Summarizer, enhancer, surface planner, runtime, orchestration
  deploy/        LangGraph deployment wrappers around the orchestrator
  generate/      Artifact export and FastMCP bootstrap
tests/           Unit and end-to-end coverage
scripts/         Manual smoke runners and local inspection helpers
config/          Deployment config such as LangGraph
docs/            Sphinx documentation published through Read the Docs

Documentation and publishing

  • docs source: docs/source/
  • CI: .github/workflows/ci.yml
  • docs validation: .github/workflows/docs.yml
  • PyPI release: .github/workflows/release.yml

The publishing path is tag-driven. Local release helpers cut a verified release commit and annotated tag; GitHub Actions validates the tag, builds the package, publishes to PyPI, and creates the GitHub Release.

  1. pdm run release_cut_patch (or release_cut_minor / release_cut_major)
  2. git push origin main
  3. git push origin vX.Y.Z

release_cut_* performs the full local release cut in one step:

  • checks that the worktree is clean before starting
  • bumps pyproject.toml and docs/source/conf.py together
  • refreshes pdm.lock
  • runs tests, docs, and build validation through pdm run release_check
  • creates the release commit
  • creates the annotated vX.Y.Z tag

Pushing a v* tag triggers .github/workflows/release.yml, which:

  • verifies the tag matches pyproject.toml
  • runs tests
  • builds docs
  • builds distributions
  • publishes to PyPI
  • creates the GitHub Release and attaches dist/*

If you have not configured a PyPI trusted publisher yet, add a repository secret named PYPI_API_TOKEN and the same workflow can publish with a token instead.

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

oas2mcp-0.1.11.tar.gz (77.8 kB view details)

Uploaded Source

Built Distribution

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

oas2mcp-0.1.11-py3-none-any.whl (83.2 kB view details)

Uploaded Python 3

File details

Details for the file oas2mcp-0.1.11.tar.gz.

File metadata

  • Download URL: oas2mcp-0.1.11.tar.gz
  • Upload date:
  • Size: 77.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for oas2mcp-0.1.11.tar.gz
Algorithm Hash digest
SHA256 3e283d20fbe6a2809d36087526113d170bd4458e3539b23c982e86202c03017b
MD5 89036266c7de0d36ab160f1ee8112842
BLAKE2b-256 537b3ba4559a69a3cc08b3f54436e36aef583a3e09b319ec3e5c25baccf6fc67

See more details on using hashes here.

Provenance

The following attestation bundles were made for oas2mcp-0.1.11.tar.gz:

Publisher: release.yml on pr1m8/oas2mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file oas2mcp-0.1.11-py3-none-any.whl.

File metadata

  • Download URL: oas2mcp-0.1.11-py3-none-any.whl
  • Upload date:
  • Size: 83.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for oas2mcp-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 c969519bd509d6e33ffd947cff6ea5ccb7f183b3a4aa48cbdfa737f7d238c606
MD5 7b40297ee908564fc58e840846c7e2f6
BLAKE2b-256 5d9267c593c6f15aa568fc029cc72c7da5596c35aa25c0aed92b3d668418d824

See more details on using hashes here.

Provenance

The following attestation bundles were made for oas2mcp-0.1.11-py3-none-any.whl:

Publisher: release.yml on pr1m8/oas2mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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