Genie ↔ Fabric/Power BI bridge
Enables querying Databricks Genie spaces, listing available spaces, and retrieving generated SQL and result rows from Genie conversations.
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., "@Genie ↔ Fabric/Power BI bridgeAsk Genie how many orders were placed last week"
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.
Genie ↔ Fabric/Power BI bridge (MCP server)
Custom MCP server, deployed as a Databricks App, that lets an MCP client (Claude, Cursor, etc.) ask questions against Databricks Genie, and check that the Fabric/Power BI side of the pipeline is healthy.
Read this alongside the architecture diagram shared in chat before deploying.
What this does — and doesn't — automate
The data model moves from Databricks to Power BI via Fabric mirroring, not via MCP:
Your data model lives in Databricks Unity Catalog.
Fabric's Mirrored Azure Databricks Catalog creates zero-ETL OneLake shortcuts to it and keeps them in sync automatically.
Power BI reads that data live via a Direct Lake semantic model.
A person uses Power BI Copilot, in the Power BI UI, to generate the actual dashboard/report from a natural-language prompt.
This MCP server sits alongside that pipeline. It does not create the mirroring (set up once, manually, in the Fabric portal — see below), and it cannot trigger Copilot's report generation (no public API exists for that). What it does give an MCP client:
genie_ask/genie_get_result/genie_list_spaces— ask Genie questions and read back answers, generated SQL, and result rows.fabric_mirror_status— confirm the mirrored catalog is synced.powerbi_list_datasets/powerbi_list_reports/powerbi_refresh_dataset— discovery and refresh operations against Power BI.genie_to_copilot_handoff— turns a Genie answer into a ready-to-paste Copilot prompt, so the human's last step is "paste and go" instead of starting from scratch.
Related MCP server: Microsoft Fabric MCP Server
Prerequisites (set these up before deploying the server)
Genie space in Databricks over your Unity Catalog data model. Note its space ID.
Fabric mirroring: in the Fabric portal, create a Mirrored Azure Databricks Catalog item pointing at your Unity Catalog. Note the Fabric workspace ID and the mirrored item ID. https://learn.microsoft.com/en-us/fabric/mirroring/azure-databricks-tutorial
Power BI semantic model in Direct Lake mode built on top of the mirrored OneLake tables.
Entra ID app registration (service principal) for this server to call the Power BI REST API and Fabric REST API:
Grant it a Power BI service principal profile / workspace access (add it as a member of the target Power BI/Fabric workspace).
Note its tenant ID, client ID, and client secret.
Databricks CLI / workspace access to deploy a Databricks App.
Deploying as a Databricks App
Register the values from step 4 as Databricks secrets (scope name is up to you), matching the
valueFromkeys inapp.yaml:genie-space-id,powerbi-tenant-id,powerbi-client-id,powerbi-client-secret,powerbi-group-id,fabric-workspace-id,fabric-mirrored-item-id.Create the Databricks App and upload this folder's source.
Deploy. The MCP endpoint will be available at
https://<app-url>/mcp.Point your MCP client at that URL (OAuth is handled by Databricks Apps for inbound access).
Full steps: https://docs.databricks.com/aws/en/generative-ai/mcp/custom-mcp
Local development
pip install -r requirements.txt
cp .env.example .env # fill in real values
python app.pyBefore you deploy this for real — verify these against current docs
I wrote this scaffold from public documentation, not against a live workspace, so a few pieces need a quick check before you trust them:
src/genie_tools.py: thedatabricks-sdkGenie method names (start_conversation_and_wait,create_message_and_wait,get_message_query_result,list_spaces) — confirm against the version ofdatabricks-sdkyou pin.src/fabric_tools.py: the Fabric REST API path for item status — Fabric's API surface is newer and evolves faster than Power BI's.app.yaml: the secret-binding syntax (env/valueFrom) — confirm against the current Databricks Apps schema.app.py: themcp.run(...)call signature for the installedmcpSDK version (host/port handling has changed across releases).
None of these are exotic, but I can't execute this against your workspace, so treat this as a solid first draft to test, not a verified-working build.
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.
Related MCP Connectors
Governed BI MCP. Ask questions of live company data and list workspace sources via OAuth.
Governed data discovery, exact queries, decisions, simulations, and runtime utilities over MCP.
Let AI agents query data and act across all your business apps via MCP.
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with Databricks Genie Spaces through MCP tools. Provides secure OAuth-based access to query and interact with Databricks data catalogs and schemas via custom Genie interfaces.
- AlicenseBqualityDmaintenanceEnables AI assistants to interact with Microsoft Fabric and Power BI services through the Model Context Protocol. Users can manage workspaces, execute DAX queries, refresh datasets, and create Fabric notebooks using natural language.6222MIT
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Power BI and Fabric through MCP tools, including workspace discovery and semantic model queries, with an agent loop and HTTP endpoints for Next.js backends.47MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for Microsoft Fabric REST APIs that enables data engineers and analysts to manage Fabric components using AI assistants.21AGPL 3.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ericlxbgit/databricks-genie-fabric-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server