Skip to content
LangChain

Microsoft Fabric MCP Server for LangChain

com.microsoft/microsoft-fabric

MCP tools for interacting with Microsoft Fabric

client:LangChain transport:stdio runtime:nuget

Install Microsoft Fabric MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "microsoft-fabric": {
            "transport": "stdio",
            "command": "dnx",
            "args": ["Microsoft.Fabric.Mcp", "--yes"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

Microsoft Fabric MCP Server in other clients