addRuleToGroup
Add a specified rule to a designated group within the Whistle MCP Server to manage proxy configurations efficiently.
Instructions
将规则添加到分组
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupName | Yes | 分组名称 | |
ruleName | Yes | 要添加的规则名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"groupName": {
"description": "分组名称",
"type": "string"
},
"ruleName": {
"description": "要添加的规则名称",
"type": "string"
}
},
"required": [
"groupName",
"ruleName"
],
"type": "object"
}