惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
The Cloudflare Blog
I
InfoQ
美团技术团队
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
L
LangChain Blog
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Microsoft Fabric Just Exposed Its MCP Architecture. Here'...
Om Shree · 2026-04-24 · via DEV Community

Enterprise data platforms have spent decades building walls around their data. Microsoft just shipped the protocol that lets AI agents walk through those walls — natively, securely, and without a single custom integration.

The Problem It's Solving

Every time an engineering team wants to connect an AI agent to a data platform, they rebuild the same plumbing from scratch: OAuth2 flows, token management, rate-limiting logic, API versioning, error handling. That's before the agent even does anything useful. Multiply that across a company running GitHub Copilot, Claude, Cursor, and Copilot Studio simultaneously, and the integration surface becomes unmanageable.

The deeper issue is that AI tools have no shared language for talking to enterprise systems. Each integration is bespoke, brittle, and built by someone who had better things to do. The agent either gets too little context or too much — and neither produces reliable outputs against production infrastructure.

How the Fabric MCP Architecture Actually Works

Microsoft Fabric is now shipping two distinct MCP entry points, each targeting a different level of autonomy.

Fabric Local MCP is now Generally Available. It's an open-source server that runs on the developer's machine, giving AI assistants deep knowledge of Fabric's APIs. It also enables local-to-cloud data operations — upload data to OneLake, create items, inspect table schemas — all within a single conversation. The Local MCP can wrap the Fabric CLI as tools, meaning CI/CD pipelines can use it to deploy changes with no human in the loop. Authentication is integrated, so there's no manual token management. The recommended install path is a VS Code extension that configures everything automatically.

Fabric Remote MCP is in Preview. This is the cloud-hosted server — no local setup required. It lets AI agents perform authenticated operations directly in a Fabric environment: managing workspaces, handling permissions, executing tasks on behalf of teams. This is the entry point for autonomous agents running in Copilot Studio, not developers pair-programming at a terminal.

Both run inside the security model, audit trail, and RBAC boundaries Fabric already enforces. The agents can only access what the authenticated user can access. There are no additional roles to provision, no shadow permissions, no new attack surface to manage.

The underlying protocol making this possible is MCP — originally created by Anthropic and now adopted by GitHub, Cloudflare, Stripe, and a growing list of enterprise platforms. Rather than creating unique integrations for each AI tool, exposing the platform as an MCP server means any MCP-compatible client can connect instantly. Microsoft Fabric

What Teams Are Actually Using It For

The use cases split cleanly by role.

A developer building a data pipeline uses the Local MCP to let GitHub Copilot or Claude look up the correct Fabric API spec, generate code against it, upload data to OneLake, and validate the result — all within one conversation thread. The agent isn't guessing at APIs or hallucinating parameter names. It's reading the live spec through the MCP server.

A data team running autonomous workflows points Copilot Studio at the Remote MCP. The agent provisions workspaces, adjusts permissions, and manages resources on behalf of the team without anyone opening the Fabric portal.

A CI/CD pipeline uses the Fabric CLI wrapped as MCP tools to deploy changes on a schedule, no human in the loop, no interactive auth required.

And separately, OneLake MCP is now Generally Available as part of the same extension, letting agents traverse the full OneLake hierarchy — from workspace to item to table schema to physical Delta Lake files — through natural language. An admin could ask an agent to inventory every item in a workspace, a data engineer could check table optimization across lakehouses, and an analyst could explore an unfamiliar dataset without writing a query. Microsoft Fabric

Why This Is a Bigger Deal Than It Looks

When Microsoft previewed the Fabric Local MCP in October, the announcement became one of their most-read posts, approaching 100K views. Microsoft Fabric That's not a vanity metric — it's a signal that data engineers are actively looking for exactly this kind of native agent integration, not another middleware layer to manage.

The more consequential signal is architectural. Microsoft didn't build a Fabric-specific agent framework. They implemented MCP — the same protocol Anthropic, GitHub, Cloudflare, and Stripe are converging on — and exposed Fabric through it. That's a deliberate bet that the agentic ecosystem will standardize on one protocol, and that being MCP-native is table stakes for enterprise platforms going forward.

The analogy Microsoft uses in their own post is precise: MCP is to AI what USB was to hardware — a universal connector that replaces a tangle of proprietary cables with a single standard. Microsoft Fabric USB didn't make hardware more capable. It made capability composable. That's exactly what MCP does for data infrastructure.

For teams evaluating where to build agentic data workflows, this changes the calculus. Fabric is no longer just a lakehouse or a BI platform. It's now a surface that any MCP-compatible agent can operate against, with enterprise-grade governance baked in, not bolted on.

Availability and Access

Fabric Local MCP is Generally Available now. Install via the VS Code Marketplace extension — it configures automatically and works with GitHub Copilot, Cursor, Claude Desktop, and any MCP-compatible client. Fabric Remote MCP is in Preview. OneLake MCP tools ship automatically as part of the Fabric MCP extension if you already have it installed — no additional configuration required.


The question enterprise data teams should be asking isn't whether to adopt MCP-native tooling. It's how quickly they can deprecate the custom integration layers they've already built. That migration just got a lot easier.

Follow for more coverage on MCP, agentic AI, and AI infrastructure.