updateRule
Modify rule content on the Whistle MCP Server to manage proxy settings, enabling precise control over network request rules and configurations.
Instructions
更新规则内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ruleName | Yes | 规则名称 | |
ruleValue | Yes | 规则内容 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ruleName": {
"description": "规则名称",
"type": "string"
},
"ruleValue": {
"description": "规则内容",
"type": "string"
}
},
"required": [
"ruleName",
"ruleValue"
],
"type": "object"
}