Files
drawio-mcp-server/package.json
Alejandro Lembke Barrientos 6aa7e91874
Some checks failed
Main Workflow / Security Audit (push) Successful in 4m39s
Main Workflow / Test and Build (20.x) (push) Failing after 4m56s
Main Workflow / Test and Build (18.x) (push) Failing after 5m9s
Main Workflow / Build Release Artifacts (push) Has been skipped
Main Workflow / Code Quality Check (push) Successful in 1m33s
Main Workflow / Notification (push) Failing after 21s
Adding as a Streamable HTTP MCP Server
2025-07-22 21:31:55 +00:00

66 lines
1.8 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": "^1.16.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"path": "^0.12.7",
"uuid": "^10.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@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"
}
}