HomeDatabases & Data › fabric-dw

fabric-dw

MCP server for Microsoft Fabric Data Warehouses and SQL Analytics Endpoints

Python
★ 10 stars Last pushed 2026-09-20 License: MIT

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (oci)

docker run -i --rm ghcr.io/sdebruyn/fabric-dw:2026.9.0

Or add to your MCP client config:

{
  "mcpServers": {
    "fabric-dw-mcp-cli": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/sdebruyn/fabric-dw:2026.9.0"
      ],
      "env": {
        "FABRIC_AUTH": "<YOUR_VALUE>",
        "FABRIC_MCP_READONLY": "<YOUR_VALUE>",
        "FABRIC_MCP_ALLOW_DESTRUCTIVE": "<YOUR_VALUE>",
        "FABRIC_MCP_WORKSPACES": "<YOUR_VALUE>",
        "FABRIC_MCP_ALLOW_REMOTE": "<YOUR_VALUE>",
        "FABRIC_LOG_LEVEL": "<YOUR_VALUE>"
      }
    }
  }
}
  • FABRIC_AUTH — Azure credential source: 'default' (DefaultAzureCredential chain), 'sp' (service principal, needs AZURE_TENANT_ID/AZURE_CLIENT_ID/AZURE_CLIENT_SECRET), or 'interactive' (browser sign-in).
  • FABRIC_MCP_READONLY — Set to 1 to restrict execute_sql to SELECT/WITH statements and block all mutating tools.
  • FABRIC_MCP_ALLOW_DESTRUCTIVE — Set to 1 to enable permanently-destructive tools (delete_*, clear_table, restore_warehouse_in_place). Disabled by default.
  • FABRIC_MCP_WORKSPACES — Comma-separated workspace names or GUIDs the server may touch. Unset allows all workspaces.
  • FABRIC_MCP_ALLOW_REMOTE — Set to 1 to allow the HTTP transport to bind on a non-loopback address. Always front with an authenticating reverse proxy.
  • FABRIC_LOG_LEVEL — Log level for the MCP server (DEBUG, INFO, WARNING, ERROR, CRITICAL).

Related servers

Data from the Official MCP Registry