You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Table of Contents
7
7
-[Initial setup](#initial-setup)
8
8
-[Quick start](#quick-start)
9
9
-[Demo](#demo)
10
-
-[Configuartion details](#configuartion-details)
10
+
-[Configuration details](#configuration-details)
11
11
-[MCP server config file](#mcp-server-config-file)
12
12
-[Format](#format)
13
13
-[Modes](#modes)
@@ -88,13 +88,21 @@ The quickest way to do this setup is -
88
88
1. Create the dremio config file using
89
89
90
90
```shell
91
-
$ uv run dremio-mcp-server config create dremio \
91
+
$ uv run dremio-mcp-server config create dremioai \
92
92
--uri <dremio uri> \
93
93
--pat <dremio pat> \
94
94
# optional: add your project ID if setting up for dremio cloud
95
95
# --project-id <dremio project id>
96
96
```
97
97
98
+
Note: For security purposes, if you don't want the PAT to leak into your shell history file, create a file with your PAT in it and give it as an argument to the dremio config. Example:
99
+
100
+
```shell
101
+
$ uv run dremio-mcp-server config create dremioai \
102
+
--uri <dremio uri> \
103
+
--pat @/path/to/tokenfile \
104
+
```
105
+
98
106
2. Download and install Claude desktop. And then create the Claude config file using
99
107
100
108
```shell
@@ -104,7 +112,7 @@ $ uv run dremio-mcp-server config create claude
104
112
3. Validate the config files using
105
113
106
114
```shell
107
-
$ uv run dremio-mcp-server config list --type claude`
115
+
$ uv run dremio-mcp-server config list --type claude
0 commit comments