send_program_script
Send script commands directly to Universal Robots at specified IP addresses via the nUR MCP Server, enabling remote control and automation of industrial robot tasks.
Instructions
发送脚本到指定IP的机器人。 IP:机器人地址 script:脚本内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | ||
script | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"title": "Ip",
"type": "string"
},
"script": {
"title": "Script",
"type": "string"
}
},
"required": [
"ip",
"script"
],
"title": "send_program_scriptArguments",
"type": "object"
}