Skip to content

Commit 040d529

Browse files
Clarifying experimental and allow_dml settings (#26)
* Update README.md Clarified install instructions * Update README.md * Update README.md uri clarification and project id requirement for cloud * Update README.md Co-authored-by: Aniket Kulkarni <aniket-s-kulkarni@users.noreply.github.com> * Update README.md Co-authored-by: Aniket Kulkarni <aniket-s-kulkarni@users.noreply.github.com> * Update README.md Co-authored-by: Aniket Kulkarni <aniket-s-kulkarni@users.noreply.github.com> * Update settings.md * Update settings.md * Update README.md --------- Co-authored-by: Aniket Kulkarni <aniket-s-kulkarni@users.noreply.github.com>
1 parent 7698e5e commit 040d529

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ This file is located by default at `$HOME/.config/dremioai/config.yaml` but can
176176
dremio:
177177
uri: https://.... # the Dremio URI
178178
pat: "@~/ws/tokens/idl.token" # PAT can be put in a file and used here with @ prefix
179-
# optional
180-
# project_id: ....
181-
179+
project_id: <string> Project ID required for Dremio Cloud
180+
enable_experimental: <bool> # Optional: Enable experimental features
181+
allow_dml: <bool> # Optional: Allow MCP Server to create views in Dremio
182182
tools:
183183
server_mode: FOR_DATA_PATTERNS # the serverm
184184

docs/settings.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ dremio:
1616
uri: https://api.dremio.cloud
1717
pat: your-pat-here
1818
project_id: project123
19+
experimental_enabled: false
20+
allow_dml: false
1921
tools:
2022
server_mode: FOR_SELF
2123
```
@@ -53,6 +55,7 @@ dremio:
5355
pat: <string> # Personal Access Token
5456
project_id: <string> # Optional: Project ID for Dremio Cloud
5557
enable_experimental: <bool> # Optional: Enable experimental features
58+
allow_dml: <bool> # Optional: Allow MCP Server to create views in Dremio
5659
```
5760
5861
URI can be specified as:
@@ -79,6 +82,8 @@ Server modes:
7982
- `FOR_DATA_PATTERNS`: Data pattern analysis
8083
- `EXPERIMENTAL`: Experimental features
8184

85+
NOTE: if you intend to use experimental features you must also set experimental_enabled: true as shown above.
86+
8287
Multiple modes can be combined using comma separation: `FOR_SELF,FOR_PROMETHEUS`
8388

8489
### Prometheus Settings
@@ -139,8 +144,9 @@ Example:
139144
dremio:
140145
uri: "https://api.dremio.cloud"
141146
pat: "@~/tokens/dremio.pat"
142-
project_id: "project123" # optional only for DC
143-
147+
project_id: "project123" # required only for DC
148+
enable_experimental: <bool> # Optional: Enable experimental features
149+
allow_dml: <bool> # Optional: Allow MCP Server to create views in Dremio
144150
tools:
145151
server_mode: "FOR_SELF,FOR_DATA_PATTERNS"
146152

0 commit comments

Comments
 (0)