- Add HTTP/JSON-RPC server for remote MCP access - Configure domain and authentication via environment variables - Create comprehensive remote deployment documentation - Support both local (stdio) and remote (HTTP) deployment modes - Add PM2 and Nginx configuration examples - Update README with remote server instructions The server can now be deployed on a VM (e.g., Hetzner) and accessed from Claude Desktop over HTTPS using the configured domain. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "n8n-mcp",
|
|
"version": "1.0.0",
|
|
"description": "Integration between n8n workflow automation and Model Context Protocol (MCP)",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "nodemon --exec ts-node src/index.ts",
|
|
"dev:v2": "nodemon --exec ts-node src/index-v2.ts",
|
|
"dev:http": "nodemon --exec ts-node src/index-http.ts",
|
|
"start": "node dist/index.js",
|
|
"start:v2": "node dist/index-v2.js",
|
|
"start:http": "node dist/index-http.js",
|
|
"test": "jest",
|
|
"lint": "tsc --noEmit",
|
|
"typecheck": "tsc --noEmit",
|
|
"db:rebuild": "node dist/scripts/rebuild-database.js",
|
|
"db:rebuild:v2": "node dist/scripts/rebuild-database-v2.js",
|
|
"db:init": "node -e \"new (require('./dist/services/sqlite-storage-service').SQLiteStorageService)(); console.log('Database initialized')\"",
|
|
"test:v2": "node tests/test-node-documentation-service.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/czlonkowski/n8n-mcp.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/czlonkowski/n8n-mcp/issues"
|
|
},
|
|
"homepage": "https://github.com/czlonkowski/n8n-mcp#readme",
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.3",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.15.30",
|
|
"@types/ws": "^8.18.1",
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.1.10",
|
|
"ts-jest": "^29.3.4",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"better-sqlite3": "^11.10.0",
|
|
"dotenv": "^16.5.0",
|
|
"express": "^5.1.0",
|
|
"n8n-core": "^1.14.1",
|
|
"n8n-workflow": "^1.82.0"
|
|
}
|
|
}
|