set_charging
Control robot vacuum charging actions on Ecovacs MCP Server. Use 'go-start' to return the robot to the charging station or 'stopGo' to halt the process. Specify the robot nickname for targeted control.
Instructions
Make robot return to charging station
Args: nickname: Robot nickname, used to find device act: Robot action, go-start begin returning to charging station, stopGo stop returning to charging station
Returns: Dict: Dictionary containing execution results
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| act | No | Robot action, go-start begin returning to charging station, stopGo stop returning to charging station | go-start | 
| nickname | Yes | Robot nickname, used to find device | 
Input Schema (JSON Schema)
{
  "properties": {
    "act": {
      "default": "go-start",
      "description": "Robot action, go-start begin returning to charging station, stopGo stop returning to charging station",
      "title": "Act",
      "type": "string"
    },
    "nickname": {
      "description": "Robot nickname, used to find device",
      "title": "Nickname",
      "type": "string"
    }
  },
  "required": [
    "nickname"
  ],
  "title": "set_chargingArguments",
  "type": "object"
}