A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
A Python tool that automatically converts OpenAPI(Swagger, ETAPI) compatible specifications into fully functional Model
A Python tool that automatically converts OpenAPI specifications into fully functional Model Context Protocol (MCP) servers. Generates Docker-ready implementations with support for SSE/IO communication protocols, authentication, and comprehensive error handling.
The generator has been refactored into a proper Python package while maintaining backward compatibility:
generator.py script still works exactly as before/templates directoryYou can use the tool in whatever way you prefer:
generator.py directly (original approach)mcp-generator commandFor more details on the modular code structure, see MODULAR_REFACTORING.md.
# Clone the repository
git clone https://github.com/abutbul/openapi-mcp-generator.git
cd openapi-mcp-generator
# Install as a package (development mode)
pip install -e .
# Or using uv
uv venv
source .venv/bin/activate
uv pip install -e .
pip install openapi-mcp-generator
# Using the original script (still works the same way)
python generator.py openapi.yaml --output-dir ./output --api-url https://api.example.com
# Using the new modular CLI tool after installation
mcp-generator openapi.yaml --output-dir ./output --api-url https://api.example.com
# Using the python module directly
python -m openapi_mcp_generator.cli openapi.yaml --output-dir ./output
openapi_file: Path to the OpenAPI YAML file (required)--output-dir: Output directory for the generated project (default: '.')--api-url: Base URL for the API--auth-type: Authentication type (bearer, token, basic)--api-token: API token for authentication--api-username: Username for basic authentication--api-password: Password for basic authenticationAfter generating the server, you can build and run it using Docker:
cd output/openapi-mcp-*
./docker.sh build
./docker.sh start --transport=sse --port=8000
The generated docker.sh script supports the following commands:
build: Build the Docker imagestart: Start the container
--port=PORT: Set the port (default: 8000)--transport=TYPE: Set transport type: 'sse' or 'io' (default: sse)--log-level=LEVEL: Set logging level (default: info)stop: Stop the containerclean: Remove the container and imagelogs: View container logsThe modular generator has the following structure:
openapi-mcp-generator/
├── generator.py # Original entry point (maintained for backward compatibility)
├── mcp_generator.py # New entry point (uses the modular structure)
├── openapi_mcp_generator/ # Main package (new modular structure)
│ ├── __init__.py # Package initialization
│ ├── cli.py # Command-line interface
│ ├── generator.py # Main generator module
│ ├── generators.py # Code generators for tools/resources
│ ├── http.py # HTTP client utilities
│ ├── parser.py # OpenAPI parser
│ └── project.py # Project builder
├── templates/ # Original templates directory (used by the modular code)
│ ├── config/
│ ├── docker/
│ ├── server/
│ ├── pyproject.toml
│ └── requirements.txt
├── samples/ # Sample implementations
├── tests/ # Test cases
├── LICENSE # License file
├── README.md # This file
├── pyproject.toml # Project metadata
└── setup.py # Package setup
The modular structure preserves all the existing functionality while making the code more maintainable:
generator.py) can still be used as before/templates are used by the new modular codeCheck out our sample implementations to see the generator in action:
This project is licensed under the MIT License - see the LICENSE file for details.
To generate an MCP server from the Elasticsearch 6.1 spec folder:
# Run the original script directly
python generator.py samples/elasticsearch_6.1/api
# Or use the modular entry point
python mcp_generator.py samples/elasticsearch_6.1/api
First, install the package (from the project root):
pip install .
Then use the CLI tool to convert the Trilium ETAPI spec:
mcp-generator samples/TriliumNext/etapi.openapi.yaml
Or use it programmatically in your own Python code:
from openapi_mcp_generator import generator
generator.generate('samples/TriliumNext/etapi.openapi.yaml')
MCP server integration for DaVinci Resolve Studio
mcp-language-server gives MCP enabled clients access semantic tools like get definition, references, rename, and diagnos
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots