mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-29 22:12:05 +00:00
- Updated n8n from 2.2.3 to 2.3.3 - Updated n8n-core from 2.2.2 to 2.3.2 - Updated n8n-workflow from 2.2.2 to 2.3.2 - Updated @n8n/n8n-nodes-langchain from 2.2.2 to 2.3.2 - Rebuilt node database with 537 nodes (434 from n8n-nodes-base, 103 from @n8n/n8n-nodes-langchain) - Updated README badge with new n8n version - Updated CHANGELOG with dependency changes Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
424 lines
18 KiB
JavaScript
424 lines
18 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.n8nDocumentationToolsFinal = void 0;
|
|
exports.n8nDocumentationToolsFinal = [
|
|
{
|
|
name: 'tools_documentation',
|
|
description: `Get documentation for n8n MCP tools. Call without parameters for quick start guide. Use topic parameter to get documentation for specific tools. Use depth='full' for comprehensive documentation.`,
|
|
inputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
topic: {
|
|
type: 'string',
|
|
description: 'Tool name (e.g., "search_nodes") or "overview" for general guide. Leave empty for quick reference.',
|
|
},
|
|
depth: {
|
|
type: 'string',
|
|
enum: ['essentials', 'full'],
|
|
description: 'Level of detail. "essentials" (default) for quick reference, "full" for comprehensive docs.',
|
|
default: 'essentials',
|
|
},
|
|
},
|
|
},
|
|
annotations: {
|
|
title: 'Tools Documentation',
|
|
readOnlyHint: true,
|
|
idempotentHint: true,
|
|
},
|
|
},
|
|
{
|
|
name: 'search_nodes',
|
|
description: `Search n8n nodes by keyword with optional real-world examples. Pass query as string. Example: query="webhook" or query="database". Returns max 20 results. Use includeExamples=true to get top 2 template configs per node.`,
|
|
inputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
query: {
|
|
type: 'string',
|
|
description: 'Search terms. Use quotes for exact phrase.',
|
|
},
|
|
limit: {
|
|
type: 'number',
|
|
description: 'Max results (default 20)',
|
|
default: 20,
|
|
},
|
|
mode: {
|
|
type: 'string',
|
|
enum: ['OR', 'AND', 'FUZZY'],
|
|
description: 'OR=any word, AND=all words, FUZZY=typo-tolerant',
|
|
default: 'OR',
|
|
},
|
|
includeExamples: {
|
|
type: 'boolean',
|
|
description: 'Include top 2 real-world configuration examples from popular templates (default: false)',
|
|
default: false,
|
|
},
|
|
source: {
|
|
type: 'string',
|
|
enum: ['all', 'core', 'community', 'verified'],
|
|
description: 'Filter by node source: all=everything (default), core=n8n base nodes, community=community nodes, verified=verified community nodes only',
|
|
default: 'all',
|
|
},
|
|
},
|
|
required: ['query'],
|
|
},
|
|
annotations: {
|
|
title: 'Search Nodes',
|
|
readOnlyHint: true,
|
|
idempotentHint: true,
|
|
},
|
|
},
|
|
{
|
|
name: 'get_node',
|
|
description: `Get node info with progressive detail levels and multiple modes. Detail: minimal (~200 tokens), standard (~1-2K, default), full (~3-8K). Modes: info (default), docs (markdown documentation), search_properties (find properties), versions/compare/breaking/migrations (version info). Use format='docs' for readable documentation, mode='search_properties' with propertyQuery for finding specific fields.`,
|
|
inputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
nodeType: {
|
|
type: 'string',
|
|
description: 'Full node type: "nodes-base.httpRequest" or "nodes-langchain.agent"',
|
|
},
|
|
detail: {
|
|
type: 'string',
|
|
enum: ['minimal', 'standard', 'full'],
|
|
default: 'standard',
|
|
description: 'Information detail level. standard=essential properties (recommended), full=everything',
|
|
},
|
|
mode: {
|
|
type: 'string',
|
|
enum: ['info', 'docs', 'search_properties', 'versions', 'compare', 'breaking', 'migrations'],
|
|
default: 'info',
|
|
description: 'Operation mode. info=node schema, docs=readable markdown documentation, search_properties=find specific properties, versions/compare/breaking/migrations=version info',
|
|
},
|
|
includeTypeInfo: {
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Include type structure metadata (type category, JS type, validation rules). Only applies to mode=info. Adds ~80-120 tokens per property.',
|
|
},
|
|
includeExamples: {
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Include real-world configuration examples from templates. Only applies to mode=info with detail=standard. Adds ~200-400 tokens per example.',
|
|
},
|
|
fromVersion: {
|
|
type: 'string',
|
|
description: 'Source version for compare/breaking/migrations modes (e.g., "1.0")',
|
|
},
|
|
toVersion: {
|
|
type: 'string',
|
|
description: 'Target version for compare mode (e.g., "2.0"). Defaults to latest if omitted.',
|
|
},
|
|
propertyQuery: {
|
|
type: 'string',
|
|
description: 'For mode=search_properties: search term to find properties (e.g., "auth", "header", "body")',
|
|
},
|
|
maxPropertyResults: {
|
|
type: 'number',
|
|
description: 'For mode=search_properties: max results (default 20)',
|
|
default: 20,
|
|
},
|
|
},
|
|
required: ['nodeType'],
|
|
},
|
|
annotations: {
|
|
title: 'Get Node Info',
|
|
readOnlyHint: true,
|
|
idempotentHint: true,
|
|
},
|
|
},
|
|
{
|
|
name: 'validate_node',
|
|
description: `Validate n8n node configuration. Use mode='full' for comprehensive validation with errors/warnings/suggestions, mode='minimal' for quick required fields check. Example: nodeType="nodes-base.slack", config={resource:"channel",operation:"create"}`,
|
|
inputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
nodeType: {
|
|
type: 'string',
|
|
description: 'Node type as string. Example: "nodes-base.slack"',
|
|
},
|
|
config: {
|
|
type: 'object',
|
|
description: 'Configuration as object. For simple nodes use {}. For complex nodes include fields like {resource:"channel",operation:"create"}',
|
|
},
|
|
mode: {
|
|
type: 'string',
|
|
enum: ['full', 'minimal'],
|
|
description: 'Validation mode. full=comprehensive validation with errors/warnings/suggestions, minimal=quick required fields check only. Default is "full"',
|
|
default: 'full',
|
|
},
|
|
profile: {
|
|
type: 'string',
|
|
enum: ['strict', 'runtime', 'ai-friendly', 'minimal'],
|
|
description: 'Profile for mode=full: "minimal", "runtime", "ai-friendly", or "strict". Default is "ai-friendly"',
|
|
default: 'ai-friendly',
|
|
},
|
|
},
|
|
required: ['nodeType', 'config'],
|
|
additionalProperties: false,
|
|
},
|
|
outputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
nodeType: { type: 'string' },
|
|
workflowNodeType: { type: 'string' },
|
|
displayName: { type: 'string' },
|
|
valid: { type: 'boolean' },
|
|
errors: {
|
|
type: 'array',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
type: { type: 'string' },
|
|
property: { type: 'string' },
|
|
message: { type: 'string' },
|
|
fix: { type: 'string' }
|
|
}
|
|
}
|
|
},
|
|
warnings: {
|
|
type: 'array',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
type: { type: 'string' },
|
|
property: { type: 'string' },
|
|
message: { type: 'string' },
|
|
suggestion: { type: 'string' }
|
|
}
|
|
}
|
|
},
|
|
suggestions: { type: 'array', items: { type: 'string' } },
|
|
missingRequiredFields: {
|
|
type: 'array',
|
|
items: { type: 'string' },
|
|
description: 'Only present in mode=minimal'
|
|
},
|
|
summary: {
|
|
type: 'object',
|
|
properties: {
|
|
hasErrors: { type: 'boolean' },
|
|
errorCount: { type: 'number' },
|
|
warningCount: { type: 'number' },
|
|
suggestionCount: { type: 'number' }
|
|
}
|
|
}
|
|
},
|
|
required: ['nodeType', 'displayName', 'valid']
|
|
},
|
|
annotations: {
|
|
title: 'Validate Node Config',
|
|
readOnlyHint: true,
|
|
idempotentHint: true,
|
|
},
|
|
},
|
|
{
|
|
name: 'get_template',
|
|
description: `Get template by ID. Use mode to control response size: nodes_only (minimal), structure (nodes+connections), full (complete workflow).`,
|
|
inputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
templateId: {
|
|
type: 'number',
|
|
description: 'The template ID to retrieve',
|
|
},
|
|
mode: {
|
|
type: 'string',
|
|
enum: ['nodes_only', 'structure', 'full'],
|
|
description: 'Response detail level. nodes_only: just node list, structure: nodes+connections, full: complete workflow JSON.',
|
|
default: 'full',
|
|
},
|
|
},
|
|
required: ['templateId'],
|
|
},
|
|
annotations: {
|
|
title: 'Get Template',
|
|
readOnlyHint: true,
|
|
idempotentHint: true,
|
|
},
|
|
},
|
|
{
|
|
name: 'search_templates',
|
|
description: `Search templates with multiple modes. Use searchMode='keyword' for text search, 'by_nodes' to find templates using specific nodes, 'by_task' for curated task-based templates, 'by_metadata' for filtering by complexity/setup time/services.`,
|
|
inputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
searchMode: {
|
|
type: 'string',
|
|
enum: ['keyword', 'by_nodes', 'by_task', 'by_metadata'],
|
|
description: 'Search mode. keyword=text search (default), by_nodes=find by node types, by_task=curated task templates, by_metadata=filter by complexity/services',
|
|
default: 'keyword',
|
|
},
|
|
query: {
|
|
type: 'string',
|
|
description: 'For searchMode=keyword: search keyword (e.g., "chatbot")',
|
|
},
|
|
fields: {
|
|
type: 'array',
|
|
items: {
|
|
type: 'string',
|
|
enum: ['id', 'name', 'description', 'author', 'nodes', 'views', 'created', 'url', 'metadata'],
|
|
},
|
|
description: 'For searchMode=keyword: fields to include in response. Default: all fields.',
|
|
},
|
|
nodeTypes: {
|
|
type: 'array',
|
|
items: { type: 'string' },
|
|
description: 'For searchMode=by_nodes: array of node types (e.g., ["n8n-nodes-base.httpRequest", "n8n-nodes-base.slack"])',
|
|
},
|
|
task: {
|
|
type: 'string',
|
|
enum: [
|
|
'ai_automation',
|
|
'data_sync',
|
|
'webhook_processing',
|
|
'email_automation',
|
|
'slack_integration',
|
|
'data_transformation',
|
|
'file_processing',
|
|
'scheduling',
|
|
'api_integration',
|
|
'database_operations'
|
|
],
|
|
description: 'For searchMode=by_task: the type of task',
|
|
},
|
|
category: {
|
|
type: 'string',
|
|
description: 'For searchMode=by_metadata: filter by category (e.g., "automation", "integration")',
|
|
},
|
|
complexity: {
|
|
type: 'string',
|
|
enum: ['simple', 'medium', 'complex'],
|
|
description: 'For searchMode=by_metadata: filter by complexity level',
|
|
},
|
|
maxSetupMinutes: {
|
|
type: 'number',
|
|
description: 'For searchMode=by_metadata: maximum setup time in minutes',
|
|
minimum: 5,
|
|
maximum: 480,
|
|
},
|
|
minSetupMinutes: {
|
|
type: 'number',
|
|
description: 'For searchMode=by_metadata: minimum setup time in minutes',
|
|
minimum: 5,
|
|
maximum: 480,
|
|
},
|
|
requiredService: {
|
|
type: 'string',
|
|
description: 'For searchMode=by_metadata: filter by required service (e.g., "openai", "slack")',
|
|
},
|
|
targetAudience: {
|
|
type: 'string',
|
|
description: 'For searchMode=by_metadata: filter by target audience (e.g., "developers", "marketers")',
|
|
},
|
|
limit: {
|
|
type: 'number',
|
|
description: 'Maximum number of results. Default 20.',
|
|
default: 20,
|
|
minimum: 1,
|
|
maximum: 100,
|
|
},
|
|
offset: {
|
|
type: 'number',
|
|
description: 'Pagination offset. Default 0.',
|
|
default: 0,
|
|
minimum: 0,
|
|
},
|
|
},
|
|
},
|
|
annotations: {
|
|
title: 'Search Templates',
|
|
readOnlyHint: true,
|
|
idempotentHint: true,
|
|
},
|
|
},
|
|
{
|
|
name: 'validate_workflow',
|
|
description: `Full workflow validation: structure, connections, expressions, AI tools. Returns errors/warnings/fixes. Essential before deploy.`,
|
|
inputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
workflow: {
|
|
type: 'object',
|
|
description: 'The complete workflow JSON to validate. Must include nodes array and connections object.',
|
|
},
|
|
options: {
|
|
type: 'object',
|
|
properties: {
|
|
validateNodes: {
|
|
type: 'boolean',
|
|
description: 'Validate individual node configurations. Default true.',
|
|
default: true,
|
|
},
|
|
validateConnections: {
|
|
type: 'boolean',
|
|
description: 'Validate node connections and flow. Default true.',
|
|
default: true,
|
|
},
|
|
validateExpressions: {
|
|
type: 'boolean',
|
|
description: 'Validate n8n expressions syntax and references. Default true.',
|
|
default: true,
|
|
},
|
|
profile: {
|
|
type: 'string',
|
|
enum: ['minimal', 'runtime', 'ai-friendly', 'strict'],
|
|
description: 'Validation profile for node validation. Default "runtime".',
|
|
default: 'runtime',
|
|
},
|
|
},
|
|
description: 'Optional validation settings',
|
|
},
|
|
},
|
|
required: ['workflow'],
|
|
additionalProperties: false,
|
|
},
|
|
outputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
valid: { type: 'boolean' },
|
|
summary: {
|
|
type: 'object',
|
|
properties: {
|
|
totalNodes: { type: 'number' },
|
|
enabledNodes: { type: 'number' },
|
|
triggerNodes: { type: 'number' },
|
|
validConnections: { type: 'number' },
|
|
invalidConnections: { type: 'number' },
|
|
expressionsValidated: { type: 'number' },
|
|
errorCount: { type: 'number' },
|
|
warningCount: { type: 'number' }
|
|
}
|
|
},
|
|
errors: {
|
|
type: 'array',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
node: { type: 'string' },
|
|
message: { type: 'string' },
|
|
details: { type: 'string' }
|
|
}
|
|
}
|
|
},
|
|
warnings: {
|
|
type: 'array',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
node: { type: 'string' },
|
|
message: { type: 'string' },
|
|
details: { type: 'string' }
|
|
}
|
|
}
|
|
},
|
|
suggestions: { type: 'array', items: { type: 'string' } }
|
|
},
|
|
required: ['valid', 'summary']
|
|
},
|
|
annotations: {
|
|
title: 'Validate Workflow',
|
|
readOnlyHint: true,
|
|
idempotentHint: true,
|
|
},
|
|
},
|
|
];
|
|
//# sourceMappingURL=tools.js.map
|