swagger-mcp-server
v1.0.1
Published
Model Context Protocol server for swagger endpoints
Maintainers
Readme
Swagger MCP Server
A Model Context Protocol server for Swagger/OpenAPI endpoints. This tool allows you to expose Swagger-defined APIs through the Model Context Protocol, making them accessible to AI agents.
Installation
You can install the package globally:
npm install -g swagger-mcp-serverOr use it directly with npx:
npx swagger-mcp-server <config-file>Usage
- Create a configuration file (JSON) that defines the Swagger endpoints you want to expose:
{
"endpoints": [
{
"name": "example-api",
"url": "https://example.com/api/swagger.json"
}
]
}- Run the server:
swagger-mcp-server config.jsonOr with npx:
npx swagger-mcp-server config.jsonConfiguration Options
The configuration file supports the following options:
endpoints: An array of Swagger endpoints to exposename: A unique identifier for the endpointurl: URL to the Swagger/OpenAPI JSON definition
Development
To build the project:
npm run buildTo run locally:
npm run runLicense
ISC
