Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI agents to deploy Power BI reports to Microsoft Fabric by automating data loading from CSV, creating semantic models, and generating report visuals.

README.md

Fabric MCP Server | PowerBI Report Creator🚀

Skip the formula learning curve — let AI build your Power BI report structure.

A Model Context Protocol (MCP) server that lets AI agents deploy Power BI reports to Microsoft Fabric. Focus on what data you want to see, not how to write DAX or configure data sources.

💡 The Big Idea

Traditional workflow: Learn DAX formulas → Figure out data modeling → Create measures → Build visuals → Configure connections → Publish → Style it → Hope it works.

With this MCP server: Tell your AI what data you want to visualize → AI generates the semantic model, measures, and report structure → Deploys to Fabric → You apply final styling in Fabric portal.

Why This Matters

  1. No DAX Required — AI writes the measures and data model. You don't need to learn SUM(), CALCULATE(), or relationship syntax.
  2. Quick Scaffolding — Get a working report with the right visuals and data bindings in minutes, not hours.
  3. Data Pipeline Automation — CSV → Lakehouse → Delta Table → Semantic Model → Report, all automated.
  4. Ready for Styling — Visuals are deployed with correct data. Apply colors and formatting in Fabric portal.

What You Get

You: "Create a sales report from this CSV with revenue by region and monthly trends"
AI: [uploads data, creates semantic model with measures, builds report with charts]

Result: Working report in Fabric with:
  ✓ Data loaded into Lakehouse
  ✓ Semantic model with correct measures (TotalRevenue, TotalProfit, etc.)
  ✓ Visuals bound to the right fields
  ✓ Ready for you to apply your preferred colors/theme in Fabric portal

Styling Limitations

Note: Programmatic visual styling (custom colors, fonts) via PBIR objects property is not currently supported by Fabric. Reports deploy with default Power BI styling. Use Fabric portal or Power BI Desktop to apply custom themes after deployment.

🔄 How It Works

The server automates the complete data-to-report workflow:

  1. Upload CSV Data → Write to Lakehouse OneLake storage (ADLS Gen2)
  2. Create Delta Tables → Load CSV into queryable Lakehouse tables
  3. Deploy Semantic Model → Push TMDL definitions to Git
  4. Deploy Report → Push PBIR report with visuals to Git
  5. Sync to Fabric → Trigger "Update from Git" to create workspace items
  6. Refresh Model → Load data into semantic model via Power BI API

✨ Capabilities

| Category | Features | |----------|----------| | Data Loading | Upload CSV to OneLake, create Delta tables | | Semantic Models | Generate TMDL with Direct Lake connection, measures, relationships | | Reports | Generate PBIR with cards, bar charts, line charts, tables, slicers | | Git Operations | Push to Azure DevOps, sync workspace from Git | | Workspace Management | List workspaces, check Git status, refresh models | | Themes | Generate Power BI JSON themes from hex colors |

📦 Installation

Prerequisites

  • Python 3.10+
  • Azure CLI (for authentication): az login
  • Azure SDK: pip install azure-storage-file-datalake azure-identity
  • Fabric Workspace connected to Azure DevOps Git repo (one-time setup in Fabric portal)

Install from Source

git clone https://github.com/yourorg/fabric-mcp-server-powerbi-creator.git
cd fabric-mcp-server-powerbi-creator

# Create virtual environment
python -m venv .venv
.venv\Scripts\Activate.ps1  # Windows PowerShell

# Install
pip install -e .
pip install azure-storage-file-datalake azure-identity

Verify Installation

python -c "import fabric_mcp; print('OK')"

🚀 Quick Start

1. Authenticate with Azure (REQUIRED)

You MUST authenticate before using the MCP server:

az login

This uses Azure CLI for authentication. Without this step, all API calls will fail.

2. Get Your Fabric Information

The MCP server will ask you for:

| Information | How to Get It | |-------------|---------------| | Workspace URL | Go to Fabric portal → Open your workspace → Copy URL from browser<br>https://app.fabric.microsoft.com/groups/<WORKSPACE_ID>/... | | Lakehouse | The server will list available Lakehouses for you to choose | | Azure DevOps Repo URL | Go to Azure DevOps → Repos → Clone → Copy HTTPS URL<br>https://org.visualstudio.com/project/_git/repo |

3. Configure MCP Client

Add to your AI agent's MCP configuration:

Claude Desktop (claude_desktop_config.json): ``json { "mcpServers": { "fabric": { "command": "fabric-mcp-server-powerbi-creator" } } } ``

Cursor (.cursor/mcp.json): ``json { "mcpServers": { "fabric": { "command": "C:/path/to/project/.venv/Scripts/fabric-mcp-server-powerbi-creator.exe" } } } ``

🛠️ Available Tools

Workspace Management

| Tool | Description | |------|-------------| | list_workspaces | List all Fabric workspaces you have access to | | get_git_status | Check Git connection and pending changes for a workspace | | sync_workspace | Trigger "Update from Git" to pull changes into Fabric |

Data Loading

| Tool | Description | |------|-------------| | list_lakehouses | List all Lakehouses in a workspace | | list_lakehouse_tables | List Delta tables in a Lakehouse | | upload_csv_to_lakehouse | Upload local CSV to Lakehouse OneLake storage | | load_csv_to_lakehouse | Load CSV from Files into a Delta table |

Deployment

| Tool | Description | |------|-------------| | deploy_semantic_model | Deploy TMDL semantic model to Git | | deploy_report_with_model | Deploy semantic model + report together to Git | | refresh_semantic_model | Refresh model to load data from Lakehouse |

Utilities

| Tool | Description | |------|-------------| | generate_theme | Generate Power BI JSON theme from hex colors | | deploy_report | Deploy a simple report template (legacy) |

📖 Workflow Examples

Basic: Describe What You Want

You: "Create a sales dashboard from sales-data.csv. Show revenue by region 
     as a bar chart and monthly trends as a line chart."

AI: "I'll need your Fabric workspace URL and Azure DevOps repo URL."

You: [paste URLs]

AI: [uploads CSV → creates Delta table → builds semantic model → 
     generates report with bar chart + line chart → deploys to Fabric]

"Done! Your report 'SalesReport' is live in Fabric."

Advanced: Start from a Screenshot

You: "I want my report to look like this:" [attaches screenshot of existing report]

AI: "I can see card KPIs at top, donut chart on left, and trend line on right. 
     I'll create the data model and visuals with that layout."

[AI analyzes the screenshot and generates visuals that mimic the layout 
 and chart types - with your actual data wired up automatically]

"Deployed! Check Fabric to see the report. You can apply colors and 
 formatting in the Fabric portal."

Pro Tip: Iterative Refinement

The real power is iteration on data and measures. Rapidly experiment:

  • "Add a date slicer"
  • "Change the bar chart to horizontal"
  • "Add a YoY growth measure"
  • "Filter to only show top 10 products"

Each change: AI modifies the model/visuals → pushes to Git → syncs to Fabric → done.

Note: For visual styling (colors, fonts, custom formatting), use the Fabric portal after deployment. Programmatic styling via PBIR objects is not yet supported by Fabric.

---

🔧 What Happens Under the Hood

When you deploy a report, the MCP server:

1. list_workspaces() → Extract workspace ID from URL
2. list_lakehouses(workspace_id) → Find available Lakehouses
3. upload_csv_to_lakehouse(workspace_id, lakehouse_id, "sales-data.csv")
   → Writes to OneLake Files/
4. load_csv_to_lakehouse(workspace_id, lakehouse_id, "fact_Sales", "Files/sales-data.csv")
   → Creates Delta table
5. deploy_report_with_model(repo_url, branch, model_name, report_name, ...)
   → Pushes TMDL + PBIR to Git
6. sync_workspace(workspace_id)
   → Triggers "Update from Git" in Fabric (async polling)
7. refresh_semantic_model(workspace_id, model_name)
   → Loads data from Lakehouse into model

Result: Live Power BI report in Fabric!

🏗️ Architecture

┌─────────────────┐    ┌──────────────────┐    ┌─────────────────┐
│   Local CSV     │───▶│  OneLake Storage │───▶│  Delta Tables   │
│   (your data)   │    │  (ADLS Gen2)     │    │  (Lakehouse)    │
└─────────────────┘    └──────────────────┘    └────────┬────────┘
                                                        │
                                                        ▼
┌─────────────────┐    ┌──────────────────┐    ┌─────────────────┐
│  Azure DevOps   │◀───│   MCP Server     │───▶│  Fabric API     │
│  Git Repository │    │  (this project)  │    │  (sync/refresh) │
└────────┬────────┘    └──────────────────┘    └─────────────────┘
         │
         ▼
┌─────────────────┐    ┌──────────────────┐
│  Fabric Sync    │───▶│  Workspace Items │
│  (updateFromGit)│    │  (Model + Report)│
└─────────────────┘    └──────────────────┘

Key Components:

| File | Purpose | |------|---------| | server.py | MCP server with all tools | | fabric_api.py | Fabric REST API client (async polling) | | lakehouse.py | OneLake upload + Delta table loading | | semantic_model.py | TMDL semantic model builder (Direct Lake) | | report_builder.py | PBIR report builder with visuals | | theme_generator.py | Power BI JSON theme generator |

🔧 Configuration

Environment Variables (Optional)

For CI/CD or service principal authentication:

# Windows PowerShell
$env:FABRIC_TENANT_ID="your-tenant-id"
$env:FABRIC_CLIENT_ID="your-client-id"
$env:FABRIC_CLIENT_SECRET="your-client-secret"

Workspace Git Connection

Your Fabric workspace must be connected to an Azure DevOps Git repository:

  1. Open Fabric portal → Workspace settings → Git integration
  2. Connect to Azure DevOps
  3. Select organization, project, repository, branch
  4. Initialize sync

This is a one-time setup per workspace.

📁 Project Structure

fabric-mcp-server-powerbi-creator/
├── src/fabric_mcp/
│   ├── server.py           # MCP server + tools
│   ├── fabric_api.py       # Fabric REST API client
│   ├── lakehouse.py        # OneLake + Delta table operations
│   ├── semantic_model.py   # TMDL builder (Direct Lake)
│   ├── report_builder.py   # PBIR builder with visuals
│   └── theme_generator.py  # Power BI theme generator
├── examples/
│   └── deploy_report_e2e.py  # Complete workflow example
├── test-templates/
│   └── sales-dashboard/      # Sample data + template
├── templates/
│   └── *.json               # Power BI theme templates
├── pyproject.toml
└── README.md

🧪 Testing

Run the example script to test the full workflow:

# 1. First authenticate
az login

# 2. Edit the example file and fill in YOUR values:
#    - WORKSPACE_ID (from Fabric workspace URL)
#    - LAKEHOUSE_ID (from Lakehouse URL)
#    - REPO_URL (Azure DevOps repo)
#    - BRANCH

# 3. Run the example
cd fabric-mcp-server-powerbi-creator
$env:PYTHONPATH = "src"
python examples/deploy_report_e2e.py

This will:

  1. Upload test-templates/sales-dashboard/sales-data.csv to Lakehouse
  2. Create fact_Sales Delta table
  3. Deploy SalesModel semantic model
  4. Deploy SalesReport with 5 visuals
  5. Sync workspace from Git
  6. Refresh semantic model

⚠️ Troubleshooting

| Issue | Solution | |-------|----------| | "Failed to get token" / 401 Unauthorized | Run az login first to authenticate | | ModuleNotFoundError: azure | pip install azure-storage-file-datalake azure-identity | | "Workspace Git state is NotConnected" | Connect workspace to Git in Fabric portal | | "DiscoverDependenciesFailed" on sync | Delete conflicting items from workspace first | | Report shows "Error fetching data" | Run refresh_semantic_model() after sync | | Visuals blank but no error | Verify Delta table has data, refresh model | | "Invalid workspace ID" | Copy workspace ID from Fabric URL (GUID after /groups/) |

📜 License

MIT License - see LICENSE file for details.

🙏 Credits

Inspired by FabricAI deployment patterns for Direct Lake semantic models.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.