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”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:
- Search for the required nodes (Webhook, Code, Slack)
- Get node details with
get_node - Find similar templates with
search_templates - Create the workflow with
n8n_create_workflow
3
Validate & Auto-Fix
Ask: “Validate my workflow and fix any issues”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”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.”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 modesTemplates (3)
search_templates - Search 10,000+ templatesget_template - Get workflow JSON by IDn8n_deploy_template - Deploy from n8n.ioWorkflow 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 toolsExecution & Testing (3)
n8n_trigger_execution - Self-healing testingn8n_test_workflow - External testingn8n_executions - Execution managementWorkflow Analysis (3)
n8n_search_workflow - AST-based searchn8n_workflow_versions - Version controln8n_autofix_workflow - Auto-fix errorsCredentials & Tags (2)
n8n_manage_credentials - Manage credentialsn8n_manage_tags - Organize with tagsComplete Tool Reference
Node Discovery & Configuration (2 tools)
Node Discovery & Configuration (2 tools)
Template Tools (3 tools)
Template Tools (3 tools)
Workflow Management (8 tools)
Workflow Management (8 tools)
Create a new workflow in your N8N instance. Workflows are created inactive by default.
Retrieve a workflow by ID with different detail levels.
List workflows with filtering and pagination. Returns minimal metadata.
Update workflows incrementally with diff operations. Supports 15 operation types including typeVersion updates with automatic validation.
Replace an entire workflow with new configuration. For incremental updates, use
n8n_update_partial_workflow instead.Permanently delete a workflow. This action cannot be undone.
Validate workflow configuration, connections, and expressions.
Render a visual screenshot of a workflow and return base64 encoded image.
Workflow Analysis & Utilities (3 tools)
Workflow Analysis & Utilities (3 tools)
Search within a workflow using AST-based queries with fuzzy matching.
Manage workflow version history, rollback, and cleanup. Creates backup before rollback.
Automatically fix common validation errors. Preview fixes before applying.
Workflow Execution & Testing (3 tools)
Workflow Execution & Testing (3 tools)
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
External workflow testing without login credentials. Test workflows with webhook, form, or chat triggers. Workflow must be active.
Comprehensive execution management with advanced correlation to trace execution chains.
Credentials & Tags (2 tools)
Credentials & Tags (2 tools)
Next Steps
Best Practices
Learn tips and tricks for building better workflows with AI
Configure Agent Rules
Set up IDE-specific rules for optimal workflow building
Production Safety: Always test workflows in a development environment before deploying to production. Never edit production workflows directly without backups.
