OpenAPI to FastAPI MCP Server Generator
Project description
MCP Generator 3.x
๐ OpenAPI to FastMCP 3.x Server Generator
Transform any OpenAPI specification into a production-ready Model Context Protocol (MCP) server with enterprise-grade authentication, modular architecture, and comprehensive middleware support.
๐ฏ Overview
MCP Generator 3.x is an advanced code generator that automatically creates FastMCP 3.x servers from OpenAPI 3.0.x/3.1.x specifications. It bridges REST APIs and AI agents by generating fully-functional MCP tools that AI assistants like Claude, ChatGPT, and others can use to interact with your APIs.
Supported OpenAPI Versions
- โ OpenAPI 3.0.x - Fully supported (recommended)
- โ OpenAPI 3.1.x - Fully supported
- โ Swagger 2.0 - Fully supported
Note: Both JSON and YAML formats are supported. The generator includes a pure Python OpenAPI client generator โ no Java or Node.js required.
๐ Why MCP Generator 3.x?
| Feature | MCP Generator 3.x | Typical Generators |
|---|---|---|
| Architecture | Modular, composable sub-servers | Monolithic single file |
| Authentication | JWT validation with JWKS, OAuth2 flows | Basic token passing |
| Middleware System | Full FastMCP 3.x middleware stack | Limited or none |
| Scalability | One module per API class | All operations in one file |
| Type Safety | Full Pydantic model support | Basic validation |
| Testing | Auto-generated test suites | Manual testing only |
| Observability | Timing, logging, error handling middleware | Basic logging |
| Tag Discovery | Auto-discovers undeclared API tags | Manual tag mapping |
| Event Store | Resumable SSE with event persistence | Simple SSE |
| MCP Apps | Interactive UI display tools (tables, charts, forms) | None |
| Production Ready | โ Yes | โ ๏ธ Often prototypes |
Competitive Comparison
How MCP Generator 3.x stacks up against every other OpenAPI-to-MCP project on GitHub (updated April 2026):
| Feature | MCP Generator 3.x (Py, 18โ ) | openapi-mcp-server (TS, 887โ ) | mcp-link (Go, 602โ ) | openapi-mcp-generator (TS, 566โ ) | openapi-mcp (Go, 183โ ) | openapi-mcp-codegen (Py, 35โ ) |
|---|---|---|---|---|---|---|
| Approach | Code generation | Runtime search/proxy | Runtime proxy | Code generation | Runtime proxy (Docker) | Code generation |
| OpenAPI 3.0 | โ | โ | โ | โ | โ | โ |
| OpenAPI 3.1 | โ | โ | โ | โ | โ | โ |
| Swagger 2.0 | โ | โ | โ | โ | โ | โ |
| Modular sub-servers | โ | โ | โ | โ | โ | โ |
| FastMCP 3.x native | โ | โ | N/A | โ | N/A | โ |
| Streamable HTTP | โ | โ | โ | โ | โ | โ |
| JWT / JWKS auth | โ | โ | โ | โ | โ | โ |
| OAuth2 flows | โ | โ | header injection | env vars only | โ | header injection |
| Middleware stack | โ (timing, logging, cache, auth) | โ | โ | โ | โ | โ |
| MCP Resources | โ (GET endpoints) | โ | โ | โ | โ | โ |
| Event Store | โ (resumable) | โ | โ | โ | โ | โ |
| Auto-generated tests | โ | โ | โ | โ | โ | โ (eval suite) |
| MCP Apps (UI) | โ (tables, charts, forms) | โ | โ | โ | โ | โ |
| A2A agent generation | โ (lightweight a2a-sdk) | โ | โ | โ | โ | โ (LangGraph) |
| LLM-enhanced docs | โ (OpenAPI Overlay 1.0) | โ | โ | โ | โ | โ (OpenAPI Overlay) |
| Docker output | โ | โ | โ | โ | โ (primary) | โ |
| Tag auto-discovery | โ | โ | โ | โ | โ | โ |
| Server registry | โ | โ | โ | โ | โ | โ |
| Endpoint filtering | tag-based | โ | path filters | x-mcp extension | tag/op filters | โ |
| Schema validation | Pydantic | โ | โ | Zod | โ | โ |
| Actively maintained | โ (Apr 2026) | โ ๏ธ (Feb 2026) | โ (Apr 2025) | โ (Mar 2026) | โ ๏ธ (Mar 2026) | โ (Nov 2025) |
Note: mcpo (4,027โ ) solves the inverse problem โ exposing MCP servers as OpenAPI endpoints โ and is complementary rather than competitive.
โจ FastMCP 3.x Features
MCP Generator 3.x leverages all the latest FastMCP 3.x capabilities:
| Feature | Description |
|---|---|
| Tool Tags | Automatic per-module tag grouping (@mcp.tool(tags=["pet"])) |
| Tool Timeouts | Configurable per-tool timeout (default 30s) |
| SearchTools | BM25 text search over tool catalog (opt-in via fastmcp.json) |
| CodeMode | Experimental meta-tool transform (opt-in via fastmcp.json) |
| ResponseLimitingMiddleware | UTF-8-safe truncation of oversized responses (1MB default) |
| PingMiddleware | HTTP keepalive for long-lived connections |
| MultiAuth | Compose multiple token verifiers (JWT + OAuth2, etc.) |
| Component Versioning | Deprecated OpenAPI endpoints annotated automatically |
| Dynamic Visibility | Per-session component toggling via scopes |
| OpenTelemetry | Tracing with MCP semantic conventions (Console/OTLP export) |
| validate_output | FastMCP output validation support |
All features are configurable via the generated fastmcp.json:
{
"features": {
"search_tools": { "enabled": false },
"code_mode": { "enabled": false },
"response_limiting": { "enabled": true, "max_size_bytes": 1048576 },
"ping_middleware": { "enabled": true },
"opentelemetry": { "enabled": false, "service_name": "my-api-mcp" }
}
}
๐ฆ Installation
Prerequisites
- Python 3.11+: Required for modern type hints and features
- uv (recommended) or pip: For dependency management
- OpenAPI Specification: Your API's OpenAPI 3.0.x or 3.1.x spec file (JSON or YAML)
Install with uv (Recommended)
# Clone the repository
git clone https://github.com/quotentiroler/mcp-generator-3.x.git
cd mcp-generator-3.x
# Install dependencies
uv sync
# Verify installation
uv run generate-mcp --help
Install with pip
# Clone the repository
git clone https://github.com/quotentiroler/mcp-generator-3.x.git
cd mcp-generator-3.x
# Create virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
pip install -e .
# Verify installation
generate-mcp --help
๐ Quick Start
1. Generate MCP Server from OpenAPI Spec
# Using local file (default: ./openapi.json)
uv run generate-mcp
# Using custom file
uv run generate-mcp --file ./my-api-spec.yaml
# Download from URL
uv run generate-mcp --url https://petstore3.swagger.io/api/v3/openapi.json
What happens:
- โ Generates Python API client from OpenAPI spec
- โ Auto-discovers undeclared tags from API paths (tag auto-discovery)
- โ Creates modular MCP server modules
- โ Generates authentication middleware
- โ Creates OAuth2 provider
- โ Writes package files and tests
- โ
Outputs to
generated_mcp/directory
Optional Features (Disabled by Default)
By default, the generator creates a minimal, production-ready server. Enable additional features as needed:
# Enable persistent storage (for OAuth tokens, session state)
uv run generate-mcp --enable-storage
# Enable response caching (reduces backend API calls)
uv run generate-mcp --enable-storage --enable-caching
# Enable MCP resources (expose API data as resources)
uv run generate-mcp --enable-resources
# Enable MCP Apps (interactive UI: tables, charts, forms, detail views)
uv run generate-mcp --enable-apps
# Enable MCP Apps with API-specific display tools from response schemas
uv run generate-mcp --enable-apps --generate-ui
# Enable all features
uv run generate-mcp --enable-storage --enable-caching --enable-resources --enable-apps --generate-ui
# Apply an OpenAPI Overlay to enhance descriptions before generation
uv run generate-mcp --overlay my-overlay.yaml
# Auto-generate an overlay from the spec (no manual file needed)
uv run generate-mcp --auto-overlay
# Generate an A2A agent card and adapter alongside the MCP server
uv run generate-mcp --enable-a2a
Available Features:
| Flag | Description | When to Use |
|---|---|---|
--enable-storage |
Persistent storage backend | OAuth refresh tokens, session data, user preferences |
--enable-caching |
Response caching with TTL | Rate-limited APIs, expensive operations, slow endpoints |
--enable-resources |
MCP resource templates | Expose API data for context/retrieval (GET endpoints) |
--enable-apps |
MCP Apps with interactive UI display tools | Rich tables, charts, forms, and detail views in MCP clients |
--generate-ui |
API-specific display tools from response schemas | Auto-generated UI per endpoint (requires --enable-apps) |
--enable-a2a |
A2A agent card + adapter | Expose your MCP server as an A2A-compatible agent |
--overlay PATH |
Apply an OpenAPI Overlay file | Enhance descriptions, add examples before generation |
--auto-overlay |
Auto-generate an overlay from the spec | Quick enrichment without writing an overlay by hand |
Note:
--enable-cachingrequires--enable-storageas it uses the storage backend for cache persistence.
Why disabled by default?
- Keeps generated code simple and focused
- Fewer dependencies to manage
- Easier to understand and customize
- Most APIs work perfectly without these features
The generator will show which features are available at the end of generation with a copy-paste command to re-generate with features enabled.
๐ก Tip: Run uv run generate-mcp --help to see all available options and examples.
2. Register Your MCP Server
# Register the generated server
uv run register-mcp ./generated_mcp
# Verify registration
uv run run-mcp --list
This adds your server to the local registry at ~/.mcp-generator/servers.json so you can easily run it by name.
3. Run Your MCP Server
# Option 1: Run via registry (STDIO mode for local AI clients)
export BACKEND_API_TOKEN="your-api-token-here" # On Windows: set BACKEND_API_TOKEN=...
uv run run-mcp swagger_petstore_openapi
# Option 2: Run via registry (HTTP mode)
uv run run-mcp swagger_petstore_openapi --mode http --port 8000
# Option 3: Run directly with Python
cd generated_mcp
python swagger_petstore_openapi_mcp_generated.py --transport stdio
# Option 4: Run with FastMCP CLI
cd generated_mcp
# Note: Use :create_server to properly compose the server
uv run fastmcp run swagger_petstore_openapi_mcp_generated.py:create_server
# Or with fastmcp.json config:
uv run fastmcp run fastmcp.json
4. Use with AI Clients
Claude Desktop (STDIO Mode)
Add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"my-api": {
"command": "python",
"args": ["/path/to/generated_mcp/swagger_petstore_openapi_mcp_generated.py"],
"env": {
"BACKEND_API_TOKEN": "your-api-token-here"
}
}
}
}
๐ Testing with MCP Inspector
The MCP Inspector is the official debugging tool for MCP servers. It provides both a visual UI and CLI mode for testing your generated servers.
Quick Start with Inspector
# Generate your MCP server first
uv run generate-mcp --file ./openapi.json
# Test with Inspector using FastMCP (recommended)
cd generated_mcp
uv run fastmcp dev swagger_petstore_openapi_mcp_generated.py:create_server
# Or test directly with Python
npx @modelcontextprotocol/inspector python swagger_petstore_openapi_mcp_generated.py
# Or use environment variables
npx @modelcontextprotocol/inspector -e BACKEND_API_TOKEN=your-token python swagger_petstore_openapi_mcp_generated.py
Note: When using
fastmcp devorfastmcp run, always include:create_serverto properly compose the modular server architecture.
The Inspector will:
- ๐ Start your MCP server
- ๐ Open a browser UI at
http://localhost:6274 - ๐ Connect via proxy at
http://localhost:6277 - ๐ Generate a secure session token
Inspector Features for Your Generated Servers
๐ ๏ธ Tool Testing
- List all available tools generated from your OpenAPI spec
- Interactive form-based parameter input
- Real-time response visualization with JSON formatting
- Test OAuth2 authentication flows
๐ฆ Resource Exploration
- Browse API resources hierarchically
- View resource metadata and content
- Test resource subscriptions
๐ฌ Prompt Testing
- Interactive prompt sampling
- Streaming response visualization
- Compare multiple prompt variations
๐ Debugging
- Request/response history
- Visualized error messages
- Real-time server notifications
- Network timing information
CLI Mode for Automation
Perfect for CI/CD and rapid development cycles:
# List available tools
npx @modelcontextprotocol/inspector --cli python swagger_petstore_openapi_mcp_generated.py --method tools/list
# Call a specific tool
npx @modelcontextprotocol/inspector --cli python swagger_petstore_openapi_mcp_generated.py \
--method tools/call \
--tool-name create_pet \
--tool-arg 'name=Fluffy' \
--tool-arg 'status=available'
# Test with environment variables
npx @modelcontextprotocol/inspector --cli \
-e BACKEND_API_TOKEN=your-token \
python swagger_petstore_openapi_mcp_generated.py \
--method tools/list
Testing HTTP/SSE Transports
If your generated server runs in HTTP mode:
# Start your server in HTTP mode
cd generated_mcp
python swagger_petstore_openapi_mcp_generated.py --transport http --port 8000
# Connect Inspector to running server (SSE transport)
npx @modelcontextprotocol/inspector http://localhost:8000/sse
# Or use Streamable HTTP transport
npx @modelcontextprotocol/inspector http://localhost:8000/mcp --transport http
Export Configuration
The Inspector can export your server configuration for use in Claude Desktop or other MCP clients:
- Server Entry Button - Copies a single server config to clipboard
- Servers File Button - Copies complete
mcp.jsonstructure
Example exported config:
{
"mcpServers": {
"my-api": {
"command": "python",
"args": ["swagger_petstore_openapi_mcp_generated.py"],
"env": {
"BACKEND_API_TOKEN": "your-token"
}
}
}
}
Development Workflow
Integrate Inspector into your development cycle:
# 1. Generate server from OpenAPI spec
uv run generate-mcp --file ./openapi.yaml
# 2. Test with Inspector UI (interactive development)
cd generated_mcp
npx @modelcontextprotocol/inspector -e BACKEND_API_TOKEN=test python *_mcp_generated.py
# 3. Automated testing (CI/CD)
npx @modelcontextprotocol/inspector --cli \
-e BACKEND_API_TOKEN=test \
python *_mcp_generated.py \
--method tools/list > tools.json
# 4. Test specific tools
npx @modelcontextprotocol/inspector --cli \
-e BACKEND_API_TOKEN=test \
python *_mcp_generated.py \
--method tools/call \
--tool-name get_user \
--tool-arg 'user_id=123'
Tips for Testing Generated Servers
- JWT Validation: Use Inspector to test JWT authentication flows with
--validate-tokens - OAuth2 Flows: Inspector supports bearer token auth for testing OAuth2
- Scope Testing: Verify scope enforcement in your OAuth2 configuration
- Error Handling: Inspector visualizes error responses and stack traces
- Performance: Use Inspector's timing metrics to identify slow operations
For more details, see the Inspector documentation.
๐จ MCP Apps โ Interactive UI Display Tools
MCP Apps bring rich, interactive UI to MCP tool responses. Instead of returning raw JSON, your tools render as tables, charts, forms, and detail views in supported MCP clients.
How It Works
--enable-appsadds curated, API-agnostic display tools (show_table,show_detail,show_chart,show_form,show_comparison) that the LLM fills with data from any API response--generate-uiadditionally introspects your OpenAPI response schemas and generates per-endpoint display tools (e.g.,show_pet_table,show_pet_detail) with columns, badges, and data types pre-configured
# Curated display tools only (works with any API)
uv run generate-mcp --enable-apps
# + API-specific display tools auto-generated from response schemas
uv run generate-mcp --enable-apps --generate-ui
Display Tool Types
| Tool | Description | Use Case |
|---|---|---|
show_table |
Interactive data table with sortable columns | List endpoints, search results |
show_detail |
Card layout with key-value fields and badges | Single-record views (user profile, order details) |
show_chart |
Line, bar, area, and pie charts | Analytics, metrics, time-series data |
show_form |
Input form with validation | Create/update operations |
show_comparison |
Side-by-side comparison cards | Comparing records or options |
Requirements
MCP Apps requires prefab-ui (the FastMCP Apps rendering library):
pip install "fastmcp[apps]"
If prefab-ui is not installed, display tools gracefully fall back to returning structured JSON โ no runtime errors.
๐งฐ CLI reference
This project installs three CLI commands. Here's a quick cheatsheet.
generate-mcp
- Description: Generate a FastMCP 3.x server from an OpenAPI 3.0.x/3.1.x spec.
- Options:
- --file
- --url Download spec from URL (overrides --file)
- Examples:
# Use local file (default)
uv run generate-mcp
# Custom file
uv run generate-mcp --file ./my-api.yaml
# From URL
uv run generate-mcp --url https://petstore3.swagger.io/api/v3/openapi.json
register-mcp
- Description: Manage the local registry at ~/.mcp-generator/servers.json
- Subcommands:
- add
- list Show all registered servers
- --json Output as JSON for scripting/automation
- remove Unregister a server by name
- export Export server metadata as server.json for MCP Registry publishing
- -o, --output Write to file (default: stdout)
- Examples:
# Add (explicit)
uv run register-mcp add ./generated_mcp
# Add (implicit)
uv run register-mcp ./generated_mcp
# List registered servers
uv run register-mcp list
# List as JSON
uv run register-mcp list --json
# Remove by name
uv run register-mcp remove swagger_petstore_openapi
# Export server metadata for publishing
uv run register-mcp export swagger_petstore_openapi -o server.json
run-mcp
- Description: Run a registered server by name.
- Flags:
- --list List registered servers and exit
- --mode/--transport stdio | http (default: stdio)
- --host HTTP host (default: 0.0.0.0)
- --port HTTP port (default: 8000)
- --validate-tokens Enable JWT validation (HTTP mode)
- Examples:
# List servers
uv run run-mcp --list
# Run via STDIO (Linux/macOS)
export BACKEND_API_TOKEN="your-api-token" && uv run run-mcp swagger_petstore_openapi
# Run via STDIO (Windows PowerShell)
powershell
$env:BACKEND_API_TOKEN = "your-api-token"
uv run run-mcp swagger_petstore_openapi
# Run via HTTP
uv run run-mcp swagger_petstore_openapi --mode http --port 8000
# HTTP with JWT validation
uv run run-mcp swagger_petstore_openapi --mode http --port 8000 --validate-tokens
Notes:
- The registry file lives at ~/.mcp-generator/servers.json
- run-mcp forwards these flags to the generated serverโs entry point.
- You can also run the generated script directly: python _mcp_generated.py
Internal registry (local)
Use register-mcp to quickly create a local internal registry of MCP servers you generate. Entries live in ~/.mcp-generator/servers.json; add/list/remove in seconds, and run-mcp lets you start servers by name. You can run multiple servers sideโbyโside (e.g., different HTTP ports) for a smooth developer workflow.
Publish to a self-hosted MCP Registry
You can run your own MCP Registry (open source) and publish your generated servers to it:
- Deploy the official Registry service on your infra (Docker Compose/Kubernetes). Configure TLS, database (PostgreSQL), and a public base URL.
- Configure authentication/ownership verification: either set up GitHub OAuth/OIDC in the Registry, or use DNS/HTTP challenges to prove domain ownership for your namespace.
- Make your MCP server reachable over HTTP and provide valid server metadata (server.json) per the Registry schema.
- Use the publisher CLI to point at your Registryโs base URL, authenticate, and publish your server. After validation, it becomes discoverable via your Registryโs API/UI.
Note: This project does not (yet) auto-publish. The local per-user registry (~/.mcp-generator/servers.json) is for development convenience; publishing to a central catalog is an optional, separate step.
OAuth2 Support
Automatically generates OAuth2 provider when OpenAPI spec contains OAuth2 security schemes.
Supported Flows:
- Implicit flow
- Authorization code flow
- Client credentials flow
- Password flow
Features:
- Scope extraction and validation
- Token introspection
- JWKS-based JWT verification
- Scope enforcement middleware
JWT Validation
When --validate-tokens is enabled:
- Token Extraction: Extracts JWT from
Authorizationheader - JWKS Discovery: Auto-discovers JWKS endpoint from OpenAPI spec or uses standard well-known path
- Signature Verification: Validates JWT signature using public key
- Claims Validation: Checks expiration, issuer, audience
- Scope Enforcement: Verifies required scopes for operations
- Identity Injection: Makes user identity available to tools
Configuration:
The JWKS URI, issuer, and audience are automatically extracted from your OpenAPI specification's security schemes during generation. If not specified in the OpenAPI spec, sensible defaults are used:
- JWKS URI:
{backend_url}/.well-known/jwks.json - Issuer:
{backend_url} - Audience:
backend-api
Simply enable JWT validation when running:
python server_generated.py --transport http --validate-tokens
Or set as default in fastmcp.json:
{
"middleware": {
"config": {
"authentication": {
"validate_tokens": true
}
}
}
}
Note: All JWT configuration is baked into the generated code - no environment variables needed!
โ๏ธ Configuration
Tool Name Customization
Edit mcp_generator/config.py:
# Abbreviations for long names
TOOL_NAME_ABBREVIATIONS = {
'healthcare': 'hc',
'organization': 'org',
}
# Complete overrides
TOOL_NAME_OVERRIDES = {
'list_healthcare_users_by_role': 'list_users_by_role',
'create_smart_app_registration': 'register_smart_app',
}
# Maximum tool name length (MCP/OpenAI limit)
MAX_TOOL_NAME_LENGTH = 64
Code Quality
# Format code
uv run ruff format .
# Lint code
uv run ruff check .
# Type checking
uv run mypy mcp_generator/
Project Commands
# Generate MCP server from example
uv run generate-mcp --file openapi.yaml
# Validate OpenAPI spec
uv run python mcp_generator/scripts/validate_openapi.py
# Generate JWT keypair for testing
uv run python mcp_generator/scripts/generate_jwt_keypair.py
๐ Examples
Example 1: Swagger Petstore
# Generate from Petstore API
uv run generate-mcp --url https://petstore3.swagger.io/api/v3/openapi.json
# Run the server
cd generated_mcp
python swagger_petstore_openapi_mcp_generated.py
Example 2: GitHub API
# Download GitHub OpenAPI spec
uv run generate-mcp --url https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.json
# Outputs: 300+ tools for GitHub API operations
๐ค Contributing
Contributions are welcome! Here's how to contribute:
Reporting Bugs
- Check existing issues: https://github.com/quotentiroler/mcp-generator-3.x/issues
- Create detailed bug report with:
- OpenAPI spec (sanitized/minimal example)
- Full error message and stack trace
- Steps to reproduce
- Expected vs actual behavior
Suggesting Features
- Open a feature request issue
- Describe the use case and benefit
- Provide examples if applicable
Submitting Pull Requests
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Make your changes
- Run tests:
uv run pytest - Format code:
uv run ruff format . - Commit:
git commit -m 'Add amazing feature' - Push:
git push origin feature/amazing-feature - Open a Pull Request
Development Guidelines
- Follow existing code style (Ruff formatting)
- Add tests for new features
- Update documentation as needed
- Keep commits focused and descriptive
๐ License
This project is licensed under the Apache License 2.0.
What This Means:
โ You can:
- Use this software for any purpose (commercial or non-commercial)
- Modify the source code
- Distribute the software
- Include it in proprietary software
- Use it in SaaS applications
- Patent protection is granted
โ ๏ธ You must:
- Include the original license and copyright notice
- State significant changes made to the code
- Include a copy of the Apache 2.0 license in your distribution
โ You cannot:
- Use the project's trademarks without permission
- Hold the authors liable
Why Apache 2.0?
Apache 2.0 is a permissive license that promotes wide adoption while providing patent protection. It's business-friendly, widely accepted by enterprises, and commonly used for development tools and code generators. This license allows you to use MCP Generator 3.x in your projects without worrying about copyleft requirements.
Generated Code: The code generated by this tool is NOT considered a derivative work of the generator itself. You may license your generated MCP servers however you choose.
For the full license text, see LICENSE or visit https://www.apache.org/licenses/LICENSE-2.0
๐ Acknowledgments
- FastMCP: Built on the excellent FastMCP 3.x framework
- OpenAPI Generator: Uses OpenAPI Generator for client generation
- Model Context Protocol: Implements the MCP specification
- Anthropic: For the MCP standard and Claude Desktop integration
If you find this project useful, please consider giving it a star! โญ
It helps others discover the tool and motivates continued development.
Made with โค๏ธ
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_generator-3.2.1.tar.gz.
File metadata
- Download URL: mcp_generator-3.2.1.tar.gz
- Upload date:
- Size: 411.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7889949d60cb231eb5178f551fc792300e856ed2ae307c2a68a1f50f55d8ff8f
|
|
| MD5 |
401cda3c7d9f2e8f719e856b41b4adf6
|
|
| BLAKE2b-256 |
40c985a70b31692861b544cdfbca2dd41a0864e25eedc36710f6d6a05f9a7b03
|
Provenance
The following attestation bundles were made for mcp_generator-3.2.1.tar.gz:
Publisher:
publish.yml on quotentiroler/mcp-generator-3.x
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_generator-3.2.1.tar.gz -
Subject digest:
7889949d60cb231eb5178f551fc792300e856ed2ae307c2a68a1f50f55d8ff8f - Sigstore transparency entry: 1342982416
- Sigstore integration time:
-
Permalink:
quotentiroler/mcp-generator-3.x@d9ecbc5848506bd1127fe81868a5c2f2c86f2346 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/quotentiroler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d9ecbc5848506bd1127fe81868a5c2f2c86f2346 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file mcp_generator-3.2.1-py3-none-any.whl.
File metadata
- Download URL: mcp_generator-3.2.1-py3-none-any.whl
- Upload date:
- Size: 174.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b138ec04ef733b03ce595bba60a24df4586eb27e3fb83d41872c065cf9744afd
|
|
| MD5 |
8aa9a103a921d2b7a0bb29e262104a87
|
|
| BLAKE2b-256 |
c7438dab3aa40e7c78f91b5ef044f944c92758570df652539e33db8b774c3f58
|
Provenance
The following attestation bundles were made for mcp_generator-3.2.1-py3-none-any.whl:
Publisher:
publish.yml on quotentiroler/mcp-generator-3.x
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_generator-3.2.1-py3-none-any.whl -
Subject digest:
b138ec04ef733b03ce595bba60a24df4586eb27e3fb83d41872c065cf9744afd - Sigstore transparency entry: 1342982428
- Sigstore integration time:
-
Permalink:
quotentiroler/mcp-generator-3.x@d9ecbc5848506bd1127fe81868a5c2f2c86f2346 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/quotentiroler
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d9ecbc5848506bd1127fe81868a5c2f2c86f2346 -
Trigger Event:
workflow_dispatch
-
Statement type: