list_listened_configs
Retrieve configurations subscribed to by a specific client IP address in Nacos MCP Server. Specify namespace and aggregation settings to filter results.
Instructions
This interface lists the configurations subscribed to by a specific client IP address.
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 | |
ip | Yes | The client ip of config listeners, 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"
},
"ip": {
"description": "The client ip of config listeners, Required.",
"type": "string"
},
"namespaceId": {
"description": "The namespaceId of configs, default is `public` if missing",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}