package.json•1.55 kB
{
"name": "mcp-3d-printer-server",
"version": "1.0.2",
"description": "MCP server for connecting Claude with 3D printer management systems",
"main": "dist/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",
"inspect": "npm run build && npx @modelcontextprotocol/inspector dist/index.js"
},
"bin": {
"mcp-3d-printer-server": "./dist/index.js"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"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",
"bambu-node": "^3.22.21",
"dotenv": "^16.3.1",
"form-data": "^4.0.0",
"jszip": "^3.10.1",
"three": "^0.173.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/jszip": "^3.4.0",
"@types/node": "^18.0.0",
"@types/three": "^0.173.0",
"@types/xml2js": "^0.4.14",
"nodemon": "^2.0.22"
}
}