get_protocols
Retrieve a list of all protocols stored on an Opentrons robot, optionally filtered by type, using the robot's IP address for access.
Instructions
List all protocols stored on the robot
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| protocol_kind | No | Filter by protocol type (optional) | |
| robot_ip | Yes | Robot IP address |
Input Schema (JSON Schema)
{
"properties": {
"protocol_kind": {
"description": "Filter by protocol type (optional)",
"enum": [
"standard",
"quick-transfer"
],
"type": "string"
},
"robot_ip": {
"description": "Robot IP address",
"type": "string"
}
},
"required": [
"robot_ip"
],
"type": "object"
}