npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@microsoft/fabric-mcp-win32-x64

v0.0.0-beta.8

Published

Microsoft Fabric MCP Server - Model Context Protocol implementation for Fabric, for win32 on x64

Readme

Microsoft Fabric MCP Server NPM Package

A local-first Model Context Protocol (MCP) server that provides AI agents with comprehensive access to Microsoft Fabric's public APIs, item definitions, and best practices. The Fabric MCP Server packages complete OpenAPI specifications into a single context layer for AI-assisted development—without connecting to live Fabric environments.

Table of Contents

Overview

Microsoft Fabric MCP Server gives your AI agents the knowledge they need to generate robust, production-ready code for Microsoft Fabric—all without directly accessing your environment.

Key capabilities:

  • Complete API Context: Full OpenAPI specifications for all supported Fabric workloads
  • Item Definition Knowledge: JSON schemas for every Fabric item type (Lakehouses, pipelines, semantic models, notebooks, etc.)
  • Built-in Best Practices: Embedded guidance on pagination, error handling, and recommended patterns
  • Local-First Security: Runs entirely on your machine—never connects to your Fabric environment

Installation

  • To use Fabric MCP server from node one must have Node.js (LTS) installed and available on your system PATH — this provides both npm and npx. We recommend Node.js 20 LTS or later. To verify your installation run: node --version, npm --version, and npx --version.

  • Configure the mcp.json file with the following:

    {
        "mcpServers": {
            "fabric-mcp-server": {
            "command": "npx",
            "args": [
                "-y",
                "@microsoft/fabric-mcp@latest",
                "server",
                "start",
                "--mode",
                "all"
                ]
            }
        }
    }

Note: When manually configuring Visual Studio and Visual Studio Code, use servers instead of mcpServers as the root object.

Client-Specific Configuration | IDE | File Location | Documentation Link | |-----|---------------|-------------------| | Claude Code | ~/.claude.json or .mcp.json (project) | Claude Code MCP Configuration | | Claude Desktop | ~/.claude/claude_desktop_config.json (macOS)%APPDATA%\Claude\claude_desktop_config.json (Windows) | Claude Desktop MCP Setup | | Cursor | ~/.cursor/mcp.json or .cursor/mcp.json | Cursor MCP Documentation | | VS Code | .vscode/mcp.json (workspace)settings.json (user) | VS Code MCP Documentation | | Windsurf | ~/.codeium/windsurf/mcp_config.json | Windsurf Cascade MCP Integration |

Usage

Getting Started

  1. Open GitHub Copilot in VS Code and switch to Agent mode.
  2. Click refresh on the tools list
    • You should see the Fabric MCP Server in the list of tools
  3. Try a prompt that uses Fabric context, such as What Fabric workload types are available?
    • The agent should be able to use the Fabric MCP Server tools to complete your query
  4. Check out the Microsoft Fabric documentation and review the troubleshooting guide for commonly asked questions
  5. We're building this in the open. Your feedback is much appreciated!

What can you do with the Fabric MCP Server?

✨ The Fabric MCP Server supercharges your agents with Microsoft Fabric context. Here are some prompts you can try:

📊 Fabric Workloads & APIs

  • "What are the available Fabric workload types I can work with?"
  • "Show me the OpenAPI operations for 'notebook' and give a sample creation body"
  • "Get the platform-level API specifications for Microsoft Fabric"
  • "List all supported Fabric item types"

🏗️ Resource Definitions & Schemas

  • "Create a Lakehouse resource definition with a schema that enforces a string column and a datetime column"
  • "Show me the JSON schema for a Data Pipeline item definition"
  • "Generate a Semantic Model configuration with sample measures"
  • "What properties are required for creating a KQL Database?"

📝 Best Practices & Examples

  • "Show me best practices for handling API throttling in Fabric"
  • "How should I implement retry logic for Fabric API rate limits?"
  • "List recommended retry/backoff behavior for Fabric APIs when rate-limited"
  • "Show me best practices for authenticating with Fabric APIs"
  • "Get example request/response payloads for creating a Notebook"
  • "What are the pagination patterns for Fabric REST APIs?"

🔧 Development Workflows

  • "Generate a data pipeline configuration with sample data sources"
  • "Help me scaffold a Fabric workspace with Lakehouse and notebooks"
  • "Show me how to handle long-running operations in Fabric APIs"
  • "What's the recommended error handling pattern for Fabric API calls?"

Available Tools

The Fabric MCP Server exposes the following tools for AI agents:

| Tool | Tool Name | Description | |------|-----------|-------------| | List Public APIs | publicapis_list | List all Microsoft Fabric workload types that have public API specifications available | | Get Public API | publicapis_get | Retrieve the complete OpenAPI/Swagger specification for a specific Microsoft Fabric workload | | Get Platform API | publicapis_platform_get | Retrieve the OpenAPI/Swagger specification for Microsoft Fabric platform APIs | | Get Best Practices | publicapis_bestpractices_get | Retrieve embedded best practice documentation and guidance for a specific Microsoft Fabric topic | | Get Best Practices Examples | publicapis_bestpractices_examples_get | Retrieve all example API request/response files for a specific Microsoft Fabric workload | | Get Item Definition | publicapis_bestpractices_itemdefinition_get | Retrieve the JSON schema definitions for specific items within a Microsoft Fabric workload's API |

Always verify available commands via --help. Command names and availability may change between releases.

OneLake (onelake)

| Command | Purpose | |---|---| | onelake download file | Download a OneLake file to disk. | | onelake upload file | Upload a local file into OneLake. | | onelake directory create | Create a directory via the DFS endpoint. | | onelake directory delete | Delete a directory (optionally recursive). | | onelake file list | List files using the hierarchical file-list endpoint. | | onelake file delete | Remove individual files from OneLake storage. | | onelake item list | List workspace items and high-level metadata. | | onelake item list-data | List Fabric items via the DFS endpoint. | | onelake item create | Provision new Fabric items (lakehouse, notebook, etc.). | | onelake table config get | Retrieve table API configuration for a workspace item. | | onelake table namespace list | Enumerate table namespaces (schemas) exposed through the table API. | | onelake table namespace get | Inspect metadata for a specific namespace. | | onelake table list | List tables published within a namespace. | | onelake table get | Retrieve the definition for a specific table. |

All commands accept either GUID identifiers (--workspace-id, --item-id) or friendly names (--workspace, --item), with the exception of onelake item create, which currently requires GUID identifiers. Friendly-name items must be provided as <itemName>.<itemType> (for example, SalesLakehouse.lakehouse). Table commands also accept the schema via --namespace or its alias --schema. Use dotnet run -- onelake --help (or fabmcp onelake --help for published builds) to inspect the complete option set before scripting.

Support and Reference

Documentation

Feedback and Support

  • Check the Troubleshooting guide to diagnose and resolve common issues.
  • We're building this in the open. Your feedback is much appreciated!
    • 👉 Open an issue in the public GitHub repository — we'd love to hear from you!

Security

The Fabric MCP Server is a local-first tool that runs entirely on your machine. It provides API specifications, schemas, and best practices without connecting to live Microsoft Fabric environments.

MCP as a phenomenon is very novel and cutting-edge. As with all new technology standards, consider doing a security review to ensure any systems that integrate with MCP servers follow all regulations and standards your system is expected to adhere to.

Data Collection

The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.

Contributing

We welcome contributions to the Fabric MCP Server! Whether you're fixing bugs, adding new features, or improving documentation, your contributions are welcome.

Please read our Contributing Guide for guidelines on:

  • 🛠️ Setting up your development environment
  • ✨ Adding new commands
  • 📝 Code style and testing requirements
  • 🔄 Making pull requests

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.


License

This project is licensed under the MIT License — see the LICENSE file for details.