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

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 +18 -1
  2. package/dist/fabmcp +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -92,6 +92,8 @@ Key capabilities:
92
92
 
93
93
  ### 📝 Best Practices & Examples
94
94
 
95
+ * "Show me best practices for handling API throttling in Fabric"
96
+ * "How should I implement retry logic for Fabric API rate limits?"
95
97
  * "List recommended retry/backoff behavior for Fabric APIs when rate-limited"
96
98
  * "Show me best practices for authenticating with Fabric APIs"
97
99
  * "Get example request/response payloads for creating a Notebook"
@@ -119,6 +121,22 @@ The Fabric MCP Server exposes the following tools for AI agents:
119
121
 
120
122
  > Always verify available commands via `--help`. Command names and availability may change between releases.
121
123
 
124
+ ## OneLake (`onelake`)
125
+
126
+ | Command | Purpose |
127
+ |---|---|
128
+ | `onelake download file` | Download a OneLake file to disk. |
129
+ | `onelake upload file` | Upload a local file into OneLake. |
130
+ | `onelake directory create` | Create a directory via the DFS endpoint. |
131
+ | `onelake directory delete` | Delete a directory (optionally recursive). |
132
+ | `onelake file list` | List files using the hierarchical file-list endpoint. |
133
+ | `onelake file delete` | Remove individual files from OneLake storage. |
134
+ | `onelake item list` | List workspace items and high-level metadata. |
135
+ | `onelake item list-data` | List Fabric items via the DFS endpoint. |
136
+ | `onelake item create` | Provision new Fabric items (lakehouse, notebook, etc.). |
137
+
138
+ 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.
139
+
122
140
  # Support and Reference
123
141
 
124
142
  ## Documentation
@@ -154,7 +172,6 @@ Please read our [Contributing Guide](https://github.com/microsoft/mcp/blob/main/
154
172
  * 🔄 Making pull requests
155
173
 
156
174
  ## Code of Conduct
157
-
158
175
  This project has adopted the
159
176
  [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
160
177
  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.5",
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",