io.github.lazymac2x/interactive-api-playground
Official5 toolsby lazymac2x · JavaScript
Cloudflare Workers MCP server: interactive-api-playground
Cloudflare Workers MCP server for interactive API testing and exploration.
Captured live from the server via tools/list.
schema_parser
Parse an OpenAPI 3.x schema object or GraphQL SDL string. Returns a structured list of endpoints (and GraphQL types).
Parameters (2)
- schemaobject
OpenAPI 3.x schema object
- graphql_sdlstring
GraphQL SDL string (alternative to schema)
playground_renderer
Render an interactive HTML API playground for a list of endpoints. Returns self-contained HTML with try-it-out forms.
Parameters (3)
- endpointsarrayrequired
Array of {method, path, summary, parameters?, requestBody?}
- titlestring
Playground title
- base_urlstring
Base URL for requests
api_executor
Execute a live HTTP request to an external URL. Returns real status, headers, and response body. Private IPs are blocked.
Parameters (5)
- methodstringrequired
- urlstringrequired
Full URL (https required)
- headersobject
- bodyobject
- timeout_msinteger
code_generator
Generate a ready-to-run code snippet for an HTTP request in javascript, typescript, python, curl, go, ruby, php, or java.
Parameters (5)
- methodstringrequired
- urlstringrequired
- headersobject
- bodyobject
- languagestring
history_tracker
Get invocation history for a tool within the current Worker instance. Resets on cold start.
Parameters (1)
- idstringrequired
Tool name, e.g. schema-parser, api-executor, code-generator
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"interactive-api-playground": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.lazy-mac.com/interactive-api-playground/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.