File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ Then configure your LLM client (e.g. Claude Desktop or Cursor), like this:
19
19
"myDatabuttonApp" : {
20
20
"command" : " uvx" ,
21
21
"args" : [
22
+ " -U" ,
22
23
" databutton-app-mcp"
23
24
],
24
25
"env" : {
@@ -29,6 +30,27 @@ Then configure your LLM client (e.g. Claude Desktop or Cursor), like this:
29
30
}
30
31
```
31
32
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.
33
53
You can download the API key for your Databutton app on the app settings page.
34
54
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.
You can’t perform that action at this time.
0 commit comments