Search Nacos configs
nacos_search_configsSearch or page through Nacos configuration entries in a namespace using filters like dataId, group, app name, tags, and type. Returns paged summaries without content; use nacos_get_config to read a value.
Instructions
Search or page through configuration entries in a namespace. Supports exact and fuzzy matching on dataId, plus filters for group, application name, tags and content type. Returns paged summaries (without content); call nacos_get_config to read a value. Compatible with Nacos 1.x, 2.x and 3.x.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter by configuration type, e.g. yaml, properties, json. | |
| group | No | Configuration group, e.g. DEFAULT_GROUP. | |
| dataId | No | Data ID pattern to match. Leave empty to list everything in the namespace. | |
| pageNo | No | 1-based page number, defaults to 1. | |
| search | No | Matching mode for dataId/group: "accurate" (exact) or "blur" (wildcard). Defaults to blur. | |
| appName | No | Filter by the owning application name. | |
| pageSize | No | Items per page between 1 and 500, defaults to 20. | |
| configTags | No | Filter by configuration tags. | |
| namespaceId | No | Namespace (tenant) ID. Omit to use the namespace configured for this server. The default namespace is "" on Nacos 1.x/2.x and "public" on Nacos 3.x; both are accepted. |