Skip to content
MCP-Bridge
AI & ML

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

  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-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_KEY

Replace 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}/datastores

Get Datastores list.

POST/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores

Create or update a Datastore.

DELETE/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores

Delete 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}/default

Get the default Datastore.

PUT/datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/default/{name}

Set a default Datastore.