Creating first version of MCP server.
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

This commit is contained in:
2025-07-22 07:11:59 +00:00
parent f10bf53522
commit bf088da9d5
38 changed files with 6398 additions and 9442 deletions

View File

@ -1,90 +1,61 @@
{
"name": "drawio-cline-mcp-server",
"version": "0.0.1",
"description": "Node with Typescript and GraphQL Server",
"main": "index.js",
"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",
"start:dev": "webpack-cli --config webpack.config.dev.ts",
"start:nodemon": "nodemon build/index.js",
"build": "webpack-cli --config webpack.config.ts",
"dev": "tsc --watch",
"lint": "eslint ./ --ext .js --ext .ts",
"lint:fix": "eslint ./ --ext .js --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"check-updates": "npx npm-check-updates -u && npm i --legacy-peer-deps"
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleleba/node-ts-graphql-server.git"
"url": "git+https://github.com/aleleba/drawio-mcp-server.git"
},
"keywords": [
"node",
"express",
"typescript",
"graphql",
"server"
"mcp",
"drawio",
"diagrams",
"bpmn",
"uml",
"er-diagram",
"network-diagram",
"architecture",
"vscode",
"cline"
],
"author": "Alejandro Lembke Barrientos",
"license": "MIT",
"bugs": {
"url": "https://github.com/aleleba/node-ts-graphql-server/issues"
"url": "https://github.com/aleleba/drawio-mcp-server/issues"
},
"homepage": "https://github.com/aleleba/node-ts-graphql-server#readme",
"homepage": "https://github.com/aleleba/drawio-mcp-server#readme",
"dependencies": {
"@graphql-tools/schema": "^10.0.25",
"body-parser": "^2.2.0",
"class-validator": "^0.14.2",
"cookie-parse": "^0.4.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"graphql": "^16.11.0",
"graphql-http": "^1.22.4",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-scalars": "^1.24.2",
"graphql-subscriptions": "^3.0.0",
"graphql-tools": "^9.0.20",
"graphql-ws": "^6.0.6",
"reflect-metadata": "^0.2.2",
"type-graphql": "^2.0.0-rc.2",
"web-push": "^3.6.7",
"ws": "^8.18.3"
"@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": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@babel/register": "^7.27.1",
"@types/body-parser": "^1.19.6",
"@types/cookie-parser": "^1.4.9",
"@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/supertest": "^6.0.3",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"@types/ws": "^8.18.1",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.1.0",
"concurrently": "^9.2.0",
"eslint": "^9.31.0",
"eslint-webpack-plugin": "^5.0.2",
"jest": "^30.0.4",
"nodemon": "^3.1.10",
"resolve-ts-aliases": "^1.0.1",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"webpack-manifest-plugin": "^5.0.1",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.3.2"
"typescript": "^5.8.3"
}
}