Files
drawio-mcp-server/package.json
Alejandro Lembke Barrientos bf088da9d5
Some checks failed
CI Pipeline / Test and Build (20.x) (push) Failing after 3m22s
CI Pipeline / Code Quality Check (push) Failing after 11m52s
CI Pipeline / Security Audit (push) Failing after 11m53s
CI Pipeline / Test and Build (18.x) (push) Failing after 12m31s
CI Pipeline / Build Release Artifacts (push) Has been cancelled
CI Pipeline / Notification (push) Has been cancelled
Creating first version of MCP server.
2025-07-22 07:11:59 +00:00

62 lines
1.6 KiB
JSON

{
"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"
}
}