send_program_script
Send programmed scripts to Universal Robots via IP address using the nUR MCP Server. Input robot IP and script content to execute specific tasks directly.
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"
}