Skip to content

Which Microsoft Fabric MCP Server Do You Need?

Microsoft ships ten official Model Context Protocol servers for Fabric, six remote and four local, and picking the wrong one is the most common way an AI agent stalls out. A decision tree for choosing the right one, plus your first working connection.

Prasanth SistlaUpdated September 10, 20268 min read

TL;DR

Microsoft ships ten official Model Context Protocol (MCP) servers for Fabric: six remote, four local, each answering a different kind of task. Picking the wrong one is the most common reason an AI agent stalls out mid-workflow. The fix is a decision tree keyed to what you're actually trying to do, not to the acronym: manage the tenant, build or author something, or ask an existing thing a question.

  • The split. Six servers are remote endpoints you authenticate to (Fabric Core, Data Agent, Fabric IQ Ontology, Fabric Data Warehouse, the Real-Time Intelligence remote endpoints, Power BI). Four run as local subprocesses you install (Fabric MCP local, Fabric RTI local, DataFactory, Power BI local).
  • The catch. Eight of the ten are in preview. Tool names and response shapes on those can change release to release, so re-check before shipping anything that depends on one.
  • The payoff. Once one server is connected, an agent answers from your real tenant instead of a training-data guess. Add a second server only when the task needs it.

Scope

Grounded in Microsoft Learn documentation as of September 2026, scoped to official Microsoft-published MCP servers only: no community forks, no third-party wrappers. Eight of the ten servers below are marked preview; that status, and the tool names attached to it, can change before general availability.

Why you need this

You ask an AI coding assistant something reasonable: "What lakehouses exist in my Sales workspace, and does CustomerOrders have a schema I can build a model against?"

Without anything connecting the assistant to your tenant, you get a guess dressed up in confident language. The model has never seen your workspace. It knows what a lakehouse generally is, not what is actually in yours.

Model Context Protocol (MCP) closes that gap. Strip the acronym away and it is a simple idea: a standard way for an AI agent to discover and call tools, instead of every AI product hand-wiring a bespoke integration to every system it touches.

  • An MCP server exposes a system's capabilities as named, typed tools: "list workspaces," "execute a DAX query," "upload a file to OneLake." It doesn't care which AI calls it.
  • An MCP client (built into VS Code with GitHub Copilot, or Claude Code) connects to one or more servers, discovers their tools, and hands them to the model.
  • The agent reads your request, picks the right tool, calls it, and turns the structured result into a natural-language answer.

Write a server once, and every MCP-compatible AI tool can use it. For a Fabric developer, that buys live answers instead of training-data guesses, one interface across a genuinely fragmented surface (OneLake, Data Factory, Real-Time Intelligence, Power BI, each historically its own SDK), and permissions that travel with the person: the official servers enforce your existing Entra ID identity and Fabric RBAC, not a blanket service credential. This guide takes you from not knowing what that means to a working, governed connection, using only servers Microsoft has actually published.

The ten servers

Every row here is something Microsoft built and documents on Learn.

ServerWhat it's forWhere it runsStatus
Fabric Core MCP ServerWorkspaces, items, permissions, folders, capacities, catalog searchRemote, OAuth via Entra IDPreview
Fabric MCP Server (local)Offline API docs and schemas, OneLake file and table ops, item scaffoldingLocal subprocessOpen source
Fabric RTI MCP Server (local)Eventhouse, Eventstream, Activator, map, and Azure Data Explorer queriesLocal, open sourcePreview
Fabric RTI MCP Servers (remote)Hosted Eventhouse (NL-to-KQL), Activator (alerts and rules), and Operations Agent (playbooks) endpointsRemote, one endpoint per componentPreview
Fabric Data Warehouse MCP ServerRuns approved T-SQL against a Warehouse or SQL analytics endpointRemote, OAuth, global or item-scoped endpointPreview
DataFactory MCP ServerPipeline and Dataflow Gen2 managementLocal (.NET global tool)Pipeline tools preview
Data Agent as MCP ServerExposes one published Fabric Data Agent as a callable toolRemote, per workspaceGated by tenant settings
Fabric IQ Ontology MCPQuery a published ontology in natural languageRemote, per ontologyPreview
Power BI MCP Server (local)Author semantic models: TMDL and PBIP editing, DAX validationLocalPublic preview
Power BI MCP Server (remote)Execute DAX, fetch schema and report metadata, NL-to-DAX via CopilotRemote, OAuth, admin-gatedPublic preview

Three things worth knowing before you touch any of them. Preview isn't a formality: tool names and response shapes on these can change release to release. The remote Power BI server needs a tenant admin to flip a setting on first, with its query-generation tool consuming a Copilot license. And the Data Warehouse server exposes exactly one tool, executeSQL: there's no separate schema-browsing tool, so the agent discovers tables by querying INFORMATION_SCHEMA through that same tool.

Most confusion isn't how to install a server, it's which one answers the task in front of you. Here's the same ten servers, routed by what you're trying to do:

Which Microsoft Fabric MCP server do you need?Decision tree routing a Fabric task to one of ten official Microsoft MCP servers, grouped by what you need to see, what you are building, and what kind of question you are asking. A dot marks the eight servers currently in preview.Which Microsoft Fabric MCP server do you need?Start herewhat are you doing in Fabric?Which kind oftask is this?MANAGEBUILDASKWhat do youneed to see?What are youbuilding?What kind ofquestion?Fabric Core MCP Serverremote · Entra ID · workspaces & itemsData Agent as MCPremote · one published data agentFabric IQ Ontology MCPremote · one published ontologyFabric MCP Server (local)local · open source · OneLake + docsDataFactory MCP Serverlocal · .NET tool · pipeline previewPower BI MCP (local)local · semantic models · TMDL/DAXFabric RTI MCP (local)local · open source · Eventhouse/KQLFabric RTI MCP (remote)remote · Eventhouse, Activator,Operations Agent endpointsFabric Data Warehouse MCPremote · executeSQL · T-SQLPower BI MCP (remote)needs tenant admin enabled first,else use the local server abovepreview: verify before depending on itLocal servers are for building. Remote servers are for asking. Microsoft-official servers only.
Decision tree for choosing among the ten official Fabric MCP servers.

The rule of thumb underneath it: local servers are for building (you're changing a model, a file, a pipeline), remote servers are for asking (you're querying something that already exists without running infrastructure). A real workflow often registers one of each.

Your first connection

Every official server follows one of two setup patterns.

Local server (stdio). The local Fabric MCP Server, RTI local, DataFactory, and local Power BI server all work this way. In VS Code, install the Fabric MCP Server extension and it registers itself. In Claude Code:

claude mcp add fabric-local -- npx -y @microsoft/fabric-mcp@latest server start --mode all

Remote server (OAuth). Fabric Core, Fabric Data Warehouse, the RTI remote endpoints, the remote Power BI server, the Data Agent server, and the Ontology server all work this way. No install, just a URL and a sign-in. In VS Code: command palette, then MCP: Add Server, then HTTP, then paste the endpoint. In Claude Code:

claude mcp add --transport http fabric-core https://api.fabric.microsoft.com/v1/mcp/core

This registers in a "needs authentication" state. Run /mcp, select the server, choose Authenticate, and complete the Entra ID sign-in that opens in your browser.

Either pattern ends the same way: ask something grounded ("What Fabric workload types are available?"), and if the answer comes from the tool instead of a guess, you're connected.

Using more than one

One server answers one kind of question. A real workflow runs several together, and because an agent is now acting on a live tenant, it needs guardrails.

  • Register more than one, deliberately, at project scope. A typical set is small: Fabric Core for context, the local server you're actively building on, and one domain server if the task needs it. Registering at project scope (.mcp.json for Claude Code, .vscode/mcp.json for VS Code) ships the registration with the project instead of your personal config.
  • Add the Microsoft Learn MCP Server for everything else. It's a free, no-auth, remote server that searches and fetches Microsoft's own documentation, not just Fabric, everything Microsoft publishes on Learn. It isn't a Fabric server, but it's the natural pairing: your agent checks a claim against current docs instead of guessing from training data.
  • Write repeatable procedures down, don't re-explain them. Once you're calling the same tool sequence for the same kind of task, turn it into a reusable instruction file or Claude Code skill that names which tools to call and in what order.
  • Put a check before anything irreversible. No official server has a universal "confirm before destructive action" flag. Build that yourself, especially around anything still preview.
  • Know where the compliance boundary sits. Microsoft states explicitly that once a response leaves an official server and lands in your AI client, it's subject to that client's own data-handling terms. Fine for development. Worth a second look before regulated data goes through the same path in production.

Three pitfalls catch people early. A local server dies with your session (it's a subprocess, no daemon, so check whether the client restarted if a tool disappears). Remote doesn't mean available (the remote Power BI server needs a tenant admin toggle most developers can't flip themselves). And row-level security has a gap under service principals: the remote Power BI server enforces RLS for signed-in users but explicitly not for service-principal authentication. Verify, don't assume.

The bottom line

MCP doesn't add intelligence to Fabric development. It removes the translation layer between what you want to ask and the API call that answers it. Governance, RBAC, and what's actually GA are unchanged. MCP just lets an agent reach it in your words instead of the API's.

Pick the row in the decision tree that matches today's task, connect one server, and watch it answer from your real tenant instead of a guess. Add a second server when the task needs it. That's the whole climb, and nothing on it requires anything Microsoft hasn't already shipped.

One thing this piece doesn't settle: everything above assumes an agent acting as you. Under a service principal, or once a broader agent control plane sits in front of Fabric, does row-level and object-level security enforcement survive that hop? Real open question, bigger than a footnote here. Next piece.