addValueToGroup
Add a specific value to a defined group within the Whistle MCP Server to manage and organize proxy server rules effectively.
Instructions
将值添加到分组
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupName | Yes | 分组名称 | |
valueName | Yes | 要添加的值名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"groupName": {
"description": "分组名称",
"type": "string"
},
"valueName": {
"description": "要添加的值名称",
"type": "string"
}
},
"required": [
"groupName",
"valueName"
],
"type": "object"
}