get_config_history
Retrieve historical change records for specific configurations in Nacos MCP Server by providing namespace, group, and data ID. Essential for tracking and auditing configuration updates.
Instructions
This interface retrieves a specific historical change record of a configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataId | Yes | The dataId of config, Required. | |
groupName | Yes | The groupName of config, Required. | |
namespaceId | No | The namespaceId of configs, default is `public` if missing | |
nid | No | the actual id of config history record, Get from list config history api/tool, `id` field. |
Input Schema (JSON Schema)
{
"properties": {
"dataId": {
"description": "The dataId of config, Required.",
"type": "string"
},
"groupName": {
"description": "The groupName of config, Required.",
"type": "string"
},
"namespaceId": {
"description": "The namespaceId of configs, default is `public` if missing",
"type": "string"
},
"nid": {
"description": "the actual id of config history record, Get from list config history api/tool, `id` field.",
"type": "long"
}
},
"required": [
"groupName",
"dataId"
],
"type": "object"
}