Explore OpenAPI Specs Efficiently
An MCP server exposing OpenAPI and Swagger specs as token-efficient Resource Templates for on-demand exploration.
1.3.4Add to Favorites
Why it matters
Access and explore OpenAPI (v3.0) and Swagger (v2.0) specifications through MCP Resources. This allows for token-efficient querying of API details without loading entire files into context.
Outcomes
What it gets done
Query API structure and details via intuitive URIs.
Retrieve information on paths, operations, and components.
Support for local and remote OpenAPI/Swagger files.
Automatic conversion of Swagger v2.0 to OpenAPI v3.0.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-openapi-schema-explorer | bash Overview
OpenAPI Schema Explorer MCP Server
An MCP server that exposes OpenAPI and Swagger specs as token-efficient Resource Templates for paths, methods, and components. Use it when a client needs to browse a large API spec's structure on demand instead of loading the whole file into context.
What it does
An MCP server that gives token-efficient access to OpenAPI (v3.0) and Swagger (v2.0) specifications through MCP Resource Templates rather than Tools, letting clients explore large API specs (paths, methods, components) without loading the entire file into an LLM's context window. Swagger v2.0 specs are automatically converted to OpenAPI v3.0 on load, and it supports both local file paths and remote HTTP/HTTPS URLs.
When to use - and when NOT to
Use this when an MCP client (Claude Desktop, Cline, Windsurf, Claude Code) needs to browse a large OpenAPI/Swagger spec's structure - top-level fields, a specific path's methods, or a named component's schema - on demand instead of dumping the whole spec into context. It is built specifically around read-only Resource Templates rather than executable Tools, so it is not the right choice if you specifically need Tool-style access to an OpenAPI spec (other MCP servers cover that pattern); calling resources/list here returns an empty list by design since it only exposes templates, discoverable via resources/templates/list.
Capabilities
openapi://{field}: top-level fields of the spec (e.g.info,servers,tags), or lists the contents ofpaths/components.openapi://paths/{path}: lists the HTTP methods available for a specific API path (path must be URL-encoded).openapi://paths/{path}/{method*}: detailed spec for one or more HTTP methods on a path, comma-separated for multiple (e.g.get,post).openapi://components/{type}: lists all defined component names of a type (e.g.schemas,responses,parameters) with short descriptions.openapi://components/{type}/{name*}: detailed spec for one or more named components (e.g.User,Order).- Output format configurable as JSON (default), YAML, or minified JSON; internal
$refs are transformed into clickable MCP URIs; the server name reflects the loaded spec'sinfo.title.
How to install
Recommended via npx, with no separate install step needed:
{
"mcpServers": {
"My API Spec (npx)": {
"command": "npx",
"args": [
"-y",
"mcp-openapi-schema-explorer@latest",
"<path-or-url-to-spec>",
"--output-format",
"yaml"
],
"env": {}
}
}
}
It can also run via the official Docker image kadykov/mcp-openapi-schema-explorer, a global npm install -g mcp-openapi-schema-explorer, or a local clone built with npm install && npm run build and run via node. Add one mcpServers entry per specification to explore multiple APIs at once. Versioning and package publishing are automated via semantic-release based on Conventional Commits, and the project is MIT licensed.
Who it's for
Developers and AI-agent builders working against large OpenAPI or Swagger specifications who need structured, on-demand exploration of paths, operations, and schema components without pre-enumerating every path or loading the entire spec into an LLM's context window.
Source README
MCP OpenAPI Schema Explorer
An MCP (Model Context Protocol) server that provides token-efficient access to OpenAPI (v3.0) and Swagger (v2.0) specifications via MCP Resource Templates.
Project Goal
The primary goal of this project is to allow MCP clients (like Cline or Claude Desktop) to explore the structure and details of large OpenAPI specifications without needing to load the entire file into an LLM's context window. It achieves this by exposing parts of the specification through MCP Resource Templates, which provide parameterized access patterns for read-only data exploration.
This server supports loading specifications from both local file paths and remote HTTP/HTTPS URLs. Swagger v2.0 specifications are automatically converted to OpenAPI v3.0 upon loading.
Note: This server provides resource templates (not pre-enumerated resources). MCP clients access these templates through the
resources/templates/listprotocol method. For more information about resource templates, see the MCP Resource Templates documentation.
Why MCP Resource Templates?
The Model Context Protocol defines both Resources and Tools.
- Resources: Represent data sources (like files, API responses). They are ideal for read-only access and exploration by MCP clients.
- Resource Templates: A special type of resource that uses parameterized URIs (e.g.,
openapi://paths/{path}/{method}), allowing dynamic access without pre-enumerating all possible values.
- Resource Templates: A special type of resource that uses parameterized URIs (e.g.,
- Tools: Represent executable actions or functions, often used by LLMs to perform tasks or interact with external systems.
While other MCP servers exist that provide access to OpenAPI specs via Tools, this project specifically focuses on providing access via Resource Templates. This approach is particularly efficient for large APIs because:
- It doesn't require pre-enumerating thousands of potential paths and components
- Clients can discover available resources dynamically using the template patterns
- It provides structured, on-demand access to specific parts of the specification
For more details on MCP clients and their capabilities, see the MCP Client Documentation.
Quick Start Guides by Client
- Claude Code - Anthropic's CLI tool for coding with Claude
- Claude Desktop, Cline, Windsurf - See installation instructions below
Installation
For the recommended usage methods (npx and Docker, described below), no separate installation step is required. Your MCP client will download the package or pull the Docker image automatically based on the configuration you provide.
However, if you prefer or need to install the server explicitly, you have two options:
Global Installation: You can install the package globally using npm:
npm install -g mcp-openapi-schema-explorerSee Method 3 below for how to configure your MCP client to use a globally installed server.
Local Development/Installation: You can clone the repository and build it locally:
git clone https://github.com/kadykov/mcp-openapi-schema-explorer.git cd mcp-openapi-schema-explorer npm install npm run buildSee Method 4 below for how to configure your MCP client to run the server from your local build using
node.
Adding the Server to your MCP Client
This server is designed to be run by MCP clients (like Claude Desktop, Windsurf, Cline, etc.). To use it, you add a configuration entry to your client's settings file (often a JSON file). This entry tells the client how to execute the server process (e.g., using npx, docker, or node). The server itself doesn't require separate configuration beyond the command-line arguments specified in the client settings entry.
Below are the common methods for adding the server entry to your client's configuration.
Method 1: npx (Recommended)
Using npx is recommended as it avoids global/local installation and ensures the client uses the latest published version.
Example Client Configuration Entry (npx Method):
Add the following JSON object to the mcpServers section of your MCP client's configuration file. This entry instructs the client on how to run the server using npx:
{
"mcpServers": {
"My API Spec (npx)": {
"command": "npx",
"args": [
"-y",
"mcp-openapi-schema-explorer@latest",
"<path-or-url-to-spec>",
"--output-format",
"yaml"
],
"env": {}
}
}
}
Configuration Notes:
- Replace
"My API Spec (npx)"with a unique name for this server instance in your client. - Replace
<path-or-url-to-spec>with the absolute local file path or full remote URL of your specification. - The
--output-formatis optional (json,yaml,json-minified), defaulting tojson. - To explore multiple specifications, add separate entries in
mcpServers, each with a unique name and pointing to a different spec.
Method 2: Docker
You can instruct your MCP client to run the server using the official Docker image: kadykov/mcp-openapi-schema-explorer.
Example Client Configuration Entries (Docker Method):
Add one of the following JSON objects to the mcpServers section of your MCP client's configuration file. These entries instruct the client on how to run the server using docker run:
Remote URL: Pass the URL directly to
docker run.Using a Remote URL:
{ "mcpServers": { "My API Spec (Docker Remote)": { "command": "docker", "args": [ "run", "--rm", "-i", "kadykov/mcp-openapi-schema-explorer:latest", "<remote-url-to-spec>" ], "env": {} } } }Using a Local File: (Requires mounting the file into the container)
{ "mcpServers": { "My API Spec (Docker Local)": { "command": "docker", "args": [ "run", "--rm", "-i", "-v", "/full/host/path/to/spec.yaml:/spec/api.yaml", "kadykov/mcp-openapi-schema-explorer:latest", "/spec/api.yaml", "--output-format", "yaml" ], "env": {} } } }Important: Replace
/full/host/path/to/spec.yamlwith the correct absolute path on your host machine. The path/spec/api.yamlis the corresponding path inside the container.
Method 3: Global Installation (Less Common)
If you have installed the package globally using npm install -g, you can configure your client to run it directly.
# Run this command once in your terminal
npm install -g mcp-openapi-schema-explorer
Example Client Configuration Entry (Global Install Method):
Add the following entry to your MCP client's configuration file. This assumes the mcp-openapi-schema-explorer command is accessible in the client's execution environment PATH.
{
"mcpServers": {
"My API Spec (Global)": {
"command": "mcp-openapi-schema-explorer",
"args": ["<path-or-url-to-spec>", "--output-format", "yaml"],
"env": {}
}
}
}
- Ensure the
command(mcp-openapi-schema-explorer) is accessible in the PATH environment variable used by your MCP client.
Method 4: Local Development/Installation
This method is useful if you have cloned the repository locally for development or to run a modified version.
Setup Steps (Run once in your terminal):
- Clone the repository:
git clone https://github.com/kadykov/mcp-openapi-schema-explorer.git - Navigate into the directory:
cd mcp-openapi-schema-explorer - Install dependencies:
npm install - Build the project:
npm run build(orjust build)
Example Client Configuration Entry (Local Development Method):
Add the following entry to your MCP client's configuration file. This instructs the client to run the locally built server using node.
{
"mcpServers": {
"My API Spec (Local Dev)": {
"command": "node",
"args": [
"/full/path/to/cloned/mcp-openapi-schema-explorer/dist/src/index.js",
"<path-or-url-to-spec>",
"--output-format",
"yaml"
],
"env": {}
}
}
}
Important: Replace /full/path/to/cloned/mcp-openapi-schema-explorer/dist/src/index.js with the correct absolute path to the built index.js file in your cloned repository.
Features
- MCP Resource Template Access: Explore OpenAPI specs via parameterized URI templates (
openapi://info,openapi://paths/{path}/{method},openapi://components/{type}/{name}). - OpenAPI v3.0 & Swagger v2.0 Support: Loads both formats, automatically converting v2.0 to v3.0.
- Local & Remote Files: Load specs from local file paths or HTTP/HTTPS URLs.
- Token-Efficient: Designed to minimize token usage for LLMs by providing structured access.
- Multiple Output Formats: Get detailed views in JSON (default), YAML, or minified JSON (
--output-format). - Dynamic Server Name: Server name in MCP clients reflects the
info.titlefrom the loaded spec. - Reference Transformation: Internal
$refs (#/components/...) are transformed into clickable MCP URIs.
Available MCP Resources
This server exposes the following MCP resource templates for exploring the OpenAPI specification.
Important: This server provides resource templates, not pre-enumerated resources. When you use an MCP client:
- The client calls
resources/templates/listto discover the available template patterns- You then construct specific URIs by filling in the template parameters (e.g., replacing
{path}withusers%2F%7Bid%7D)- The client uses
resources/readwith your constructed URI to fetch the actual contentIf you call
resources/list(without "templates"), you will get an empty list-this is expected behavior.
Understanding Multi-Value Parameters (*)
Some resource templates include parameters ending with an asterisk (*), like {method*} or {name*}. This indicates that the parameter accepts multiple comma-separated values. For example, to request details for both the GET and POST methods of a path, you would use a URI like openapi://paths/users/get,post. This allows fetching details for multiple items in a single request.
Resource Templates:
openapi://{field}- Description: Accesses top-level fields of the OpenAPI document (e.g.,
info,servers,tags) or lists the contents ofpathsorcomponents. The specific available fields depend on the loaded specification. - Example:
openapi://info - Output:
text/plainlist forpathsandcomponents; configured format (JSON/YAML/minified JSON) for other fields. - Completions: Provides dynamic suggestions for
{field}based on the actual top-level keys found in the loaded spec.
- Description: Accesses top-level fields of the OpenAPI document (e.g.,
openapi://paths/{path}- Description: Lists the available HTTP methods (operations) for a specific API path.
- Parameter:
{path}- The API path string. Must be URL-encoded (e.g.,/users/{id}becomesusers%2F%7Bid%7D). - Example:
openapi://paths/users%2F%7Bid%7D - Output:
text/plainlist of methods. - Completions: Provides dynamic suggestions for
{path}based on the paths found in the loaded spec (URL-encoded).
openapi://paths/{path}/{method*}- Description: Gets the detailed specification for one or more operations (HTTP methods) on a specific API path.
- Parameters:
{path}- The API path string. Must be URL-encoded.{method*}- One or more HTTP methods (e.g.,get,post,get,post). Case-insensitive.
- Example (Single):
openapi://paths/users%2F%7Bid%7D/get - Example (Multiple):
openapi://paths/users%2F%7Bid%7D/get,post - Output: Configured format (JSON/YAML/minified JSON).
- Completions: Provides dynamic suggestions for
{path}. Provides static suggestions for{method*}(common HTTP verbs like GET, POST, PUT, DELETE, etc.).
openapi://components/{type}- Description: Lists the names of all defined components of a specific type (e.g.,
schemas,responses,parameters). The specific available types depend on the loaded specification. Also provides a short description for each listed type. - Example:
openapi://components/schemas - Output:
text/plainlist of component names with descriptions. - Completions: Provides dynamic suggestions for
{type}based on the component types found in the loaded spec.
- Description: Lists the names of all defined components of a specific type (e.g.,
openapi://components/{type}/{name*}- Description: Gets the detailed specification for one or more named components of a specific type.
- Parameters:
{type}- The component type.{name*}- One or more component names (e.g.,User,Order,User,Order). Case-sensitive.
- Example (Single):
openapi://components/schemas/User - Example (Multiple):
openapi://components/schemas/User,Order - Output: Configured format (JSON/YAML/minified JSON).
- Completions: Provides dynamic suggestions for
{type}. Provides dynamic suggestions for{name*}only if the loaded spec contains exactly one component type overall (e.g., onlyschemas). This limitation exists because the MCP SDK currently doesn't support providing completions scoped to the selected{type}; providing all names across all types could be misleading.
Releases
This project uses semantic-release for automated version management and package publishing based on Conventional Commits.
Future Plans
(Future plans to be determined)
FAQ
Common questions
Trust
How it checks out
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.