Skip to content

Commit 45ab7d6

Browse files
Merge pull request #17 from emresaglam-dremio/minor-documentation-fixes
2 parents 5df65ed + fd6f404 commit 45ab7d6

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.pyc
2+
.venv

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Table of Contents
77
- [Initial setup](#initial-setup)
88
- [Quick start](#quick-start)
99
- [Demo](#demo)
10-
- [Configuartion details](#configuartion-details)
10+
- [Configuration details](#configuration-details)
1111
- [MCP server config file](#mcp-server-config-file)
1212
- [Format](#format)
1313
- [Modes](#modes)
@@ -88,13 +88,21 @@ The quickest way to do this setup is -
8888
1. Create the dremio config file using
8989

9090
```shell
91-
$ uv run dremio-mcp-server config create dremio \
91+
$ uv run dremio-mcp-server config create dremioai \
9292
--uri <dremio uri> \
9393
--pat <dremio pat> \
9494
# optional: add your project ID if setting up for dremio cloud
9595
# --project-id <dremio project id>
9696
```
9797

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+
98106
2. Download and install Claude desktop. And then create the Claude config file using
99107

100108
```shell
@@ -104,7 +112,7 @@ $ uv run dremio-mcp-server config create claude
104112
3. Validate the config files using
105113

106114
```shell
107-
$ uv run dremio-mcp-server config list --type claude`
115+
$ uv run dremio-mcp-server config list --type claude
108116

109117
Default config file: '/Users/..../Library/Application Support/Claude/claude_desktop_config.json' (exists = True)
110118
{
@@ -123,7 +131,7 @@ Default config file: '/Users/..../Library/Application Support/Claude/claude_desk
123131
}
124132
}
125133

126-
$ uv run dremio-mcp-server config list --type claude`
134+
$ uv run dremio-mcp-server config list --type claude
127135
Default config file: /Users/..../.config/dremioai/config.yaml (exists = True)
128136
dremio:
129137
enable_experimental: false
@@ -136,11 +144,11 @@ tools:
136144
**You are done!**. You can start Claude and start using the MCP server
137145

138146
### Demo
139-
![Demo](assests/demo.gif)
147+
![Demo](assets/demo.gif)
140148

141149
The rest of the documentation below provides details of the config files
142150

143-
## Configuartion details
151+
## Configuration details
144152

145153
### MCP server config file
146154

File renamed without changes.

0 commit comments

Comments
 (0)