AI Vision Debug MCP Server

api_endpoint_tester

Test and validate multiple API endpoints by specifying base URLs, paths, methods, headers, and request data. Simplify API response verification for debugging and integration workflows.

Instructions

Test multiple API endpoints and verify responses

Input Schema

NameRequiredDescriptionDefault
authTokenNoOptional auth token to include in all requests
endpointsYesList of endpoints to test
urlYesBase URL of the API (e.g., http://localhost:5000/api)

Input Schema (JSON Schema)

{ "properties": { "authToken": { "description": "Optional auth token to include in all requests", "type": "string" }, "endpoints": { "description": "List of endpoints to test", "items": { "properties": { "data": { "description": "Request body data for POST/PUT/PATCH", "type": "object" }, "headers": { "description": "Request headers", "type": "object" }, "method": { "description": "HTTP method", "enum": [ "GET", "POST", "PUT", "DELETE", "PATCH" ], "type": "string" }, "path": { "description": "Endpoint path (e.g., /users)", "type": "string" } }, "required": [ "path", "method" ], "type": "object" }, "type": "array" }, "url": { "description": "Base URL of the API (e.g., http://localhost:5000/api)", "type": "string" } }, "required": [ "url", "endpoints" ], "type": "object" }
ID: lbb1el5owd