@microsoft/fabric-mcp-darwin-x64 0.0.0-beta.3 → 0.0.0-beta.4

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.
Files changed (3) hide show
  1. package/README.md +16 -1
  2. package/dist/fabmcp +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -119,6 +119,22 @@ The Fabric MCP Server exposes the following tools for AI agents:
119
119
 
120
120
  > Always verify available commands via `--help`. Command names and availability may change between releases.
121
121
 
122
+ ## OneLake (`onelake`)
123
+
124
+ | Command | Purpose |
125
+ |---|---|
126
+ | `onelake download file` | Download a OneLake file to disk. |
127
+ | `onelake upload file` | Upload a local file into OneLake. |
128
+ | `onelake directory create` | Create a directory via the DFS endpoint. |
129
+ | `onelake directory delete` | Delete a directory (optionally recursive). |
130
+ | `onelake file list` | List files using the hierarchical file-list endpoint. |
131
+ | `onelake file delete` | Remove individual files from OneLake storage. |
132
+ | `onelake item list` | List workspace items and high-level metadata. |
133
+ | `onelake item list-data` | List Fabric items via the DFS endpoint. |
134
+ | `onelake item create` | Provision new Fabric items (lakehouse, notebook, etc.). |
135
+
136
+ 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`). Use `dotnet run -- onelake --help` (or `fabmcp onelake --help` for published builds) to inspect the complete option set before scripting.
137
+
122
138
  # Support and Reference
123
139
 
124
140
  ## Documentation
@@ -154,7 +170,6 @@ Please read our [Contributing Guide](https://github.com/microsoft/mcp/blob/main/
154
170
  * 🔄 Making pull requests
155
171
 
156
172
  ## Code of Conduct
157
-
158
173
  This project has adopted the
159
174
  [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
160
175
  For more information, see the
package/dist/fabmcp CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/fabric-mcp-darwin-x64",
3
- "version": "0.0.0-beta.3",
3
+ "version": "0.0.0-beta.4",
4
4
  "description": "Microsoft Fabric MCP Server - Model Context Protocol implementation for Fabric, for darwin on x64",
5
5
  "author": "Microsoft",
6
6
  "homepage": "https://github.com/Microsoft/mcp/blob/main/servers/Fabric.Mcp.Server#readme",