control_lights
Manage robot lighting by turning lights on or off using the robot's IP address. Integrates with the Opentrons MCP Server for direct control of Opentrons Flex and OT-2 robots.
Instructions
Turn robot lights on or off
Input Schema
Name | Required | Description | Default |
---|---|---|---|
on | Yes | True to turn lights on, false to turn off | |
robot_ip | Yes | Robot IP address |
Input Schema (JSON Schema)
{
"properties": {
"on": {
"description": "True to turn lights on, false to turn off",
"type": "boolean"
},
"robot_ip": {
"description": "Robot IP address",
"type": "string"
}
},
"required": [
"robot_ip",
"on"
],
"type": "object"
}