{ "name": "drawio-mcp-server", "version": "0.1.0", "description": "MCP Server for Draw.io integration with Cline - Create and manage diagrams (BPMN, UML, ER, Network, Architecture) from VSCode", "main": "build/index.js", "type": "module", "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "start": "node build/index.js", "dev": "tsc --watch", "lint": "eslint ./ --ext .js --ext .ts", "lint:fix": "eslint ./ --ext .js --ext .ts --fix", "test": "jest", "test:watch": "jest --watch" }, "repository": { "type": "git", "url": "git+https://github.com/aleleba/drawio-mcp-server.git" }, "keywords": [ "mcp", "drawio", "diagrams", "bpmn", "uml", "er-diagram", "network-diagram", "architecture", "vscode", "cline" ], "author": "Alejandro Lembke Barrientos", "license": "MIT", "bugs": { "url": "https://github.com/aleleba/drawio-mcp-server/issues" }, "homepage": "https://github.com/aleleba/drawio-mcp-server#readme", "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "fs-extra": "^11.2.0", "glob": "^10.3.10", "path": "^0.12.7", "uuid": "^10.0.0", "xml2js": "^0.6.2" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/jest": "^30.0.0", "@types/node": "^24.0.15", "@types/uuid": "^10.0.0", "@types/xml2js": "^0.4.14", "@typescript-eslint/eslint-plugin": "^8.38.0", "@typescript-eslint/parser": "^8.38.0", "concurrently": "^9.2.0", "eslint": "^9.31.0", "jest": "^30.0.4", "nodemon": "^3.1.10", "ts-jest": "^29.4.0", "typescript": "^5.8.3" } }