Turn any REST API into an MCP server in 30 seconds. Paste an OpenAPI spec, get an AI-agent-callable tool.
| Resource | URL |
|---|---|
| API Documentation | /docs |
| Health Check | /health |
curl -X POST https://YOUR_URL/api/analyze \
-H "Content-Type: application/json" \
-d '{"spec": "https://petstore3.swagger.io/api/v3/openapi.json"}'curl -X POST https://YOUR_URL/api/generate \
-H "Content-Type: application/json" \
-d '{
"spec": "https://petstore3.swagger.io/api/v3/openapi.json",
"options": {
"name": "petstore-mcp",
"outputFormat": "json"
}
}'Preview what tools would be generated from an OpenAPI spec.
Validate an OpenAPI spec and check for issues.
Generate a complete, deployable MCP server project from an OpenAPI spec.
Options:
name- Project namedescription- Project descriptionruntime- "node" or "python"selectedEndpoints- Array of endpoints to includeoutputFormat- "json" or "zip"
- Node.js 20 + Express + TypeScript
- @apidevtools/swagger-parser
- archiver (ZIP generation)
- Deployed on CreateOS