Skip to content
MCP-Bridge
Cloud Infrastructure

Azure Migrate MCP Config

Move your workloads to Azure.

Config URL

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

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

Configuration JSON

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

{
  "mcpServers": {
    "azure-com-migrate": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-migrate"],
      "env": {
      "AZURE_MIGRATE_API_KEY": "your_azure_migrate_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-migrate.json

Environment Variables

AZURE_MIGRATE_API_KEY

Replace your_azure_migrate_api_key with your actual azure migrate api key

Endpoints

GET/providers/Microsoft.Migrate/operations

Get list of operations supported in the API.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/assessments

Get all assessments created in the project.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/groups

Get all groups

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/groups/{groupName}

Get a specific group.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/groups/{groupName}

Create a new group with specified settings. If group with the name provided already exists, then the existing group is updated.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/groups/{groupName}

Delete the group

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/groups/{groupName}/assessments

Get all assessments created for the specified group.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/groups/{groupName}/assessments/{assessmentName}

Get an assessment.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/groups/{groupName}/assessments/{assessmentName}

Create or Update assessment.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/projects/{projectName}/groups/{groupName}/assessments/{assessmentName}

Deletes an assessment from the project.