Skip to content
MCP-Bridge
Cloud Infrastructure

Azure Migrate Hub Claude Desktop Config

Add the Azure Migrate Hub 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-migrateprojects-migrate": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-migrateprojects-migrate"
      ],
      "env": {
        "AZURE_MIGRATE_HUB_API_KEY": "your_azure_migrate_hub_api_key"
      }
    }
  }
}

Environment Variables

AZURE_MIGRATE_HUB_API_KEY

Replace your_azure_migrate_hub_api_key with your actual azure migrate hub api key

Endpoints

GET/providers/Microsoft.Migrate/operations

Get list of operations supported in the API.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}

Method to get a migrate project.

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}

Method to create or update a migrate project.

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}

Delete the migrate project

PATCH/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}

Update migrate project.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}/databaseInstances

Gets a list of database instances in the migrate project.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}/databaseInstances/{databaseInstanceName}

Gets a database instance in the migrate project.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}/databases

Gets a list of databases in the migrate project.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}/databases/{databaseName}

Gets a database in the migrate project.

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName}/machines

Gets a list of machines in the migrate project.