renameValue
Change the name of a value in Whistle MCP Server by specifying the existing name and the new name, enabling efficient updates to configurations and data.
Instructions
重命名值
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | 值现有名称 | |
newName | Yes | 值的新名称 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "值现有名称",
"type": "string"
},
"newName": {
"description": "值的新名称",
"type": "string"
}
},
"required": [
"name",
"newName"
],
"type": "object"
}