Azure Machine Learning Model Management Service Claude Desktop Config
Add the Azure Machine Learning Model Management Service 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-machinelearningservices-modelmanagement": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-machinelearningservices-modelmanagement"
],
"env": {
"AZURE_MACHINE_LEARNING_MODEL_MANAGEMENT_SERVICE_API_KEY": "your_azure_machine_learning_model_management_service_api_key"
}
}
}
}Environment Variables
AZURE_MACHINE_LEARNING_MODEL_MANAGEMENT_SERVICE_API_KEYReplace your_azure_machine_learning_model_management_service_api_key with your actual azure machine learning model management service api key
Endpoints
GET
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/assetsQuery the list of Assets in a workspace.
POST
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/assetsCreate an Asset.
GET
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/assets/{id}Get an Asset.
DELETE
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/assets/{id}Delete an Asset.
PATCH
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/assets/{id}Update an Asset.
GET
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/images/{imageId}/profilesGet a list of Image Profiles.
POST
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/images/{imageId}/profilesCreate a Profile.
GET
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/images/{imageId}/profiles/{id}Get a Profile.
GET
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/modelsQuery the list of Models in a workspace.
POST
/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/modelsRegister a model.