setAllRulesState
Toggle the enabled/disabled state of all rules in Whistle MCP Server. Use this tool to globally manage rule activation with a single boolean input.
Instructions
控制所有规则的启用状态(启用/禁用)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
disabled | Yes | true表示禁用所有规则,false表示启用所有规则 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"disabled": {
"description": "true表示禁用所有规则,false表示启用所有规则",
"type": "boolean"
}
},
"required": [
"disabled"
],
"type": "object"
}