createValuesGroup
Creates a new values group to organize and manage proxy settings efficiently within the Whistle MCP Server, enabling structured rule management and network monitoring.
Instructions
创建新的值分组
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | 分组名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "分组名称",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}