Skip to content
MCP-Bridge
Developer Tools

Domain Services Resource Provider MCP Config

The AAD Domain Services API.

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcp-bridge.pages.dev/config/azure-com-domainservices.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/azure-com-domainservices.json to fetch programmatically.

{
  "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"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcp-bridge.pages.dev/config/azure-com-domainservices.json

Environment Variables

DOMAIN_SERVICES_RESOURCE_PROVIDER_API_KEY

Replace your_domain_services_resource_provider_api_key with your actual domain services resource provider api key

Endpoints

GET/providers/Microsoft.AAD/operations

DomainServiceOperations_List

GET/subscriptions/{subscriptionId}/providers/Microsoft.AAD/domainServices

List Domain Services in Subscription (GET Resources)

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices

List 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)