Skip to main content
Synta MCP provides 21 specialized tools to help your AI agent understand, search, validate, and build N8N workflows with full support for both core and community nodes. These tools include self-healing capabilities that automatically test, detect errors, and fix issues.

Getting Started with Agent Tools

Follow these typical workflows to get the most out of Synta MCP:
1

Search & Discover Nodes

Ask your coding agent: “Use node search to find how to send messages in Slack” or “Search for nodes that handle HTTP requests”
search_nodes({query: "slack", includeExamples: true})
The includeExamples flag returns real-world configurations from production workflows.
2

Build Your First Workflow

Ask: “Create a workflow that triggers on a webhook, transforms the data with a Code node, and sends a Slack notification”Your AI will:
  1. Search for the required nodes (Webhook, Code, Slack)
  2. Get node details with get_node
  3. Find similar templates with search_templates
  4. Create the workflow with n8n_create_workflow
3

Validate & Auto-Fix

Ask: “Validate my workflow and fix any issues”
n8n_validate_workflow({id: "workflow-id"})
n8n_autofix_workflow({id: "workflow-id", applyFixes: true})
Autofix handles common issues like expression format, typeVersion corrections, and webhook paths.
4

Test with Self-Healing

Ask: “Test my workflow and fix any errors automatically”
n8n_trigger_execution({id: "workflow-id"})
Self-Healing Capabilities:
  • Automatically detects trigger type (Manual, Chat, Webhook)
  • Executes the workflow and analyzes results
  • Identifies root causes of failures
  • Modifies configurations to fix detected issues
Requires N8N login credentials for full self-healing. See Installation for setup.
5

Debug & Trace Executions

Ask: “Why did my workflow fail? Trace the execution chain.”
n8n_executions({action: "get", id: "exec-id", mode: "error"})
n8n_executions({action: "correlate", executionId: "exec-id"})
Correlation traces execution chains across multiple workflows using webhook path matching and timing analysis.

Tool Categories

Node Discovery (2)

search_nodes - Full-text search across nodesget_node - Complete node information with multiple modes

Templates (3)

search_templates - Search 10,000+ templatesget_template - Get workflow JSON by IDn8n_deploy_template - Deploy from n8n.io

Workflow Management (8)

n8n_create_workflow - Create workflowsn8n_update_partial_workflow - Diff-based updates with typeVersion supportn8n_list_workflows - List all workflows…and 5 more workflow tools

Execution & Testing (3)

n8n_trigger_execution - Self-healing testingn8n_test_workflow - External testingn8n_executions - Execution management

Workflow Analysis (3)

n8n_search_workflow - AST-based searchn8n_workflow_versions - Version controln8n_autofix_workflow - Auto-fix errors

Credentials & Tags (2)

n8n_manage_credentials - Manage credentialsn8n_manage_tags - Organize with tags

Complete Tool Reference

search_nodes
tool
Full-text search across all N8N nodes by name, description, or category with optional real-world examples from production workflows.
get_node
tool
Get node information with progressive detail levels and multiple modes.
search_templates
tool
Search through 10,000+ workflow templates with multiple search modes.
get_template
tool
Get complete workflow JSON for a specific template by ID.
n8n_deploy_template
tool
Deploy a workflow template from n8n.io directly to your n8n instance with auto-fix.
n8n_create_workflow
tool
Create a new workflow in your N8N instance. Workflows are created inactive by default.
n8n_get_workflow
tool
Retrieve a workflow by ID with different detail levels.
n8n_list_workflows
tool
List workflows with filtering and pagination. Returns minimal metadata.
n8n_update_partial_workflow
tool
Update workflows incrementally with diff operations. Supports 15 operation types including typeVersion updates with automatic validation.
n8n_update_full_workflow
tool
Replace an entire workflow with new configuration. For incremental updates, use n8n_update_partial_workflow instead.
n8n_delete_workflow
tool
Permanently delete a workflow. This action cannot be undone.
n8n_validate_workflow
tool
Validate workflow configuration, connections, and expressions.
visual_capture
tool
Render a visual screenshot of a workflow and return base64 encoded image.
n8n_search_workflow
tool
Search within a workflow using AST-based queries with fuzzy matching.
n8n_workflow_versions
tool
Manage workflow version history, rollback, and cleanup. Creates backup before rollback.
n8n_autofix_workflow
tool
Automatically fix common validation errors. Preview fixes before applying.
n8n_trigger_execution
tool
The most powerful tool in Synta MCP. Triggers workflows and enables true AI self-healing by automatically testing, detecting errors, analyzing root causes, and modifying configurations to fix issues.Requires: N8N_LOGIN_EMAIL and N8N_LOGIN_PASSWORD
n8n_test_workflow
tool
External workflow testing without login credentials. Test workflows with webhook, form, or chat triggers. Workflow must be active.
n8n_executions
tool
Comprehensive execution management with advanced correlation to trace execution chains.
n8n_manage_credentials
tool
Unified tool for managing n8n credentials with three modes.
n8n_manage_tags
tool
Unified tool for managing workflow tags with six modes.

Next Steps

Production Safety: Always test workflows in a development environment before deploying to production. Never edit production workflows directly without backups.