@sugitat/redash-mcp 0.0.8
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 +179 -0
- package/dist/cli.js +27 -0
- package/dist/index.js +2416 -0
- package/dist/logger.js +76 -0
- package/dist/redashClient.js +935 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sugitat/redash-mcp",
|
|
3
|
+
"version": "0.0.8",
|
|
4
|
+
"description": "MCP server for Redash integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"redash-mcp": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "npx tsc && chmod +x dist/index.js dist/cli.js",
|
|
15
|
+
"start": "node dist/cli.js",
|
|
16
|
+
"dev": "ts-node src/index.ts",
|
|
17
|
+
"test": "jest --passWithNoTests",
|
|
18
|
+
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
19
|
+
"inspector:headless": "BROWSER=none npx @modelcontextprotocol/inspector node dist/index.js",
|
|
20
|
+
"e2e:test": "playwright test",
|
|
21
|
+
"e2e:ui": "playwright test --ui",
|
|
22
|
+
"e2e:report": "playwright show-report",
|
|
23
|
+
"prepublishOnly": "npm run build"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"redash",
|
|
27
|
+
"mcp",
|
|
28
|
+
"ai",
|
|
29
|
+
"claude"
|
|
30
|
+
],
|
|
31
|
+
"author": "sugitat",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@modelcontextprotocol/sdk": "^1.1.0",
|
|
38
|
+
"axios": "^1.6.2",
|
|
39
|
+
"dotenv": "^16.3.1",
|
|
40
|
+
"zod": "^3.22.4"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@playwright/test": "^1.57.0",
|
|
44
|
+
"@types/jest": "^29.5.8",
|
|
45
|
+
"@types/node": "^20.9.0",
|
|
46
|
+
"jest": "^29.7.0",
|
|
47
|
+
"ts-jest": "^29.1.1",
|
|
48
|
+
"ts-node": "^10.9.1",
|
|
49
|
+
"typescript": "^5.2.2"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=18"
|
|
53
|
+
}
|
|
54
|
+
}
|