toggleHttp2
Enable or disable HTTP/2 protocol for Whistle proxy servers using the Whistle MCP Server. Manage HTTP/2 settings directly for optimized network performance.
Instructions
启用或禁用HTTP/2
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | 是否启用HTTP/2 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"enabled": {
"description": "是否启用HTTP/2",
"type": "boolean"
}
},
"required": [
"enabled"
],
"type": "object"
}