Swagger MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | The port on which the server will run | 3000 |
| NODE_ENV | No | The environment (development, production, test) | |
| LOG_LEVEL | No | Logging level (info, error, debug) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| fetch_swagger_infoC | Fetch Swagger/OpenAPI documentation to discover available API endpoints |
| list_endpointsB | List all available API endpoints after fetching Swagger documentation |
| get_endpoint_detailsB | Get detailed information about a specific API endpoint |
| execute_api_requestC | Execute an API request to a specific endpoint |
| validate_api_responseB | Validate an API response against the schema from Swagger documentation |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose with no overlap: fetching documentation, listing endpoints, getting endpoint details, executing requests, and validating responses. The descriptions make it easy to tell them apart, as they target different stages of the API workflow.
All tool names follow a consistent verb_noun pattern (e.g., fetch_swagger_info, list_endpoints, execute_api_request). The naming is predictable and readable throughout, with no deviations in style or convention.
With 5 tools, the server is well-scoped for its purpose of interacting with Swagger/OpenAPI documentation and APIs. Each tool earns its place by covering distinct aspects of the workflow, from discovery to execution and validation.
The tool set provides complete coverage for the domain: it supports fetching documentation, listing and detailing endpoints, executing requests, and validating responses. There are no obvious gaps, and agents can handle the full API lifecycle without dead ends.