Skip to content

Commit 19c4099

Browse files
committed
fix: update readme
1 parent 2c6ef90 commit 19c4099

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Then configure your LLM client (e.g. Claude Desktop or Cursor), like this:
1919
"myDatabuttonApp": {
2020
"command": "uvx",
2121
"args": [
22+
"-U",
2223
"databutton-app-mcp"
2324
],
2425
"env": {
@@ -29,6 +30,27 @@ Then configure your LLM client (e.g. Claude Desktop or Cursor), like this:
2930
}
3031
```
3132

32-
Here DATABUTTON_API_KEY is either the api key or the path to a file containing it.
33+
or this
34+
35+
```json
36+
{
37+
"mcpServers": {
38+
"myDatabuttonApp": {
39+
"command": "uvx",
40+
"args": [
41+
"-U",
42+
"databutton-app-mcp",
43+
"-k",
44+
"/path/to/apikey.txt"
45+
]
46+
}
47+
}
48+
}
49+
```
50+
51+
Here /path/to/apikey.txt is the full path to a file containing the api key,
52+
or DATABUTTON_API_KEY is either the api key value or the path to a file containing it.
3353
You can download the API key for your Databutton app on the app settings page.
3454
Make sure to keep it secure and don't share it.
55+
56+
Note: This is early stage software. The -U flag to uvx make sure you always get the latest version of the tool.

0 commit comments

Comments
 (0)