n8n-mcp 2.27.2 → 2.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/dist/mcp/handlers-n8n-manager.d.ts +2 -1
- package/dist/mcp/handlers-n8n-manager.d.ts.map +1 -1
- package/dist/mcp/handlers-n8n-manager.js +175 -35
- package/dist/mcp/handlers-n8n-manager.js.map +1 -1
- package/dist/mcp/server.js +3 -3
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/tool-docs/index.js +1 -1
- package/dist/mcp/tool-docs/index.js.map +1 -1
- package/dist/mcp/tool-docs/workflow_management/index.d.ts +1 -1
- package/dist/mcp/tool-docs/workflow_management/index.d.ts.map +1 -1
- package/dist/mcp/tool-docs/workflow_management/index.js +3 -3
- package/dist/mcp/tool-docs/workflow_management/index.js.map +1 -1
- package/dist/mcp/tool-docs/workflow_management/n8n-create-workflow.js +2 -2
- package/dist/mcp/tool-docs/workflow_management/n8n-create-workflow.js.map +1 -1
- package/dist/mcp/tool-docs/workflow_management/n8n-executions.js +1 -1
- package/dist/mcp/tool-docs/workflow_management/n8n-executions.js.map +1 -1
- package/dist/mcp/tool-docs/workflow_management/n8n-test-workflow.d.ts +3 -0
- package/dist/mcp/tool-docs/workflow_management/n8n-test-workflow.d.ts.map +1 -0
- package/dist/mcp/tool-docs/workflow_management/n8n-test-workflow.js +140 -0
- package/dist/mcp/tool-docs/workflow_management/n8n-test-workflow.js.map +1 -0
- package/dist/mcp/tools-documentation.js +1 -1
- package/dist/mcp/tools-n8n-manager.d.ts.map +1 -1
- package/dist/mcp/tools-n8n-manager.js +29 -8
- package/dist/mcp/tools-n8n-manager.js.map +1 -1
- package/dist/triggers/handlers/base-handler.d.ts +21 -0
- package/dist/triggers/handlers/base-handler.d.ts.map +1 -0
- package/dist/triggers/handlers/base-handler.js +60 -0
- package/dist/triggers/handlers/base-handler.js.map +1 -0
- package/dist/triggers/handlers/chat-handler.d.ts +38 -0
- package/dist/triggers/handlers/chat-handler.d.ts.map +1 -0
- package/dist/triggers/handlers/chat-handler.js +129 -0
- package/dist/triggers/handlers/chat-handler.js.map +1 -0
- package/dist/triggers/handlers/form-handler.d.ts +35 -0
- package/dist/triggers/handlers/form-handler.d.ts.map +1 -0
- package/dist/triggers/handlers/form-handler.js +113 -0
- package/dist/triggers/handlers/form-handler.js.map +1 -0
- package/dist/triggers/handlers/webhook-handler.d.ts +38 -0
- package/dist/triggers/handlers/webhook-handler.d.ts.map +1 -0
- package/dist/triggers/handlers/webhook-handler.js +115 -0
- package/dist/triggers/handlers/webhook-handler.js.map +1 -0
- package/dist/triggers/index.d.ts +5 -0
- package/dist/triggers/index.d.ts.map +1 -0
- package/dist/triggers/index.js +14 -0
- package/dist/triggers/index.js.map +1 -0
- package/dist/triggers/trigger-detector.d.ts +6 -0
- package/dist/triggers/trigger-detector.d.ts.map +1 -0
- package/dist/triggers/trigger-detector.js +191 -0
- package/dist/triggers/trigger-detector.js.map +1 -0
- package/dist/triggers/trigger-registry.d.ts +18 -0
- package/dist/triggers/trigger-registry.d.ts.map +1 -0
- package/dist/triggers/trigger-registry.js +87 -0
- package/dist/triggers/trigger-registry.js.map +1 -0
- package/dist/triggers/types.d.ts +76 -0
- package/dist/triggers/types.d.ts.map +1 -0
- package/dist/triggers/types.js +3 -0
- package/dist/triggers/types.js.map +1 -0
- package/package.json +1 -1
- package/dist/mcp/tool-docs/workflow_management/n8n-trigger-webhook-workflow.d.ts +0 -3
- package/dist/mcp/tool-docs/workflow_management/n8n-trigger-webhook-workflow.d.ts.map +0 -1
- package/dist/mcp/tool-docs/workflow_management/n8n-trigger-webhook-workflow.js +0 -120
- package/dist/mcp/tool-docs/workflow_management/n8n-trigger-webhook-workflow.js.map +0 -1
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { WorkflowNode } from '../types/n8n-api';
|
|
2
|
+
export type TriggerType = 'webhook' | 'form' | 'chat';
|
|
3
|
+
export interface BaseTriggerInput {
|
|
4
|
+
workflowId: string;
|
|
5
|
+
triggerType?: TriggerType;
|
|
6
|
+
data?: Record<string, unknown>;
|
|
7
|
+
headers?: Record<string, string>;
|
|
8
|
+
timeout?: number;
|
|
9
|
+
waitForResponse?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface WebhookTriggerInput extends BaseTriggerInput {
|
|
12
|
+
triggerType: 'webhook';
|
|
13
|
+
httpMethod?: 'GET' | 'POST' | 'PUT' | 'DELETE';
|
|
14
|
+
webhookPath?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface FormTriggerInput extends BaseTriggerInput {
|
|
17
|
+
triggerType: 'form';
|
|
18
|
+
formData?: Record<string, unknown>;
|
|
19
|
+
}
|
|
20
|
+
export interface ChatTriggerInput extends BaseTriggerInput {
|
|
21
|
+
triggerType: 'chat';
|
|
22
|
+
message: string;
|
|
23
|
+
sessionId?: string;
|
|
24
|
+
}
|
|
25
|
+
export type TriggerInput = WebhookTriggerInput | FormTriggerInput | ChatTriggerInput;
|
|
26
|
+
export interface TriggerResponse {
|
|
27
|
+
success: boolean;
|
|
28
|
+
triggerType: TriggerType;
|
|
29
|
+
workflowId: string;
|
|
30
|
+
executionId?: string;
|
|
31
|
+
status?: number;
|
|
32
|
+
statusText?: string;
|
|
33
|
+
data?: unknown;
|
|
34
|
+
error?: string;
|
|
35
|
+
code?: string;
|
|
36
|
+
details?: Record<string, unknown>;
|
|
37
|
+
metadata: {
|
|
38
|
+
duration: number;
|
|
39
|
+
webhookPath?: string;
|
|
40
|
+
sessionId?: string;
|
|
41
|
+
httpMethod?: string;
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
export interface TriggerHandlerCapabilities {
|
|
45
|
+
requiresActiveWorkflow: boolean;
|
|
46
|
+
supportedMethods?: string[];
|
|
47
|
+
canPassInputData: boolean;
|
|
48
|
+
}
|
|
49
|
+
export interface DetectedTrigger {
|
|
50
|
+
type: TriggerType;
|
|
51
|
+
node: WorkflowNode;
|
|
52
|
+
webhookPath?: string;
|
|
53
|
+
httpMethod?: string;
|
|
54
|
+
formFields?: string[];
|
|
55
|
+
chatConfig?: {
|
|
56
|
+
responseMode?: string;
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
export interface TriggerDetectionResult {
|
|
60
|
+
detected: boolean;
|
|
61
|
+
trigger?: DetectedTrigger;
|
|
62
|
+
reason?: string;
|
|
63
|
+
}
|
|
64
|
+
export interface TestWorkflowInput {
|
|
65
|
+
workflowId: string;
|
|
66
|
+
triggerType?: TriggerType;
|
|
67
|
+
httpMethod?: 'GET' | 'POST' | 'PUT' | 'DELETE';
|
|
68
|
+
webhookPath?: string;
|
|
69
|
+
message?: string;
|
|
70
|
+
sessionId?: string;
|
|
71
|
+
data?: Record<string, unknown>;
|
|
72
|
+
headers?: Record<string, string>;
|
|
73
|
+
timeout?: number;
|
|
74
|
+
waitForResponse?: boolean;
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/triggers/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/triggers/types.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"n8n-trigger-webhook-workflow.d.ts","sourceRoot":"","sources":["../../../../src/mcp/tool-docs/workflow_management/n8n-trigger-webhook-workflow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAE7C,eAAO,MAAM,4BAA4B,EAAE,iBAmH1C,CAAC"}
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.n8nTriggerWebhookWorkflowDoc = void 0;
|
|
4
|
-
exports.n8nTriggerWebhookWorkflowDoc = {
|
|
5
|
-
name: 'n8n_trigger_webhook_workflow',
|
|
6
|
-
category: 'workflow_management',
|
|
7
|
-
essentials: {
|
|
8
|
-
description: 'Trigger workflow via webhook. Must be ACTIVE with Webhook node. Method must match config.',
|
|
9
|
-
keyParameters: ['webhookUrl', 'httpMethod', 'data'],
|
|
10
|
-
example: 'n8n_trigger_webhook_workflow({webhookUrl: "https://n8n.example.com/webhook/abc-def-ghi"})',
|
|
11
|
-
performance: 'Immediate trigger, response time depends on workflow complexity',
|
|
12
|
-
tips: [
|
|
13
|
-
'Workflow MUST be active and contain a Webhook node for triggering',
|
|
14
|
-
'HTTP method must match webhook node configuration (often GET)',
|
|
15
|
-
'Use waitForResponse:false for async execution without waiting'
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
full: {
|
|
19
|
-
description: `Triggers a workflow execution via its webhook URL. This is the primary method for external systems to start n8n workflows. The target workflow must be active and contain a properly configured Webhook node as the trigger. The HTTP method used must match the webhook configuration.`,
|
|
20
|
-
parameters: {
|
|
21
|
-
webhookUrl: {
|
|
22
|
-
type: 'string',
|
|
23
|
-
required: true,
|
|
24
|
-
description: 'Full webhook URL from n8n workflow (e.g., https://n8n.example.com/webhook/abc-def-ghi)'
|
|
25
|
-
},
|
|
26
|
-
httpMethod: {
|
|
27
|
-
type: 'string',
|
|
28
|
-
required: false,
|
|
29
|
-
enum: ['GET', 'POST', 'PUT', 'DELETE'],
|
|
30
|
-
description: 'HTTP method (must match webhook configuration, often GET). Defaults to GET if not specified'
|
|
31
|
-
},
|
|
32
|
-
data: {
|
|
33
|
-
type: 'object',
|
|
34
|
-
required: false,
|
|
35
|
-
description: 'Data to send with the webhook request. For GET requests, becomes query parameters'
|
|
36
|
-
},
|
|
37
|
-
headers: {
|
|
38
|
-
type: 'object',
|
|
39
|
-
required: false,
|
|
40
|
-
description: 'Additional HTTP headers to include in the request'
|
|
41
|
-
},
|
|
42
|
-
waitForResponse: {
|
|
43
|
-
type: 'boolean',
|
|
44
|
-
required: false,
|
|
45
|
-
description: 'Wait for workflow completion and return results (default: true). Set to false for fire-and-forget'
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
returns: `Webhook response data if waitForResponse is true, or immediate acknowledgment if false. Response format depends on webhook node configuration.`,
|
|
49
|
-
examples: [
|
|
50
|
-
'n8n_trigger_webhook_workflow({webhookUrl: "https://n8n.example.com/webhook/order-process"}) - Trigger with GET',
|
|
51
|
-
'n8n_trigger_webhook_workflow({webhookUrl: "https://n8n.example.com/webhook/data-import", httpMethod: "POST", data: {name: "John", email: "john@example.com"}}) - POST with data',
|
|
52
|
-
'n8n_trigger_webhook_workflow({webhookUrl: "https://n8n.example.com/webhook/async-job", waitForResponse: false}) - Fire and forget',
|
|
53
|
-
'n8n_trigger_webhook_workflow({webhookUrl: "https://n8n.example.com/webhook/api", headers: {"API-Key": "secret"}}) - With auth headers'
|
|
54
|
-
],
|
|
55
|
-
useCases: [
|
|
56
|
-
'Trigger data processing workflows from external applications',
|
|
57
|
-
'Start scheduled jobs manually via webhook',
|
|
58
|
-
'Integrate n8n workflows with third-party services',
|
|
59
|
-
'Create REST API endpoints using n8n workflows',
|
|
60
|
-
'Implement event-driven architectures with n8n'
|
|
61
|
-
],
|
|
62
|
-
performance: `Performance varies based on workflow complexity and waitForResponse setting. Synchronous calls (waitForResponse: true) block until workflow completes. For long-running workflows, use async mode (waitForResponse: false) and monitor execution separately.`,
|
|
63
|
-
errorHandling: `**Enhanced Error Messages with Execution Guidance**
|
|
64
|
-
|
|
65
|
-
When a webhook trigger fails, the error response now includes specific guidance to help debug the issue:
|
|
66
|
-
|
|
67
|
-
**Error with Execution ID** (workflow started but failed):
|
|
68
|
-
- Format: "Workflow {workflowId} execution {executionId} failed. Use n8n_executions({action: 'get', id: '{executionId}', mode: 'preview'}) to investigate the error."
|
|
69
|
-
- Response includes: executionId and workflowId fields for direct access
|
|
70
|
-
- Recommended action: Use n8n_executions with action='get' and mode='preview' for fast, efficient error inspection
|
|
71
|
-
|
|
72
|
-
**Error without Execution ID** (workflow didn't start):
|
|
73
|
-
- Format: "Workflow failed to execute. Use n8n_executions({action: 'list'}) to find recent executions, then n8n_executions({action: 'get', mode: 'preview'}) to investigate."
|
|
74
|
-
- Recommended action: Check recent executions with n8n_executions({action: 'list'})
|
|
75
|
-
|
|
76
|
-
**Why mode='preview'?**
|
|
77
|
-
- Fast: <50ms response time
|
|
78
|
-
- Efficient: ~500 tokens (vs 50K+ for full mode)
|
|
79
|
-
- Safe: No timeout or token limit risks
|
|
80
|
-
- Informative: Shows structure, counts, and error details
|
|
81
|
-
- Provides recommendations for fetching more data if needed
|
|
82
|
-
|
|
83
|
-
**Example Error Responses**:
|
|
84
|
-
\`\`\`json
|
|
85
|
-
{
|
|
86
|
-
"success": false,
|
|
87
|
-
"error": "Workflow wf_123 execution exec_456 failed. Use n8n_get_execution({id: 'exec_456', mode: 'preview'}) to investigate the error.",
|
|
88
|
-
"executionId": "exec_456",
|
|
89
|
-
"workflowId": "wf_123",
|
|
90
|
-
"code": "SERVER_ERROR"
|
|
91
|
-
}
|
|
92
|
-
\`\`\`
|
|
93
|
-
|
|
94
|
-
**Investigation Workflow**:
|
|
95
|
-
1. Trigger returns error with execution ID
|
|
96
|
-
2. Call n8n_executions({action: 'get', id: executionId, mode: 'preview'}) to see structure and error
|
|
97
|
-
3. Based on preview recommendation, fetch more data if needed
|
|
98
|
-
4. Fix issues in workflow and retry`,
|
|
99
|
-
bestPractices: [
|
|
100
|
-
'Always verify workflow is active before attempting webhook triggers',
|
|
101
|
-
'Match HTTP method exactly with webhook node configuration',
|
|
102
|
-
'Use async mode (waitForResponse: false) for long-running workflows',
|
|
103
|
-
'Include authentication headers when webhook requires them',
|
|
104
|
-
'Test webhook URL manually first to ensure it works',
|
|
105
|
-
'When errors occur, use n8n_executions with action="get" and mode="preview" first for efficient debugging',
|
|
106
|
-
'Store execution IDs from error responses for later investigation'
|
|
107
|
-
],
|
|
108
|
-
pitfalls: [
|
|
109
|
-
'Workflow must be ACTIVE - inactive workflows cannot be triggered',
|
|
110
|
-
'HTTP method mismatch returns 404 even if URL is correct',
|
|
111
|
-
'Webhook node must be the trigger node in the workflow',
|
|
112
|
-
'Timeout errors occur with long workflows in sync mode',
|
|
113
|
-
'Data format must match webhook node expectations',
|
|
114
|
-
'Error messages always include n8n_executions guidance - follow the suggested steps for efficient debugging',
|
|
115
|
-
'Execution IDs in error responses are crucial for debugging - always check for and use them'
|
|
116
|
-
],
|
|
117
|
-
relatedTools: ['n8n_executions', 'n8n_get_workflow', 'n8n_create_workflow']
|
|
118
|
-
}
|
|
119
|
-
};
|
|
120
|
-
//# sourceMappingURL=n8n-trigger-webhook-workflow.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"n8n-trigger-webhook-workflow.js","sourceRoot":"","sources":["../../../../src/mcp/tool-docs/workflow_management/n8n-trigger-webhook-workflow.ts"],"names":[],"mappings":";;;AAEa,QAAA,4BAA4B,GAAsB;IAC7D,IAAI,EAAE,8BAA8B;IACpC,QAAQ,EAAE,qBAAqB;IAC/B,UAAU,EAAE;QACV,WAAW,EAAE,2FAA2F;QACxG,aAAa,EAAE,CAAC,YAAY,EAAE,YAAY,EAAE,MAAM,CAAC;QACnD,OAAO,EAAE,2FAA2F;QACpG,WAAW,EAAE,iEAAiE;QAC9E,IAAI,EAAE;YACJ,mEAAmE;YACnE,+DAA+D;YAC/D,+DAA+D;SAChE;KACF;IACD,IAAI,EAAE;QACJ,WAAW,EAAE,yRAAyR;QACtS,UAAU,EAAE;YACV,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,wFAAwF;aACtG;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,KAAK;gBACf,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,CAAC;gBACtC,WAAW,EAAE,6FAA6F;aAC3G;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,KAAK;gBACf,WAAW,EAAE,mFAAmF;aACjG;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,KAAK;gBACf,WAAW,EAAE,mDAAmD;aACjE;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,SAAS;gBACf,QAAQ,EAAE,KAAK;gBACf,WAAW,EAAE,mGAAmG;aACjH;SACF;QACD,OAAO,EAAE,gJAAgJ;QACzJ,QAAQ,EAAE;YACR,gHAAgH;YAChH,iLAAiL;YACjL,mIAAmI;YACnI,uIAAuI;SACxI;QACD,QAAQ,EAAE;YACR,8DAA8D;YAC9D,2CAA2C;YAC3C,mDAAmD;YACnD,+CAA+C;YAC/C,+CAA+C;SAChD;QACD,WAAW,EAAE,8PAA8P;QAC3Q,aAAa,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAmCiB;QAChC,aAAa,EAAE;YACb,qEAAqE;YACrE,2DAA2D;YAC3D,oEAAoE;YACpE,2DAA2D;YAC3D,oDAAoD;YACpD,0GAA0G;YAC1G,kEAAkE;SACnE;QACD,QAAQ,EAAE;YACR,kEAAkE;YAClE,yDAAyD;YACzD,uDAAuD;YACvD,uDAAuD;YACvD,kDAAkD;YAClD,4GAA4G;YAC5G,4FAA4F;SAC7F;QACD,YAAY,EAAE,CAAC,gBAAgB,EAAE,kBAAkB,EAAE,qBAAqB,CAAC;KAC5E;CACF,CAAC"}
|