app_configuration_kv_read
Retrieve key-values from Azure App Configuration using optional filters for keys and labels. Enables efficient data access and management within the Azure MCP Server environment.
Instructions
Read key-values from Azure App Configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | No | The key to read (optional, use * for wildcards, e.g. 'app1/*') | |
label | No | The label filter (optional, use '\0' for no label, '*' for any label) |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "The key to read (optional, use * for wildcards, e.g. 'app1/*')",
"type": "string"
},
"label": {
"description": "The label filter (optional, use '\\0' for no label, '*' for any label)",
"type": "string"
}
},
"required": [],
"type": "object"
}