A bridge that enables any LLM to access and interact with documented REST APIs through the Model Context Protocol (MCP).
rest-to-mcp
provides a seamless adapter layer that allows language models to:
- Discover available endpoints from REST APIs that publish OpenAPI/Swagger documentation
- Make direct HTTP requests to these endpoints
This enables LLMs to interact with external REST services without requiring custom integration code for each API.
This project implements an MCP server with two primary tools:
Automatically locates API documentation by probing common paths where OpenAPI/Swagger specs are typically published:
/openapi.json
/swagger.json
/swagger/v1/swagger.json
/api-docs
/api-docs.json
Allows direct HTTP interactions with any REST endpoint:
- Supports GET, POST, PUT, DELETE methods
- Handles JSON request and response bodies
- Returns formatted JSON responses to the LLM
deno install
Start the MCP server:
deno run dev
This launches the server using the MCP Inspector for testing and debugging.
LLMs can connect to this server through the Model Context Protocol, enabling them to:
- First discover what endpoints are available on a REST API
- Make appropriate requests to those endpoints
- Process the JSON responses
Project licensed under the MIT License.
More information on the LICENSE file.