-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathmanifest.json
More file actions
178 lines (178 loc) · 4.83 KB
/
Copy pathmanifest.json
File metadata and controls
178 lines (178 loc) · 4.83 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"manifest_version": "0.3",
"name": "n8n-mcp",
"display_name": "n8n-MCP",
"version": "2.62.0",
"description": "MCP server providing AI assistants with comprehensive access to n8n node documentation and workflow management capabilities",
"author": {
"name": "Romuald Członkowski",
"url": "https://www.aiadvisors.pl/en"
},
"repository": {
"type": "git",
"url": "https://github.com/czlonkowski/n8n-mcp"
},
"homepage": "https://www.n8n-mcp.com/",
"documentation": "https://github.com/czlonkowski/n8n-mcp#readme",
"support": "https://github.com/czlonkowski/n8n-mcp/issues",
"license": "MIT",
"keywords": [
"n8n",
"mcp",
"workflow",
"automation",
"ai",
"documentation",
"model-context-protocol"
],
"privacy_policies": [
"https://n8n.io/legal/privacy/"
],
"server": {
"type": "node",
"entry_point": "dist/mcp/index.js",
"mcp_config": {
"command": "npx",
"args": [
"-y",
"n8n-mcp"
],
"env": {
"MCP_MODE": "stdio",
"LOG_LEVEL": "error",
"DISABLE_CONSOLE_OUTPUT": "true",
"N8N_API_URL": "${user_config.n8n_api_url}",
"N8N_API_KEY": "${user_config.n8n_api_key}",
"N8N_MCP_TELEMETRY_DISABLED": "${user_config.n8n_mcp_telemetry_disabled}"
}
}
},
"user_config": {
"n8n_api_url": {
"type": "string",
"title": "n8n Instance URL",
"description": "URL of your n8n instance (e.g., https://your-n8n.com or http://localhost:5678). Leave empty for documentation-only mode.",
"required": false
},
"n8n_api_key": {
"type": "string",
"title": "n8n API Key",
"description": "API key from your n8n instance Settings > API. Required for workflow management features.",
"required": false,
"sensitive": true
},
"n8n_mcp_telemetry_disabled": {
"type": "boolean",
"title": "Disable Telemetry",
"description": "Enable to turn off anonymous usage telemetry. Telemetry is on by default.",
"required": false,
"default": false
}
},
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": [
"darwin",
"win32",
"linux"
],
"runtimes": {
"node": ">=20"
}
},
"tools_generated": false,
"tools": [
{
"name": "tools_documentation",
"description": "Get documentation for n8n MCP tools."
},
{
"name": "search_nodes",
"description": "Search n8n nodes by keyword with optional real-world examples."
},
{
"name": "get_node",
"description": "Get node info with progressive detail levels and multiple modes."
},
{
"name": "validate_node",
"description": "Validate n8n node configuration."
},
{
"name": "get_template",
"description": "Get template by ID."
},
{
"name": "search_templates",
"description": "Search templates with multiple modes."
},
{
"name": "validate_workflow",
"description": "Full workflow validation: structure, connections, expressions, AI tools."
},
{
"name": "n8n_create_workflow",
"description": "Create workflow."
},
{
"name": "n8n_get_workflow",
"description": "Get workflow by ID with different detail levels."
},
{
"name": "n8n_update_full_workflow",
"description": "Full workflow update."
},
{
"name": "n8n_update_partial_workflow",
"description": "Update workflow incrementally with diff operations."
},
{
"name": "n8n_delete_workflow",
"description": "Permanently delete a workflow."
},
{
"name": "n8n_list_workflows",
"description": "List workflows (minimal metadata only)."
},
{
"name": "n8n_validate_workflow",
"description": "Validate workflow by ID."
},
{
"name": "n8n_autofix_workflow",
"description": "Automatically fix common workflow validation errors."
},
{
"name": "n8n_test_workflow",
"description": "Test/trigger workflow execution."
},
{
"name": "n8n_executions",
"description": "Manage workflow executions: get details, list, or delete."
},
{
"name": "n8n_health_check",
"description": "Check n8n instance health and API connectivity."
},
{
"name": "n8n_workflow_versions",
"description": "Manage workflow version history, rollback, and cleanup."
},
{
"name": "n8n_deploy_template",
"description": "Deploy a workflow template from n8n.io directly to your n8n instance."
},
{
"name": "n8n_manage_datatable",
"description": "Manage n8n data tables and rows."
},
{
"name": "n8n_manage_credentials",
"description": "Manage n8n credentials."
},
{
"name": "n8n_audit_instance",
"description": "Security audit of n8n instance."
}
]
}