-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 KB
/
package.json
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
{
"name": "mcp-3d-printer-server",
"version": "0.2.2",
"description": "MCP server for connecting Claude with 3D printer management systems",
"main": "src/index.js",
"repository": "https://github.com/DMontgomery40/mcp-3d-printer-server",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts --exec \"npm run build && npm start\"",
"build": "tsc",
"test": "npm run build && node dist/test/stl-manipulator-test.js"
},
"bin": {
"mcp-3d-printer-server": "./src/index.js"
},
"keywords": [
"mcp",
"3d-printer",
"octoprint",
"klipper",
"duet",
"repetier",
"bambu",
"prusa",
"creality",
"ender"
],
"author": "David Montgomery",
"license": "GPL-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"axios": "^1.6.2",
"bambu-js": "^2.2.2",
"dotenv": "^16.3.1",
"form-data": "^4.0.0",
"three": "^0.173.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/three": "^0.173.0",
"nodemon": "^2.0.22"
}
}