get_endpoint_details
Retrieve detailed information about a specific API endpoint by providing the HTTP method and path, enabling precise API interactions with the Opentrons MCP Server.
Instructions
Get comprehensive details about a specific API endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method | Yes | HTTP method (GET, POST, etc.) | |
path | Yes | API endpoint path |
Input Schema (JSON Schema)
{
"properties": {
"method": {
"description": "HTTP method (GET, POST, etc.)",
"type": "string"
},
"path": {
"description": "API endpoint path",
"type": "string"
}
},
"required": [
"method",
"path"
],
"type": "object"
}