MCP server for exposing OpenAPI specifications as MCP tools.
Project description
mcp-openapi-proxy
mcp-openapi-proxy is a Python package that implements a Model Context Protocol (MCP) server, designed to dynamically expose REST APIs—defined by OpenAPI specifications—as MCP tools. This facilitates seamless integration of OpenAPI-described APIs into MCP-based workflows.
Overview
The package offers two operational modes:
- Low-Level Mode (Default): Dynamically registers tools corresponding to all API endpoints specified in an OpenAPI document (e.g.,
/chat/completionsbecomeschat_completions()). - FastMCP Mode (Simple Mode): Provides a streamlined approach, exposing a predefined set of tools (e.g.,
list_functions()andcall_functions()) based on static configurations.
Features
- Dynamic Tool Generation: Automatically creates MCP tools from OpenAPI endpoint definitions.
- Simple Mode Option: Offers a static configuration alternative via FastMCP mode.
- OpenAPI Specification Support: Compatible with OpenAPI v3, with potential support for v2.
- Flexible Filtering: Allows endpoint filtering through whitelisting by paths or other criteria.
- MCP Integration: Seamlessly integrates with MCP ecosystems for invoking REST APIs as tools.
Installation
Install the package directly from PyPI using the following command:
uvx mcp-openapi-proxy
MCP Ecosystem Integration
To incorporate mcp-openapi-proxy into your MCP ecosystem, configure it within your mcpServers settings. Below is a generic example:
{
"mcpServers": {
"mcp-openapi-proxy": {
"command": "uvx",
"args": ["mcp-openapi-proxy"],
"env": {
"OPENAPI_SPEC_URL": "${OPENAPI_SPEC_URL}",
"API_KEY": "",
"TOOL_WHITELIST": "",
"TOOL_NAME_PREFIX": ""
}
}
}
}
Refer to the Examples section below for practical configurations tailored to specific APIs.
Modes of Operation
FastMCP Mode (Simple Mode)
- Enabled by: Setting the environment variable
OPENAPI_SIMPLE_MODE=true. - Description: Exposes a fixed set of tools derived from specific OpenAPI endpoints, as defined in the code.
- Configuration: Relies on environment variables to specify tool behavior.
Low-Level Mode (Default)
- Description: Automatically registers all valid API endpoints from the provided OpenAPI specification as individual tools.
- Tool Naming: Derives tool names from normalized OpenAPI paths and methods.
- Behavior: Generates tool descriptions from OpenAPI operation summaries and descriptions.
Environment Variables
OPENAPI_SPEC_URL: (Required) The URL to the OpenAPI specification JSON file.OPENAPI_LOGFILE_PATH: (Optional) Specifies the log file path.OPENAPI_SIMPLE_MODE: (Optional) Set totrueto enable FastMCP mode.TOOL_WHITELIST: (Optional) A comma-separated list of endpoint paths to expose as tools.TOOL_NAME_PREFIX: (Optional) A prefix to prepend to all tool names.
Examples
This section will expand incrementally with new examples added periodically. Each example demonstrates how to configure mcp-openapi-proxy for a specific API, starting with GetZep, which leverages a free cloud API accessible with a GetZep API key.
GetZep Example
GetZep provides a free cloud API for memory management, making it an excellent starting point for testing. Obtain an API key from GetZep's documentation.
1. Verify the OpenAPI Specification
Retrieve the GetZep OpenAPI specification:
curl https://raw.githubusercontent.com/matthewhand/mcp-openapi-proxy/refs/heads/main/examples/getzep.swagger.json
Ensure the response is a valid OpenAPI JSON document.
2. Configure mcp-openapi-proxy for GetZep
Update your MCP ecosystem configuration as follows:
{
"mcpServers": {
"getzep": {
"command": "uvx",
"args": ["mcp-openapi-proxy"],
"env": {
"OPENAPI_SPEC_URL": "https://raw.githubusercontent.com/matthewhand/mcp-openapi-proxy/refs/heads/main/examples/getzep.swagger.json",
"TOOL_WHITELIST": "/sessions,/sessions/{sessionId},/sessions-ordered,/sessions/{sessionId}/memory,/sessions/{sessionId}/messages",
"API_KEY": "<your_getzep_api_key>",
"API_AUTH_TYPE": "Api-Key",
"SERVER_URL_OVERRIDE": "https://api.getzep.com",
"TOOL_NAME_PREFIX": "getzep"
}
}
}
}
- OPENAPI_SPEC_URL: Points to the GetZep Swagger specification.
- TOOL_WHITELIST: Limits tools to specific endpoints (e.g.,
/sessions,/sessions/{sessionId}/memory). - API_KEY: Your GetZep API key (replace
<your_getzep_api_key>). - API_AUTH_TYPE: Specifies
Api-Keyfor GetZep’s authentication. - SERVER_URL_OVERRIDE: Sets the base URL to GetZep’s API.
- TOOL_NAME_PREFIX: Prepends
getzepto tool names (e.g.,getzep_sessions).
3. Resulting Tools
This configuration generates tools such as:
[
{"name": "getzep_sessions", "description": "List all sessions"},
{"name": "getzep_sessions_sessionid", "description": "Get a specific session by ID"},
{"name": "getzep_sessions_ordered", "description": "List sessions in order"},
{"name": "getzep_sessions_sessionid_memory", "description": "Retrieve memory for a session"},
{"name": "getzep_sessions_sessionid_messages", "description": "Get messages for a session"}
]
4. Testing
Run the server with uvx to verify:
OPENAPI_SPEC_URL="https://raw.githubusercontent.com/matthewhand/mcp-openapi-proxy/refs/heads/main/examples/getzep.swagger.json" API_KEY="<your_getzep_api_key>" uvx mcp-openapi-proxy
Additional examples (e.g., OpenWebUI, Fly.io) will be added incrementally to this section over time.
Troubleshooting
- Missing OPENAPI_SPEC_URL: Ensure the environment variable is set to a valid OpenAPI JSON URL.
- Invalid Specification: Confirm the OpenAPI document adheres to the standard.
- Tool Filtering Issues: Verify
TOOL_WHITELISTcorrectly specifies desired endpoints. - Logging: Check logs at
OPENAPI_LOGFILE_PATH(if set) for diagnostic details. - Installation Verification: Test the server directly:
uvx mcp-openapi-proxy
License
This project is licensed under the MIT License. See the LICENSE file for details.
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_openapi_proxy-0.1.1741381477.tar.gz.
File metadata
- Download URL: mcp_openapi_proxy-0.1.1741381477.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f365e596e64fa61c07074c98e476e1ef74c482fba511a83c9d9eecfd02b859a3
|
|
| MD5 |
5e8f8764b42f4dea498c61f0ef077232
|
|
| BLAKE2b-256 |
dc778ccc158e970755700540849d5aee23df8578e30207cea5a0fb37cdc3c01a
|
File details
Details for the file mcp_openapi_proxy-0.1.1741381477-py3-none-any.whl.
File metadata
- Download URL: mcp_openapi_proxy-0.1.1741381477-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66a96e5b5e3a0d2446ee65563af9666367466cbf55b75ae6dd96c1fa4ecd3532
|
|
| MD5 |
927a10f26b791d5d56ada4f5f3e44748
|
|
| BLAKE2b-256 |
4eaaaf42e6c851f66f36762fab1d63ae17d04cd3762f2ed562ce4cc912bfa27d
|