Skip to content
MCP-Bridge
Cloud Infrastructure

Azure Data Catalog Resource Provider Claude Desktop Config

Add the Azure Data Catalog Resource Provider 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-datacatalog": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-datacatalog"
      ],
      "env": {
        "AZURE_DATA_CATALOG_RESOURCE_PROVIDER_API_KEY": "your_azure_data_catalog_resource_provider_api_key"
      }
    }
  }
}

Environment Variables

AZURE_DATA_CATALOG_RESOURCE_PROVIDER_API_KEY

Replace your_azure_data_catalog_resource_provider_api_key with your actual azure data catalog resource provider api key

Endpoints

GET/providers/Microsoft.DataCatalog/operations

ADCOperations_List

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs

List catalogs in Resource Group (GET Resources)

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}

Get Azure Data Catalog service (GET Resources)

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}

Create or Update Azure Data Catalog service (PUT Resource)

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}

Delete Azure Data Catalog Service (DELETE Resource)

PATCH/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName}

Update Azure Data Catalog Service (PATCH Resource)