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
- 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-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_KEYReplace your_azure_data_catalog_resource_provider_api_key with your actual azure data catalog resource provider api key
Endpoints
GET
/providers/Microsoft.DataCatalog/operationsADCOperations_List
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogsList 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)