get_endpoint_details
Retrieve comprehensive details about a specific API endpoint, including path, method, and optional response information, using the openapi-mcp-proxy server. Analyze and explore endpoint data efficiently.
Instructions
Get detailed information about a specific endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api | Yes | API name or direct URL | |
include_responses | No | Whether to include responses in details. Use it, for example, to get full details for a specific endpoint or pass False to get a summary. | |
method | Yes | HTTP method | |
path | Yes | Endpoint path |
Input Schema (JSON Schema)
{
"properties": {
"api": {
"description": "API name or direct URL",
"type": "string"
},
"include_responses": {
"default": true,
"description": "Whether to include responses in details. Use it, for example, to get full details for a specific endpoint or pass False to get a summary.",
"type": "boolean"
},
"method": {
"description": "HTTP method",
"type": "string"
},
"path": {
"description": "Endpoint path",
"type": "string"
}
},
"required": [
"api",
"path",
"method"
],
"type": "object"
}