list_config_listeners
Retrieve the list of listeners subscribed to a specific configuration in Nacos MCP Server. Specify namespaceId, groupName, dataId, and aggregation to filter results.
Instructions
This interface retrieves the list of listeners subscribed to a specific configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aggregation | No | Whether aggregation from whole cluster, if `false`, only get listeners from requested node, default `true` if missing | |
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 |
Input Schema (JSON Schema)
{
"properties": {
"aggregation": {
"description": "Whether aggregation from whole cluster, if `false`, only get listeners from requested node, default `true` if missing",
"type": "bool"
},
"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"
}
},
"required": [
"groupName",
"dataId"
],
"type": "object"
}