@outsidedata/dolex 0.1.4 → 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 +2 -2
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outsidedata/dolex",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "AI data analyst — 43 handcrafted visualization patterns, query engine with window functions, and auto-analysis planning via MCP",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
},
|
|
101
101
|
"repository": {
|
|
102
102
|
"type": "git",
|
|
103
|
-
"url": "https://github.com/
|
|
103
|
+
"url": "https://github.com/outsidedata/dolex.git"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
106
|
"@types/better-sqlite3": "^7.6.13",
|