renameGroup
Rename existing groups in the Whistle MCP server by specifying the current group name and the new desired name for quick and accurate proxy management.
Instructions
重命名分组
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| groupName | Yes | 分组的现有名称 | |
| newName | Yes | 分组的新名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"groupName": {
"description": "分组的现有名称",
"type": "string"
},
"newName": {
"description": "分组的新名称",
"type": "string"
}
},
"required": [
"groupName",
"newName"
],
"type": "object"
}