Skip to content
MCP-Bridge
AI & ML

Azure Machine Learning Datastore Management Client MCP Config

Azure Machine Learning Datastore Management Client API

Config URL

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

https://mcp-bridge.pages.dev/config/azure-com-machinelearningservices-datastore.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/azure-com-machinelearningservices-datastore.json to fetch programmatically.

{
  "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"
}
    }
  }
}

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://mcp-bridge.pages.dev/config/azure-com-machinelearningservices-datastore.json

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.