Power BI Desktop Local MCP Server
Enables AI assistants to discover and interact with local Power BI Desktop instances, including inspecting table/column schema and executing DAX queries.
README
Power BI Desktop Local MCP Server
A Model Context Protocol (MCP) server that enables AI assistants (such as Claude Desktop, Cursor, Cline, and others) to securely and dynamically connect to locally running Power BI Desktop instances in Windows.
Through this server, an LLM can discover open reports, inspect table and column schema (metadata), and execute custom DAX queries to interact with your data or generate visualizations dynamically.
Key Features
- Dynamic Port Discovery: Power BI Desktop spins up a local instance of SQL Server Analysis Services (SSAS) and assigns it a random port every session. This server automatically scans Windows
AppDatadirectories to identify active workspace sessions and resolve their local ports. - Robust Connection via ADOMD.NET: Instead of relying on local system OLE DB providers (
MSOLAP) which often suffer from architecture mismatches (32-bit vs. 64-bit) or missing drivers, this server leveragespythonnetto directly load the nativeMicrosoft.PowerBI.AdomdClient.dllshipped with Power BI Desktop. - Schema Inspection: Exposes database schema, detailing tables, columns, data types, and visibility states.
- JSON-Safe DAX Execution: Executes complex DAX expressions (e.g.,
EVALUATE SUMMARIZECOLUMNS(...)) and parses raw .NET data types (decimals, dates, nulls) into clean, JSON-serializable structures. - Self-Sanitizing Environment: Automatically isolates its environment from host platforms (such as AI agent runners or global shells) by clearing contaminated
PYTHONPATH/PYTHONHOMEenvironment variables and prioritizing the local.venvdirectory to prevent runtime dependency import issues (e.g.,pywintypesorpythonnetcollision).
Project Structure
pbi_connector.py: Core database connector utilizing ADOMD.NET client libraries and local active port scanning.server.py: Entry point for the MCP server built with the high-levelFastMCPframework.requirements.txt: Python package dependencies.create_dashboard.py: A companion script demonstrating how to run DAX queries, aggregate data inpandas, and generate a premium web-based dashboard withPlotly.
Prerequisites
- Operating System: Windows (required to run Power BI Desktop and load the native Windows .NET Assemblies).
- Python: Version 3.10 or higher.
- Power BI Desktop: Installed standard edition (
C:\Program Files\Microsoft Power BI Desktop) or Microsoft Store edition.
Installation & Setup
1. Environment Setup
Navigate to the project directory, initialize a virtual environment, and install dependencies:
# Create virtual environment
python -m venv .venv
# Activate virtual environment
.\.venv\Scripts\Activate.ps1
# Install requirements
pip install -r requirements.txt
2. Standalone Execution
With an active Power BI Desktop file open, you can test the MCP server locally in your terminal:
fastmcp run server.py
MCP Client Registration
To use this server inside your AI editor or chat client (e.g., Cursor, Cline, or Claude Desktop), register the server in your MCP configuration file.
Configuration Configuration (mcp_config.json or claude_desktop_config.json)
Append the following block to your mcpServers object (ensure you replace paths with the absolute path of your workspace):
{
"mcpServers": {
"powerbi-local": {
"command": "C:\\Path\\To\\Your\\powerbi-mcp\\.venv\\Scripts\\python.exe",
"args": [
"C:\\Path\\To\\Your\\powerbi-mcp\\server.py"
]
}
}
}
MCP Tools Reference
The server exposes the following tools:
-
list_instances- Description: Detects and returns active local Power BI Desktop instances on the current machine.
- Returns: List of objects containing the active local port and temporary directory path.
-
get_schema- Parameters:
port(string) - Description: Connects to the local port and returns the semantic model table/column structure.
- Parameters:
-
execute_dax- Parameters:
port(string),query(string) - Description: Executes a custom DAX query (e.g.,
EVALUATE 'Table') and returns rows formatted as JSON.
- Parameters:
-
add_measure_to_tmdl- Parameters:
tmdl_path(string),name(string),expression(string),format_string(string, optional) - Description: Appends a DAX measure directly to a local table's
.tmdlfile on disk. This guarantees the measure is permanently saved in the Power BI Project (PBIP) metadata instead of only living in the temporary active memory session. It automatically handles double-quoting the format string to prevent syntax errors.
- Parameters:
Best Practices & Troubleshooting (PBIP / TMDL / PBIR)
During manual or agent-based programmatic editing of Power BI Projects, follow these strict development rules to avoid report corruption and application load crashes:
1. TMDL formatString Quoting Rules
In Tabular Model Definition Language (TMDL) files, any formatString property containing special characters, symbols, operators, or spacing (such as $, %, ;, +, or spaces) must be enclosed in double quotes.
- Incorrect:
formatString: $#,##0(causes Power BI Desktop crash on load) - Correct:
formatString: "$#,##0"orformatString: "+0.0%;-0.0%" - Note: The
add_measure_to_tmdltool handles this automatically.
2. Guarding Against Duplicate Measures
Before appending DAX measures to a .tmdl file, verify if the measure is already defined (e.g. at the beginning of the file from a prior .pbix export). Defining a measure twice will trigger a fatal TMDL compilation error: "No se pueden combinar objetos TMDL porque ambos declaran la misma propiedad: expression".
3. Git Integration and Root Path Permission Error
Power BI Desktop automatically detects Git repositories up the directory tree to configure its project settings. If a .git folder accidentally exists in the root drive (e.g., C:\.git), Power BI will attempt to write a .gitignore file at C:\.gitignore. Because non-admin users cannot write to the root of C:\, saving the project will crash with: Acceso denegado a la ruta de acceso 'C:\.gitignore'.
- Fix: Delete the accidental root-level
C:\.gitfolder.
4. Valid PBIR visualType Identifiers
When injecting custom visual layouts inside .Report\definition\pages\[page]\visuals\[visual]\visual.json, only use official Power BI built-in visualType names. Using invalid names causes the entire report to fail to load on startup:
- Invalid:
columnClusteredChart,columnStackedChart - Valid standard chart types:
"columnChart"(handles both clustered column and stacked column layouts)"barChart"(handles both clustered bar and stacked bar layouts)"lineChart","pieChart","donutChart","treemap","card","matrix","table","waterfallChart","areaChart","scatterChart"
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.