AI & MLAuto-generated
Azure Machine Learning Model Management Service MCP Server
These APIs allow end users to manage Azure Machine Learning Models, Images, Profiles, and Services.
Quick Setup
Transport: STDIO
Command: npx -y @mcp/azure-com-machinelearningservices-modelmanagement
Environment Variables
AZURE_MACHINE_LEARNING_MODEL_MANAGEMENT_SERVICE_API_KEYExample: your_azure_machine_learning_model_management_service_api_key
MCP Server Configuration
Add this to your claude_desktop_config.json or Cursor MCP settings.
{
"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"
}
}
}
}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.