Skip to content
MCP-BridgeMCP-Bridge
Developer Tools

PowerBIDedicated MCP Config

PowerBI Dedicated Web API provides a RESTful set of web services that enables users to create, retrieve, update, and delete Power BI dedicated capacities

Config URL

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

https://mcpbridge.org/config/azure-com-powerbidedicated.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "azure-com-powerbidedicated": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-powerbidedicated"
      ],
      "env": {
        "POWERBIDEDICATED_API_KEY": "your_powerbidedicated_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "azure-com-powerbidedicated": {
      "url": "https://mcpbridge.org/config/azure-com-powerbidedicated.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "azure-com-powerbidedicated": {
      "url": "https://mcpbridge.org/config/azure-com-powerbidedicated.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/azure-com-powerbidedicated.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-powerbidedicated": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-powerbidedicated"],
      "env": {
      "POWERBIDEDICATED_API_KEY": "your_powerbidedicated_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://mcpbridge.org/config/azure-com-powerbidedicated.json

Environment Variables

POWERBIDEDICATED_API_KEY

Replace your_powerbidedicated_api_key with your actual powerbidedicated api key

Endpoints

GET/providers/Microsoft.PowerBIDedicated/operations

Operations_List

GET/subscriptions/{subscriptionId}/providers/Microsoft.PowerBIDedicated/capacities

Capacities_List

POST/subscriptions/{subscriptionId}/providers/Microsoft.PowerBIDedicated/locations/{location}/checkNameAvailability

Capacities_CheckNameAvailability

GET/subscriptions/{subscriptionId}/providers/Microsoft.PowerBIDedicated/skus

Capacities_ListSkus

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBIDedicated/capacities

Capacities_ListByResourceGroup

GET/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBIDedicated/capacities/{dedicatedCapacityName}

Capacities_GetDetails

PUT/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBIDedicated/capacities/{dedicatedCapacityName}

Capacities_Create

DELETE/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBIDedicated/capacities/{dedicatedCapacityName}

Capacities_Delete

PATCH/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBIDedicated/capacities/{dedicatedCapacityName}

Capacities_Update

POST/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBIDedicated/capacities/{dedicatedCapacityName}/resume

Capacities_Resume