-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@automatelab/n8n-mcp",
"version": "1.1.0",
"mcpName": "io.github.ratamaha-git/n8n-mcp",
"description": "MCP server for n8n with tools for generating workflows, linting, diagnosing failed executions, and driving live n8n instances. Built for AI agents.",
"type": "module",
"bin": {
"n8n-mcp": "dist/index.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"build:dxt": "npm run build && cp -r dist dxt/dist && cp package.json dxt/package.json && dxt pack dxt",
"dev": "tsx src/index.ts",
"smoke": "node ./dist/index.js --smoke",
"prepublishOnly": "npm run build"
},
"keywords": [
"n8n",
"mcp",
"cursor",
"claude",
"gemini",
"gemini-cli-extension",
"agent-skill",
"model-context-protocol",
"workflow-automation",
"langchain",
"ai-agent"
],
"homepage": "https://automatelab.tech/n8n-mcp-server/",
"repository": {
"type": "git",
"url": "git+https://github.com/AutomateLab-tech/n8n-mcp.git"
},
"bugs": {
"url": "https://github.com/AutomateLab-tech/n8n-mcp/issues"
},
"author": "AutomateLab <hello@automatelab.tech>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"files": [
"action.yml",
"smithery.yaml",
"dist/",
"examples/",
"references/",
"dxt/manifest.json",
"dxt/README.md",
"Dockerfile",
"render.yaml",
"railway.toml",
"fly.toml",
"SKILL.md",
"GEMINI.md",
"gemini-extension.json",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.16.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}