Microsoft Fabric MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Microsoft Fabric MCPshow schemas for all tables in the DWH-PROD lakehouse"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Microsoft Fabric MCP
A Model Context Protocol server that provides read-only access to Microsoft Fabric resources. Query workspaces, examine table schemas, monitor jobs, and analyze dependencies using natural language.
Features
25 tools covering workspaces, lakehouses, tables, jobs, and dependencies
Read-only operations - uses only GET requests, no risk of data modification
Smart caching for fast responses
Works with Cursor, Claude, and other MCP-compatible AI tools
Related MCP server: MCP Trino Server
Available MCP Tools
Parameter Note:
workspaceparameters accept either workspace names (e.g., "DWH-PROD") or workspace IDs. Names are recommended for ease of use.
🏢 Core Fabric Management
Tool | Description | Inputs |
| List all accessible Fabric workspaces | None |
| Get detailed workspace info including workspace identity status |
|
| List all items in workspace with optional type filtering |
|
| Get detailed properties and metadata for specific item |
|
| List all connections user has access to across entire tenant | None |
| List all lakehouses in specified workspace |
|
| List all Fabric capacities user has access to | None |
| Get workspace identity details for a specific workspace |
|
| List workspaces that have workspace identities configured | None |
📊 Data & Schema Management
Tool | Description | Inputs |
| Get schemas for all Delta tables in lakehouse |
|
| Get detailed schema for specific table |
|
| List all tables in lakehouse with format/type info |
|
| List OneLake shortcuts for specific item |
|
| Get detailed shortcut configuration and target |
|
| Aggregate all shortcuts across workspace items |
|
⚡ Job Monitoring & Scheduling
Tool | Description | Inputs |
| List job instances with status/item filtering for monitoring |
|
| Get detailed job info including errors and timing |
|
| List all schedules for specific item |
|
| Aggregate all schedules across workspace - complete scheduling overview |
|
🎯 Operational Intelligence
Tool | Description | Inputs |
| Monitor active jobs and estimate resource consumption |
|
| Analyze data flow dependencies upstream/downstream |
|
| Map all item dependencies in workspace |
|
| Analyze connection usage patterns across items |
|
| List Fabric environments for compute/library management |
|
| Get detailed environment config including Spark settings and libraries |
|
Caching
The server caches responses for performance. Use clear_fabric_data_cache to refresh resource lists or clear_name_resolution_cache after renaming workspaces/lakehouses.
Getting Started
Install UV and Azure CLI (see sections below)
Set up Azure CLI authentication:
az loginConfigure MCP in Cursor (see "Setting up MCP" section below)
Installation
UV
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Azure CLI Authentication
This toolkit requires Azure CLI to be installed and properly configured for authentication with Microsoft Fabric services.
Azure CLI Setup
Install Azure CLI (if not already installed):
# For macOS
brew install azure-cli
# For Windows
# Last ned installasjonen fra: https://aka.ms/installazurecliwindows
# Eller bruk winget:
winget install -e --id Microsoft.AzureCLI
# For other platforms, see the official Azure CLI documentationLog in to Azure with CLI:
az loginVerify the login works:
az account showIf you have multiple subscriptions, select the one you want to use:
az account set --subscription "Name-or-ID-of-subscription"When this is done, the DefaultAzureCredential in our code will automatically find and use your Azure CLI authentication.
Setting up MCP
To use the MCP (Module Context Protocol) with this toolkit, follow these steps:
Make sure you have completed the Azure CLI authentication steps above.
Choose your installation method:
Option A: UVX Installation (Recommended)
Add to Cursor MCP settings:
"mcp_fabric": {
"command": "uvx",
"args": ["microsoft-fabric-mcp"]
}Option B: Local Development
Clone and install:
git clone https://github.com/Augustab/microsoft_fabric_mcp
cd microsoft_fabric_mcp
uv pip install -e .Add to Cursor MCP settings:
"mcp_fabric": {
"command": "uv",
"args": [
"--directory",
"/Users/username/Documents/microsoft_fabric_mcp",
"run",
"fabric_mcp.py"
]
}Replace /Users/username/Documents/microsoft_fabric_mcp with your actual path.
💡 Note: Both methods run the MCP server locally on your machine. The UVX method just makes installation much easier!
Once the MCP is configured, you can interact with Microsoft Fabric resources directly from your tools and applications.
You can use the provided MCP tools to list workspaces, lakehouses, and tables, as well as extract schema information as documented in the tools section.
When successfully configured, your MCP will appear in Cursor settings like this:
Windows Setup
Setting up the MCP Command
On Windows, you can create a batch file to easily run the MCP command:
Create a file named
run_mcp.batwith the following content:@echo off SET PATH=C:\Users\YourUsername\.local\bin;%PATH% cd C:\path\to\your\microsoft_fabric_mcp\ C:\Users\YourUsername\.local\bin\uv.exe run fabric_mcp.pyExample with real paths:
@echo off SET PATH=C:\Users\YourUsername\.local\bin;%PATH% cd C:\Users\YourUsername\source\repos\microsoft_fabric_mcp\ C:\Users\YourUsername\.local\bin\uv.exe run fabric_mcp.pyYou can then run the MCP command by executing:
cmd /c C:\path\to\your\microsoft_fabric_mcp\run_mcp.batExample:
cmd /c C:\Users\YourUsername\source\repos\microsoft_fabric_mcp\run_mcp.bat
Virtual Environment Permissions
When activating the virtual environment using .venv\Scripts\activate on Windows, you might encounter permission issues. To resolve this, run the following command in PowerShell before activation:
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope ProcessThis temporarily changes the execution policy for the current PowerShell session only, allowing scripts to run.
Example Usage
After setup, you can query your Fabric resources through your AI assistant:
Listing Workspaces in Fabric
Ask your AI assistant natural language questions:
Can you list my workspaces in Fabric?
Can you show me all the lakehouses in the "DWH-PROD" workspace?
Can you get the schema for the "sales" table in the "GK_Bronze" lakehouse?The AI will automatically select the appropriate MCP tool and display results:
Advanced Use Cases
For complex tasks, the AI can access multiple resources to generate accurate code:
Create a notebook that reads from the 'sales' table in Bronze lakehouse and upserts to 'sales_processed' in Silver lakehouse, considering both schemas.The AI will:
Get schemas for both tables
Generate code with correct data types
Create an efficient upsert operation
Permission Handling
The AI will ask permission before running MCP tools. In Cursor, you can enable YOLO mode for automatic execution without prompts.
About Model Context Protocol
Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. This server implements MCP to provide AI assistants with direct access to your Microsoft Fabric resources.
Learn more: Model Context Protocol Documentation
Contributing
Feel free to contribute additional tools, utilities, or improvements to existing code. Please follow the existing code structure and include appropriate documentation.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Augustab/microsoft_fabric_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server