Files
excalidraw-mcp-sentinel/package.json
T
yctimlin cb743c6a1e Add MIT License, update project name and description in package.json, enhance README.md with installation instructions, and modify index.js for CLI support
- Introduce LICENSE file with MIT License details.
- Change project name to 'mcp-excalidraw-server' and update description in package.json for clarity on features.
- Revise README.md to include new installation options and usage instructions for the npm package.
- Add shebang to index.js for direct CLI execution.
2025-07-11 19:52:18 +00:00

79 lines
1.8 KiB
JSON

{
"name": "mcp-excalidraw-server",
"version": "1.0.0",
"description": "Advanced MCP server for Excalidraw with real-time canvas, WebSocket sync, and comprehensive diagram management",
"main": "src/index.js",
"type": "module",
"bin": {
"mcp-excalidraw-server": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"canvas": "node src/server.js",
"build": "vite build",
"dev": "concurrently \"npm run canvas\" \"vite\"",
"production": "npm run build && npm run canvas",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.18.0",
"@modelcontextprotocol/sdk": "latest",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"winston": "^3.11.0",
"ws": "^8.14.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.6.0",
"concurrently": "^9.2.0",
"vite": "^6.3.5"
},
"keywords": [
"mcp",
"mcp-server",
"excalidraw",
"model-context-protocol",
"ai",
"drawing",
"diagrams",
"canvas",
"real-time",
"websocket",
"visualization",
"claude",
"ai-tools"
],
"author": {
"name": "yctimlin",
"email": "c22647809@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yctimlin/mcp_excalidraw.git"
},
"homepage": "https://github.com/yctimlin/mcp_excalidraw#readme",
"bugs": {
"url": "https://github.com/yctimlin/mcp_excalidraw/issues"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"src/**/*",
"dist/**/*",
"README.md",
"LICENSE"
]
}