- Implemented MCP server with 8 n8n tools - Added n8n API client for workflow operations - Configured VS Code settings with API authentication - Added comprehensive documentation and setup guides - Tested and verified connection to n8n instance
35 lines
720 B
JSON
35 lines
720 B
JSON
{
|
|
"name": "n8n-mcp-server",
|
|
"version": "1.0.0",
|
|
"description": "Model Context Protocol server for n8n integration with VS Code",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"n8n-mcp-server": "dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"start": "node dist/index.js",
|
|
"dev": "npm run build && npm run start"
|
|
},
|
|
"keywords": [
|
|
"n8n",
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"vscode",
|
|
"workflow"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"axios": "^1.7.9",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|