@microsoft/fabric-mcp-linux-x64 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -19,6 +19,7 @@ A local-first Model Context Protocol (MCP) server that provides AI agents with c
19
19
  - [API Documentation & Best Practices](#api-documentation--best-practices)
20
20
  - [OneLake Data Operations](#onelake-data-operations)
21
21
  - [Core Fabric Operations](#core-fabric-operations)
22
+ - [Data Factory Operations](#data-factory-operations)
22
23
  - [Support and Reference](#support-and-reference)
23
24
  - [Documentation](#documentation)
24
25
  - [Feedback and Support](#feedback-and-support)
@@ -37,6 +38,7 @@ Key capabilities:
37
38
  - **Item Definition Knowledge**: JSON schemas for every Fabric item type (Lakehouses, pipelines, semantic models, notebooks, etc.)
38
39
  - **Built-in Best Practices**: Embedded guidance on pagination, error handling, and recommended patterns
39
40
  - **Local-First Security**: Runs entirely on your machine—never connects to your Fabric environment
41
+ - **Data Factory Integration**: Pipeline and Dataflow Gen2 management with M query execution
40
42
 
41
43
  # Installation
42
44
  - 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`.
@@ -157,6 +159,18 @@ The Fabric MCP Server exposes tools organized into three categories:
157
159
  |-----------|-------------|
158
160
  | `core_create-item` | Creates new Fabric items (Lakehouses, Notebooks, etc.). |
159
161
 
162
+ ### Data Factory Operations
163
+
164
+ | Tool Name | Description |
165
+ |-----------|-------------|
166
+ | `datafactory_list-pipelines` | Lists all pipelines in a Microsoft Fabric workspace. |
167
+ | `datafactory_create-pipeline` | Creates a new pipeline in a workspace. |
168
+ | `datafactory_get-pipeline` | Gets details of a specific pipeline. |
169
+ | `datafactory_run-pipeline` | Runs a pipeline on demand. |
170
+ | `datafactory_list-dataflows` | Lists all Dataflow Gen2 items in a workspace. |
171
+ | `datafactory_create-dataflow` | Creates a new Dataflow Gen2 item. |
172
+ | `datafactory_execute-query` | Executes an M (Power Query) query against a dataflow. |
173
+
160
174
  > Always verify available commands via `--help`. Command names and availability may change between releases.
161
175
 
162
176
  # Support and Reference
@@ -168,7 +182,7 @@ The Fabric MCP Server exposes tools organized into three categories:
168
182
 
169
183
  ## Feedback and Support
170
184
 
171
- - The Microsoft Fabric MCP Server is an **open-source project in Public Preview**. Support for this server implementation is primarily provided through community channels and GitHub repositories. Customers with qualifying Microsoft enterprise support agreements may have access to limited support for broader Microsoft Fabric and platform scenarios; review the [Microsoft Support Policy](https://github.com/microsoft/mcp/blob/main/servers/Fabric.Mcp.Server/SUPPORT.md#microsoft-support-policy) section of this project for more details.
185
+ - Support for this server implementation is primarily provided through community channels and GitHub repositories. Customers with qualifying Microsoft enterprise support agreements may have access to limited support for broader Microsoft Fabric and platform scenarios; review the [Microsoft Support Policy](https://github.com/microsoft/mcp/blob/main/servers/Fabric.Mcp.Server/SUPPORT.md#microsoft-support-policy) section of this project for more details.
172
186
  - Check the [Troubleshooting guide](https://github.com/microsoft/mcp/blob/main/servers/Fabric.Mcp.Server/TROUBLESHOOTING.md) to diagnose and resolve common issues.
173
187
  - We're building this in the open. Your feedback is much appreciated!
174
188
  - [Open an issue](https://github.com/microsoft/mcp/issues) in the public GitHub repository — we'd love to hear from you!
package/dist/fabmcp CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/fabric-mcp-linux-x64",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Microsoft Fabric MCP Server - Model Context Protocol implementation for Fabric, for linux on x64",
5
5
  "author": "Microsoft",
6
6
  "homepage": "https://github.com/Microsoft/mcp/blob/main/servers/Fabric.Mcp.Server#readme",
@@ -14,8 +14,8 @@
14
14
  "url": "https://github.com/microsoft/mcp/issues"
15
15
  },
16
16
  "repository": {
17
- "type": "git",
18
- "url": "https://github.com/microsoft/mcp.git"
17
+ "url": "https://github.com/microsoft/mcp.git",
18
+ "type": "git"
19
19
  },
20
20
  "engines": {
21
21
  "node": ">=20.0.0"
@@ -1,5 +0,0 @@
1
- {
2
- "RootCommandGroupName": "fabmcp",
3
- "Name": "Fabric.Mcp.Server",
4
- "DisplayName": "Fabric MCP Server"
5
- }