Skip to content
MCP-Bridge
Cloud Infrastructure

AuthorizationManagementClient Claude Desktop Config

Add the AuthorizationManagementClient 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-authorization-authorization-racalls": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-authorization-authorization-racalls"
      ],
      "env": {
        "AUTHORIZATIONMANAGEMENTCLIENT_API_KEY": "your_authorizationmanagementclient_api_key"
      }
    }
  }
}

Environment Variables

AUTHORIZATIONMANAGEMENTCLIENT_API_KEY

Replace your_authorizationmanagementclient_api_key with your actual authorizationmanagementclient api key

Endpoints

GET/subscriptions/{subscriptionId}/providers/Microsoft.Authorization/roleAssignments

RoleAssignments_List

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Authorization/roleAssignments

RoleAssignments_ListForResourceGroup

GET/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{parentResourcePath}/{resourceType}/{resourceName}/providers/Microsoft.Authorization/roleAssignments

RoleAssignments_ListForResource

GET/{roleAssignmentId}

RoleAssignments_GetById

PUT/{roleAssignmentId}

RoleAssignments_CreateById

DELETE/{roleAssignmentId}

RoleAssignments_DeleteById

GET/{scope}/providers/Microsoft.Authorization/roleAssignments

RoleAssignments_ListForScope

GET/{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}

RoleAssignments_Get

PUT/{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}

RoleAssignments_Create

DELETE/{scope}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentName}

RoleAssignments_Delete