Domain Services Resource Provider Claude Desktop Config
Add the Domain Services 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-domainservices": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-domainservices"
],
"env": {
"DOMAIN_SERVICES_RESOURCE_PROVIDER_API_KEY": "your_domain_services_resource_provider_api_key"
}
}
}
}Environment Variables
DOMAIN_SERVICES_RESOURCE_PROVIDER_API_KEYReplace your_domain_services_resource_provider_api_key with your actual domain services resource provider api key
Endpoints
GET
/providers/Microsoft.AAD/operationsDomainServiceOperations_List
GET
/subscriptions/{subscriptionId}/providers/Microsoft.AAD/domainServicesList Domain Services in Subscription (GET Resources)
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServicesList Domain Services in Resource Group (GET Resources)
GET
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}Get Domain Service (GET Resources)
PUT
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}Create or Update Domain Service (PUT Resource)
DELETE
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}Delete Domain Service (DELETE Resource)
PATCH
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}Update Domain Service (PATCH Resource)