-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.17 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@ax-crew/chartjs-mcp-server",
"description": "A Model Context Protocol server for generating beautiful charts using Chart.js v4. Perfect for Claude Desktop, Cursor, and other MCP clients.",
"version": "3.2.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"chartjs-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*",
"examples/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "nodemon --exec ts-node src/index.ts",
"test": "node --test test/chart-server.test.js",
"test:watch": "node --test --watch test/chart-server.test.js",
"test:integration": "node --test test/integration.test.js",
"test:tools": "npx @modelcontextprotocol/inspector --cli node dist/index.js --method tools/list",
"test:all": "npm run test && npm run test:integration",
"prepublishOnly": "npm run build && npm test",
"release:patch": "npm run test:all && npm version patch && npm publish && git push && git push --tags",
"release:minor": "npm run test:all && npm version minor && npm publish && git push && git push --tags",
"release:major": "npm run test:all && npm version major && npm publish && git push && git push --tags",
"release": "npm run release:patch"
},
"keywords": [
"mcp",
"model-context-protocol",
"charts",
"chartjs",
"visualization",
"claude",
"cursor",
"data-visualization",
"ai-tools",
"typescript"
],
"author": "@amitdeshmukh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ax-crew/chartjs-mcp-server.git"
},
"homepage": "https://github.com/ax-crew/chartjs-mcp-server#readme",
"bugs": {
"url": "https://github.com/ax-crew/chartjs-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"canvas": "^3.1.2",
"chart.js": "^4.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^24.0.10",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}