list_config_history
Retrieve the complete publish history of a configuration in Nacos MCP Server by specifying page number, size, namespace, group, and data ID for precise record access.
Instructions
This interface retrieves the complete publish history of a configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataId | Yes | The dataId pattern of config, required. | |
groupName | Yes | The groupName pattern of config, required. | |
namespaceId | No | The namespaceId of config, default is `public` if missing | |
pageNo | Yes | The current page number, default is 1. | |
pageSize | Yes | The size of config history records in each page, default is 100 |
Input Schema (JSON Schema)
{
"properties": {
"dataId": {
"description": "The dataId pattern of config, required.",
"type": "string"
},
"groupName": {
"description": "The groupName pattern of config, required.",
"type": "string"
},
"namespaceId": {
"description": "The namespaceId of config, default is `public` if missing",
"type": "string"
},
"pageNo": {
"description": "The current page number, default is 1.",
"type": "int"
},
"pageSize": {
"description": "The size of config history records in each page, default is 100",
"type": "int"
}
},
"required": [
"pageNo",
"pageSize",
"groupName",
"dataId"
],
"type": "object"
}