updateValue
Modify specific value content in the Whistle MCP Server. Input a value name and new content to update configurations directly through the Model Context Protocol (MCP).
Instructions
更新值内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | 值名称 | |
value | Yes | 新值内容 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "值名称",
"type": "string"
},
"value": {
"description": "新值内容",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
}