list_by_category
Filter and list all API endpoints by a specific functional category in the Opentrons MCP Server, enabling organized access to robot control, protocol management, and health monitoring.
Instructions
List all endpoints in a specific functional category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | API category/tag to filter by |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "API category/tag to filter by",
"enum": [
"Health",
"Networking",
"Control",
"Settings",
"Modules",
"Pipettes",
"Calibration",
"Run Management",
"Protocol Management",
"Data files Management",
"Simple Commands",
"Flex Deck Configuration",
"Error Recovery Settings",
"Attached Modules",
"Attached Instruments",
"Labware Offset Management",
"System Control",
"Client Data",
"Maintenance Run Management",
"Robot",
"Subsystem Management"
],
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}