mcp-dashboards 2.1.0 → 2.4.0

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/package.json CHANGED
@@ -1,103 +1,112 @@
1
- {
2
- "name": "mcp-dashboards",
3
- "version": "2.1.0",
4
- "mcpName": "io.github.KyuRish/mcp-dashboards",
5
- "type": "module",
6
- "description": "Interactive chart dashboards inside any AI conversation - 21 themes, live polling, browser preview fallback, export to PNG/PPT/A4",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/KyuRish/mcp-dashboards"
10
- },
11
- "author": "Rishabh Dogra <contact@kyuish.com>",
12
- "license": "FSL-1.1-MIT",
13
- "funding": [
14
- { "type": "buymeacoffee", "url": "https://buymeacoffee.com/kyuish" },
15
- { "type": "github", "url": "https://github.com/sponsors/KyuRish" }
16
- ],
17
- "engines": {
18
- "node": ">=18.0.0"
19
- },
20
- "main": "dist/server.js",
21
- "files": [
22
- "dist"
23
- ],
24
- "scripts": {
25
- "build:ui": "cross-env INPUT=mcp-app.html vite build",
26
- "build:server": "tsc -p tsconfig.server.json",
27
- "build": "npm run build:ui && npm run build:server",
28
- "watch:ui": "cross-env INPUT=mcp-app.html vite build --watch",
29
- "serve": "node dist/index.js",
30
- "start": "npm run build && npm run serve",
31
- "dev": "cross-env NODE_ENV=development concurrently \"npm run watch:ui\" \"node --watch dist/index.js\"",
32
- "prepublishOnly": "npm run build"
33
- },
34
- "dependencies": {
35
- "@modelcontextprotocol/ext-apps": "^1.0.0",
36
- "@modelcontextprotocol/sdk": "^1.24.0",
37
- "cors": "^2.8.5",
38
- "express": "^5.1.0",
39
- "zod": "^4.1.13"
40
- },
41
- "devDependencies": {
42
- "@sgratzl/chartjs-chart-boxplot": "^4.4.5",
43
- "@types/cors": "^2.8.19",
44
- "@types/express": "^5.0.0",
45
- "@types/luxon": "^3.7.1",
46
- "@types/node": "^22.10.0",
47
- "@types/topojson-client": "^3.1.5",
48
- "chart.js": "^4.4.0",
49
- "chartjs-adapter-luxon": "^1.3.1",
50
- "chartjs-chart-financial": "^0.2.1",
51
- "chartjs-chart-geo": "^4.3.6",
52
- "chartjs-chart-sankey": "^0.14.0",
53
- "chartjs-chart-treemap": "^3.1.0",
54
- "chartjs-chart-wordcloud": "^4.4.5",
55
- "chartjs-plugin-annotation": "^3.1.0",
56
- "chartjs-plugin-datalabels": "^2.2.0",
57
- "concurrently": "^9.2.1",
58
- "cross-env": "^10.1.0",
59
- "html2canvas-pro": "^2.0.2",
60
- "luxon": "^3.7.2",
61
- "topojson-client": "^3.1.0",
62
- "typescript": "^5.9.3",
63
- "vite": "^6.0.0",
64
- "vite-plugin-singlefile": "^2.3.0",
65
- "world-atlas": "^2.0.2"
66
- },
67
- "types": "dist/server.d.ts",
68
- "exports": {
69
- ".": {
70
- "types": "./dist/server.d.ts",
71
- "default": "./dist/server.js"
72
- }
73
- },
74
- "bin": {
75
- "mcp-dashboards": "dist/index.js"
76
- },
77
- "keywords": [
78
- "mcp",
79
- "mcp-server",
80
- "mcp-apps",
81
- "dashboard",
82
- "data-visualization",
83
- "charts",
84
- "chart.js",
85
- "interactive",
86
- "ai",
87
- "claude",
88
- "model-context-protocol",
89
- "live-chart",
90
- "real-time",
91
- "export",
92
- "presentation",
93
- "geo",
94
- "choropleth",
95
- "sankey",
96
- "treemap",
97
- "wordcloud",
98
- "themes",
99
- "hero-metric",
100
- "candlestick",
101
- "poll"
102
- ]
103
- }
1
+ {
2
+ "name": "mcp-dashboards",
3
+ "version": "2.4.0",
4
+ "mcpName": "io.github.KyuRish/mcp-dashboards",
5
+ "type": "module",
6
+ "description": "Interactive chart dashboards inside any AI conversation - 21 themes, live polling, browser preview fallback, export to PNG/PPT/A4",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/KyuRish/mcp-dashboards"
10
+ },
11
+ "author": "Rishabh Dogra <contact@kyuish.com>",
12
+ "license": "FSL-1.1-MIT",
13
+ "funding": [
14
+ {
15
+ "type": "buymeacoffee",
16
+ "url": "https://buymeacoffee.com/kyuish"
17
+ },
18
+ {
19
+ "type": "github",
20
+ "url": "https://github.com/sponsors/KyuRish"
21
+ }
22
+ ],
23
+ "engines": {
24
+ "node": ">=18.0.0"
25
+ },
26
+ "main": "dist/server.js",
27
+ "files": [
28
+ "dist",
29
+ "THIRD_PARTY_LICENSES.md"
30
+ ],
31
+ "scripts": {
32
+ "build:ui": "cross-env INPUT=mcp-app.html vite build",
33
+ "build:server": "tsc -p tsconfig.server.json",
34
+ "build": "npm run build:ui && npm run build:server",
35
+ "watch:ui": "cross-env INPUT=mcp-app.html vite build --watch",
36
+ "serve": "node dist/index.js",
37
+ "start": "npm run build && npm run serve",
38
+ "dev": "cross-env NODE_ENV=development concurrently \"npm run watch:ui\" \"node --watch dist/index.js\"",
39
+ "prepublishOnly": "npm run build"
40
+ },
41
+ "dependencies": {
42
+ "@modelcontextprotocol/ext-apps": "^1.7.2",
43
+ "@modelcontextprotocol/sdk": "^1.29.0",
44
+ "cors": "^2.8.6",
45
+ "express": "^5.2.1",
46
+ "ipaddr.js": "^2.4.0",
47
+ "zod": "^4.4.3"
48
+ },
49
+ "devDependencies": {
50
+ "@dagrejs/dagre": "^3.0.0",
51
+ "@sgratzl/chartjs-chart-boxplot": "^4.4.5",
52
+ "@types/cors": "^2.8.19",
53
+ "@types/express": "^5.0.6",
54
+ "@types/luxon": "^3.7.1",
55
+ "@types/node": "^22.19.19",
56
+ "@types/topojson-client": "^3.1.5",
57
+ "chart.js": "^4.5.1",
58
+ "chartjs-adapter-luxon": "^1.3.1",
59
+ "chartjs-chart-financial": "^0.2.1",
60
+ "chartjs-chart-geo": "^4.3.6",
61
+ "chartjs-chart-sankey": "^0.14.0",
62
+ "chartjs-chart-treemap": "^3.1.0",
63
+ "chartjs-chart-wordcloud": "^4.4.5",
64
+ "chartjs-plugin-annotation": "^3.1.0",
65
+ "chartjs-plugin-datalabels": "^2.2.0",
66
+ "concurrently": "^9.2.1",
67
+ "cross-env": "^10.1.0",
68
+ "html2canvas-pro": "^2.0.4",
69
+ "luxon": "^3.7.2",
70
+ "topojson-client": "^3.1.0",
71
+ "typescript": "^5.9.3",
72
+ "vite": "^6.4.2",
73
+ "vite-plugin-singlefile": "^2.3.3",
74
+ "world-atlas": "^2.0.2"
75
+ },
76
+ "types": "dist/server.d.ts",
77
+ "exports": {
78
+ ".": {
79
+ "types": "./dist/server.d.ts",
80
+ "default": "./dist/server.js"
81
+ }
82
+ },
83
+ "bin": {
84
+ "mcp-dashboards": "dist/index.js"
85
+ },
86
+ "keywords": [
87
+ "mcp",
88
+ "mcp-server",
89
+ "mcp-apps",
90
+ "dashboard",
91
+ "data-visualization",
92
+ "charts",
93
+ "chart.js",
94
+ "interactive",
95
+ "ai",
96
+ "claude",
97
+ "model-context-protocol",
98
+ "live-chart",
99
+ "real-time",
100
+ "export",
101
+ "presentation",
102
+ "geo",
103
+ "choropleth",
104
+ "sankey",
105
+ "treemap",
106
+ "wordcloud",
107
+ "themes",
108
+ "hero-metric",
109
+ "candlestick",
110
+ "poll"
111
+ ]
112
+ }