Azure App Configuration Claude Desktop Config
Add the Azure App Configuration MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"azure-com-appconfiguration": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-appconfiguration"
],
"env": {
"AZURE_APP_CONFIGURATION_API_KEY": "your_azure_app_configuration_api_key"
}
}
}
}Environment Variables
AZURE_APP_CONFIGURATION_API_KEYReplace your_azure_app_configuration_api_key with your actual azure app configuration api key
Endpoints
GET
/keysGets a list of keys.
GET
/kvGets a list of key-values.
GET
/kv/{key}Gets a single key-value.
PUT
/kv/{key}Creates a key-value.
DELETE
/kv/{key}Deletes a key-value.
GET
/labelsGets a list of labels.
PUT
/locks/{key}Locks a key-value.
DELETE
/locks/{key}Unlocks a key-value.
GET
/revisionsGets a list of key-value revisions.