-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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
{
"name": "bambu-printer-mcp",
"version": "1.0.5",
"description": "MCP server for Bambu Lab 3D printers with STL manipulation, slicing, and print management",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/DMontgomery40/bambu-printer-mcp.git"
},
"type": "module",
"scripts": {
"start": "node dist/index.js",
"start:stdio": "MCP_TRANSPORT=stdio node dist/index.js",
"start:http": "MCP_TRANSPORT=streamable-http node dist/index.js",
"build": "tsc",
"test": "npm run build && node --test tests/**/*.test.mjs"
},
"bin": {
"bambu-printer-mcp": "dist/index.js"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"3d-printer",
"bambu",
"bambu-lab",
"bambu-studio",
"stl",
"3mf"
],
"author": "David Montgomery",
"license": "GPL-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"bambu-js": "^2.2.2",
"bambu-node": "^3.22.21",
"basic-ftp": "^5.0.5",
"dotenv": "^16.3.1",
"jszip": "^3.10.1",
"three": "^0.173.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/three": "^0.173.0",
"@types/xml2js": "^0.4.14"
}
}