package.json•1.23 kB
{
"name": "drawio-mcp",
"version": "0.0.0-auto",
"description": "MCP server for generating draw.io diagrams using mxgraph. Create and manage diagrams programmatically with VSCode compatibility.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"bin": {
"drawio-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"start": "tsx src/index.ts",
"build": "tsc"
},
"keywords": [
"mcp",
"model-context-protocol",
"drawio",
"diagrams",
"mxgraph",
"visualization",
"svg",
"vscode",
"architecture-diagrams"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Sujimoshi/drawio-mcp.git"
},
"homepage": "https://github.com/Sujimoshi/drawio-mcp#readme",
"bugs": {
"url": "https://github.com/Sujimoshi/drawio-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"jsdom": "^19.0.0",
"mxgraph": "^4.2.2",
"pako": "^2.0.4"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/pako": "^2.0.4",
"tsx": "^4.0.0",
"typescript": "^5.9.2"
}
}