@lightdash-tools/mcp 0.3.1 → 0.3.2
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/dist/bin.js +1 -1
- package/package.json +4 -4
- package/src/bin.ts +1 -1
package/dist/bin.js
CHANGED
|
@@ -44,7 +44,7 @@ const program = new commander_1.Command();
|
|
|
44
44
|
program
|
|
45
45
|
.name('lightdash-mcp')
|
|
46
46
|
.description('MCP server for Lightdash AI')
|
|
47
|
-
.version('0.3.
|
|
47
|
+
.version('0.3.2')
|
|
48
48
|
.option('--http', 'Run as HTTP server instead of Stdio')
|
|
49
49
|
.option('--safety-mode <mode>', 'Filter registered tools by safety mode (read-only, write-idempotent, write-destructive)')
|
|
50
50
|
.option('--projects <uuids>', 'Comma-separated list of allowed project UUIDs (overrides LIGHTDASH_ALLOWED_PROJECTS; empty = all allowed)')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lightdash-tools/mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "MCP server and utilities for Lightdash AI.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"lightdash-mcp": "./dist/bin.js"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
14
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
15
15
|
"commander": "^14.0.3",
|
|
16
16
|
"zod": "^4.3.6",
|
|
17
|
-
"@lightdash-tools/client": "0.3.
|
|
18
|
-
"@lightdash-tools/common": "0.3.
|
|
17
|
+
"@lightdash-tools/client": "0.3.2",
|
|
18
|
+
"@lightdash-tools/common": "0.3.2"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/node": "^25.2.3"
|
package/src/bin.ts
CHANGED