Azure Machine Learning Datastore Management Client Claude Desktop Config
Add the Azure Machine Learning Datastore Management Client 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-datastore": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-machinelearningservices-datastore"
],
"env": {
"AZURE_MACHINE_LEARNING_DATASTORE_MANAGEMENT_CLIENT_API_KEY": "your_azure_machine_learning_datastore_management_client_api_key"
}
}
}
}Environment Variables
AZURE_MACHINE_LEARNING_DATASTORE_MANAGEMENT_CLIENT_API_KEYReplace your_azure_machine_learning_datastore_management_client_api_key with your actual azure machine learning datastore management client api key
Endpoints
GET
/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastoresGet Datastores list.
POST
/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastoresCreate or update a Datastore.
DELETE
/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastoresDelete all Datastores.
GET
/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}Get Datastore details.
PUT
/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}Update or create a Datastore.
DELETE
/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}Delete a Datastore.
GET
/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/defaultGet the default Datastore.
PUT
/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/default/{name}Set a default Datastore.