README
¶
MCP OpenAPI Explorer
A Model Context Protocol (MCP) server that analyzes OpenAPI specifications and provides context about interacting with APIs.
Features
- Load OpenAPI specifications from various sources (GitHub, local files, HTTP URLs)
- Parse and provide comprehensive context about API endpoints
- Support for the Model Context Protocol (MCP) via stdin/stdout
- Provide intelligent context about API interactions to LLMs
- Support for both JSON and YAML OpenAPI specifications
- Built with Cobra CLI for easy command-line usage
- Structured logging with Zap
Getting Started
Prerequisites
- Go 1.24.2 or later
- Docker (optional)
Installation
- Clone the repository:
git clone https://github.com/krypticlabs/mcp-openapi-explorer.git
cd mcp-openapi-explorer
- Install dependencies:
go mod download
- Build:
go build
Configuration
MCP OpenAPI Explorer can be configured using a YAML configuration file. You can export a default configuration file using:
./mcp-openapi-explorer config export config.yaml
Then, modify the configuration file to suit your needs and run the server with:
./mcp-openapi-explorer --config config.yaml serve
Creating a GitHub Token
If you need to access private GitHub repositories or want to avoid rate limits when loading OpenAPI specs from GitHub, you'll need a GitHub token:
- Go to GitHub Settings
- Select Developer settings from the left sidebar
- Select Personal access tokens → Tokens (classic)
- Click Generate new token → Generate new token (classic)
- Give your token a descriptive name
- Select the appropriate scopes:
- For public repositories:
public_repo - For private repositories:
repo
- For public repositories:
- Click Generate token
- Copy the token (you won't be able to see it again!)
Add this token to your configuration file or provide it via the environment variable MCP_OPENAPI_GITHUB_TOKEN.
Configuring MCP Clients
You can integrate MCP OpenAPI Explorer with MCP clients by adding it to your MCP client configuration. This allows the client to automatically start and communicate with the MCP server.
Download the Binary
Download the appropriate binary for your platform from the GitHub Releases page.
MCP Client Configuration
Add the MCP OpenAPI Explorer to your MCP client configuration file (typically ~/.mcp/config.json or similar):
{
"mcpServers": {
"openapi-explorer": {
"command": "/path/to/mcp-openapi-explorer",
"args": ["serve", "--config", "~/.mcp-openapi.yaml"],
"environment": {
"MCP_OPENAPI_GITHUB_TOKEN": "your_github_token"
}
}
}
}
Replace /path/to/mcp-openapi-explorer with the actual path to the binary on your system. The environment section is optional and can be used to set environment variables for the MCP server.
Modern Configuration with MCP Manager
For users of the latest MCP clients with MCP Manager support:
{
"managers": {
"mcp": {
"servers": {
"openapi-explorer": {
"binary": {
"path": "/path/to/mcp-openapi-explorer",
"args": ["serve", "--config", "~/.mcp-openapi.yaml"]
},
"autoStart": true,
"capabilities": ["openapi-exploration"],
"metadata": {
"description": "OpenAPI Explorer for interacting with API documentation"
}
}
}
}
}
}
For containerized deployments, you can use:
{
"managers": {
"mcp": {
"servers": {
"openapi-explorer": {
"container": {
"image": "ghcr.io/krypticlabs/mcp-openapi-explorer:latest",
"args": ["serve", "--config", "/app/config.yaml"],
"volumes": [
"~/.mcp-openapi.yaml:/app/config.yaml"
],
"environment": {
"MCP_OPENAPI_GITHUB_TOKEN": "${GITHUB_TOKEN}"
}
},
"autoStart": true
}
}
}
}
}
This configuration automatically starts the MCP OpenAPI Explorer when the MCP client is launched, making it available to your models.
MCP Usage
The MCP server operates via stdin/stdout, which is the preferred approach for integrating with LLMs. This avoids networking complexities and works well with various LLM integrations.
Start the server
./mcp-openapi-explorer serve
Options:
-v, --verbose- Enable verbose output-c, --config string- Path to configuration file
GitHub Repository Support
You can load OpenAPI specifications directly from GitHub repositories, including private ones with a token:
# Configure GitHub token in your config file
./mcp-openapi-explorer config export config.yaml
# Edit config.yaml to add your GitHub token and specs to load
# Then run the server with your config
./mcp-openapi-explorer --config config.yaml serve
Interacting with the MCP server
You can interact with the MCP server by sending JSON-RPC messages to its stdin:
Initialize the MCP connection
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test-script","version":"1.0.0"}}}' | ./mcp-openapi-explorer serve
List available tools
echo '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' | ./mcp-openapi-explorer serve
Load an OpenAPI specification
echo '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"load_api_spec","arguments":{"url":"https://petstore3.swagger.io/api/v3/openapi.json"}}}' | ./mcp-openapi-explorer serve
You can also load specifications directly from GitHub by prefixing with @:
echo '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"load_api_spec","arguments":{"url":"@github.com/swagger-api/swagger-petstore/blob/master/src/main/resources/openapi.yaml"}}}' | ./mcp-openapi-explorer serve
List loaded API specifications
echo '{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"list_api_specs"}}' | ./mcp-openapi-explorer serve
Get information about API endpoints
echo '{"jsonrpc":"2.0","id":5,"method":"tools/call","params":{"name":"get_api_info","arguments":{"query":"How do I find pets by status?"}}}' | ./mcp-openapi-explorer serve
Available MCP Tools
The MCP server exposes the following tools:
get_api_info
Get comprehensive information about API endpoints from loaded OpenAPI specifications.
Parameters:
query(string, required): Query about API endpoints (e.g. 'How do I create a new user?', 'What endpoints are available for pet management?')
load_api_spec
Load an OpenAPI specification from a URL or file path.
Parameters:
url(string, required): URL or file path to the OpenAPI spec. Supports:- HTTP/HTTPS URLs (e.g., 'https://petstore3.swagger.io/api/v3/openapi.json')
- GitHub URLs with '@' prefix (e.g., '@github.com/org/repo/blob/main/api.yaml')
- Local file paths (e.g., 'file:///path/to/spec.json' or just '/path/to/spec.json')
- Both JSON and YAML formats are supported
list_api_specs
List all loaded OpenAPI specifications.
MCP Resources
openapi://system
Provides information about the OpenAPI Explorer system, including loaded specifications.
Integration with LLMs
This MCP server is designed to be integrated with LLMs to provide context about API interactions. The LLM uses the context provided by the server to understand API endpoints and guide users on how to interact with APIs.
Instead of implementing our own search algorithm, we provide the complete API documentation to the LLM, leveraging the LLM's natural language understanding capabilities to match user queries with relevant API endpoints.
How It Works
- Users load OpenAPI specifications into the server (configured in the config file)
- The server parses and stores these specifications (supporting both JSON and YAML formats)
- When a user asks about an API endpoint, the server provides comprehensive context about all available endpoints
- The LLM uses this context to answer user queries accurately
Example Usage Script
You can use the included test-mcp.sh script to interact with the MCP server:
chmod +x test-mcp.sh
./test-mcp.sh
Docker
docker build -t mcp-openapi-explorer .
# Run the server with input from stdin
docker run -i mcp-openapi-explorer serve < your-jsonrpc-request.json
# Run the server with a configuration file
docker run -i -v $(pwd)/config.yaml:/app/config.yaml mcp-openapi-explorer --config /app/config.yaml serve
License
MIT
Documentation
¶
There is no documentation for this package.