Skip to content
MCP-Bridge
Cloud Infrastructure

Azure App Configuration Claude Desktop Config

Add the Azure App Configuration MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. 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_KEY

Replace your_azure_app_configuration_api_key with your actual azure app configuration api key

Endpoints

GET/keys

Gets a list of keys.

GET/kv

Gets 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/labels

Gets a list of labels.

PUT/locks/{key}

Locks a key-value.

DELETE/locks/{key}

Unlocks a key-value.

GET/revisions

Gets a list of key-value revisions.