Skip to content
MCP-BridgeMCP-Bridge
AI & ML

Azure Machine Learning Compute Management Client MCP Config

These APIs allow end users to operate on Azure Machine Learning Compute resources. They support the following operations:<ul><li>Create or update a cluster</li><li>Get a cluster</li><li>Patch a cluster</li><li>Delete a cluster</li><li>Get keys for a cluster</li><li>Check if updates are available for

Config URL

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

https://mcpbridge.org/config/azure-com-machinelearningcompute-machinelearningcompute.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "azure-com-machinelearningcompute-machinelearningcompute": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-machinelearningcompute-machinelearningcompute"
      ],
      "env": {
        "AZURE_MACHINE_LEARNING_COMPUTE_MANAGEMENT_CLIENT_API_KEY": "your_azure_machine_learning_compute_management_client_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "azure-com-machinelearningcompute-machinelearningcompute": {
      "url": "https://mcpbridge.org/config/azure-com-machinelearningcompute-machinelearningcompute.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "azure-com-machinelearningcompute-machinelearningcompute": {
      "url": "https://mcpbridge.org/config/azure-com-machinelearningcompute-machinelearningcompute.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/azure-com-machinelearningcompute-machinelearningcompute.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-machinelearningcompute-machinelearningcompute": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-machinelearningcompute-machinelearningcompute"],
      "env": {
      "AZURE_MACHINE_LEARNING_COMPUTE_MANAGEMENT_CLIENT_API_KEY": "your_azure_machine_learning_compute_management_client_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://mcpbridge.org/config/azure-com-machinelearningcompute-machinelearningcompute.json

Environment Variables

AZURE_MACHINE_LEARNING_COMPUTE_MANAGEMENT_CLIENT_API_KEY

Replace your_azure_machine_learning_compute_management_client_api_key with your actual azure machine learning compute management client api key

Endpoints

GET/providers/Microsoft.MachineLearningCompute/operations

MachineLearningCompute_ListAvailableOperations

GET/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningCompute/operationalizationClusters

OperationalizationClusters_ListBySubscriptionId

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningCompute/operationalizationClusters

OperationalizationClusters_ListByResourceGroup

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningCompute/operationalizationClusters/{clusterName}

OperationalizationClusters_Get

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningCompute/operationalizationClusters/{clusterName}

OperationalizationClusters_CreateOrUpdate

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningCompute/operationalizationClusters/{clusterName}

OperationalizationClusters_Delete

PATCH/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningCompute/operationalizationClusters/{clusterName}

OperationalizationClusters_Update

POST/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningCompute/operationalizationClusters/{clusterName}/checkUpdate

OperationalizationClusters_CheckUpdate

POST/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningCompute/operationalizationClusters/{clusterName}/listKeys

OperationalizationClusters_ListKeys

POST/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningCompute/operationalizationClusters/{clusterName}/updateSystem

OperationalizationClusters_UpdateSystem