get_endpoint_details
Retrieve comprehensive details about a specific API endpoint by specifying its path and HTTP method using SwaggerMcp. Simplify API analysis and integration.
Instructions
Get detailed information about a specific API endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method | Yes | The HTTP method (GET, POST, PUT, DELETE, etc.) | |
path | Yes | The endpoint path to get details for (e.g., '/users/{id}') |
Input Schema (JSON Schema)
{
"properties": {
"method": {
"description": "The HTTP method (GET, POST, PUT, DELETE, etc.)",
"type": "string"
},
"path": {
"description": "The endpoint path to get details for (e.g., '/users/{id}')",
"type": "string"
}
},
"required": [
"path",
"method"
],
"type": "object"
}