@outsidedata/dolex 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,6 +39,16 @@ Dolex is an MCP server that gives your AI assistant a complete data analysis too
|
|
|
39
39
|
|
|
40
40
|
## Install
|
|
41
41
|
|
|
42
|
+
```bash
|
|
43
|
+
npm install -g @outsidedata/dolex
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
To update:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npm update -g @outsidedata/dolex
|
|
50
|
+
```
|
|
51
|
+
|
|
42
52
|
### Claude Desktop
|
|
43
53
|
|
|
44
54
|
Add to your config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
@@ -47,8 +57,7 @@ Add to your config (`~/Library/Application Support/Claude/claude_desktop_config.
|
|
|
47
57
|
{
|
|
48
58
|
"mcpServers": {
|
|
49
59
|
"dolex": {
|
|
50
|
-
"command": "
|
|
51
|
-
"args": ["@outsidedata/dolex"]
|
|
60
|
+
"command": "dolex"
|
|
52
61
|
}
|
|
53
62
|
}
|
|
54
63
|
}
|
|
@@ -57,13 +66,13 @@ Add to your config (`~/Library/Application Support/Claude/claude_desktop_config.
|
|
|
57
66
|
### Claude Code
|
|
58
67
|
|
|
59
68
|
```bash
|
|
60
|
-
claude mcp add dolex --
|
|
69
|
+
claude mcp add dolex -- dolex
|
|
61
70
|
```
|
|
62
71
|
|
|
63
72
|
### Any MCP Client
|
|
64
73
|
|
|
65
74
|
```bash
|
|
66
|
-
|
|
75
|
+
dolex
|
|
67
76
|
```
|
|
68
77
|
|
|
69
78
|
## The Query Engine
|
package/package.json
CHANGED