Skip to content
MCP-Bridge
Developer Tools

IntuneResourceManagementClient Claude Desktop Config

Add the IntuneResourceManagementClient 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-intune": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-intune"
      ],
      "env": {
        "INTUNERESOURCEMANAGEMENTCLIENT_API_KEY": "your_intuneresourcemanagementclient_api_key"
      }
    }
  }
}

Environment Variables

INTUNERESOURCEMANAGEMENTCLIENT_API_KEY

Replace your_intuneresourcemanagementclient_api_key with your actual intuneresourcemanagementclient api key

Endpoints

GET/providers/Microsoft.Intune/locations

GetLocations

GET/providers/Microsoft.Intune/locations/hostName

GetLocationByHostName

GET/providers/Microsoft.Intune/locations/{hostName}/AndroidPolicies/{policyName}/apps

Android_GetAppForMAMPolicy

GET/providers/Microsoft.Intune/locations/{hostName}/androidPolicies

Android_GetMAMPolicies

GET/providers/Microsoft.Intune/locations/{hostName}/androidPolicies/{policyName}

Android_GetMAMPolicyByName

PUT/providers/Microsoft.Intune/locations/{hostName}/androidPolicies/{policyName}

Android_CreateOrUpdateMAMPolicy

DELETE/providers/Microsoft.Intune/locations/{hostName}/androidPolicies/{policyName}

Android_DeleteMAMPolicy

PATCH/providers/Microsoft.Intune/locations/{hostName}/androidPolicies/{policyName}

Android_PatchMAMPolicy

PUT/providers/Microsoft.Intune/locations/{hostName}/androidPolicies/{policyName}/apps/{appName}

Android_AddAppForMAMPolicy

DELETE/providers/Microsoft.Intune/locations/{hostName}/androidPolicies/{policyName}/apps/{appName}

Android_DeleteAppForMAMPolicy