Getting Started with Agent Tools
- Building Workflows
- Editing Workflows
Phase 1: Discovery & AssessmentPhase 2: PlanningPhase 3: ImplementationPhase 4: Validation & Testing
Discover Templates & Best Practices
For AI workflows, get patterns first. For standard workflows, search templates directly.
Self-Healing: Synta MCP automatically tests workflows, detects runtime errors, and modifies configurations until successful execution. Requires N8N login credentials. See Installation for setup.
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.ioAI Workflow Guides (2)
get_ai_workflow_patterns - AI architectural patternsget_best_practices - Technique guidanceWorkflow Management (7)
n8n_create_workflow - Create workflowsn8n_update_partial_workflow - Diff-based updates with typeVersion supportn8n_list_workflows - List all workflows…and 4 more workflow toolsExecution & Testing (5)
n8n_trigger_execution - Self-healing testingn8n_test_workflow - External testingn8n_manage_executions - Execution managementn8n_manage_pindata - Mock data for testingWorkflow Analysis (2)
n8n_search_workflow - AST-based searchn8n_autofix_workflow - Auto-fix errorsCredentials (1)
n8n_manage_credentials - Manage credentialsComplete Tool Reference
Node Discovery & Configuration (2 tools)
Node Discovery & Configuration (2 tools)
Template Tools (3 tools)
Template Tools (3 tools)
AI Workflow Guides (2 tools)
AI Workflow Guides (2 tools)
Get architectural patterns for workflows containing AI elements. Mandatory for workflows with AI components (agents, RAG, LLMs, vector stores, AI APIs). These patterns are authoritative blueprints that must be followed strictly.
Get best practices and implementation guidance for workflow techniques. Use alongside templates for complete workflow planning.
Workflow Management (7 tools)
Workflow Management (7 tools)
Create a new workflow in your N8N instance using adaptive validation and automatic sanitization. Workflows are created inactive by default.
Retrieve a workflow by ID with different detail levels.
List workflows with filtering and pagination. Returns minimal metadata (id/name/active/dates/tags). Check hasMore/nextCursor for pagination.
Update workflows incrementally with diff operations. Supports 17 operation types: addNode, removeNode, updateNode, moveNode, enable/disableNode, addConnection, removeConnection, rewireConnection, cleanStaleConnections, replaceConnections, updateSettings, updateName, add/removeTag, publishWorkflow, deactivateWorkflow. TypeVersion changes via updateNode are automatically validated with guidance. Supports smart parameters (branch=‘true’/‘false’ for IF nodes, case=N for Switch nodes) and AI connections.
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. When execution data exists, also performs runtime expression checks and reports actionable fixes.
Workflow Analysis & Utilities (2 tools)
Workflow Analysis & Utilities (2 tools)
Search within a workflow to find nodes, connections, flow patterns, or text. Use regex matching by default for flexible substring search, exact for strict equality, or fuzzy for typo tolerance. Returns matching nodes with configurable detail levels.
Automatically fix common workflow validation errors. Preview fixes before applying. Handles expression format, typeVersion corrections, error output config, node types, webhook paths, version migrations, and parameter locations.
Workflow Execution & Testing (5 tools)
Workflow Execution & Testing (5 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. Works with n8n_manage_pindata for comprehensive testing.
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. Use
action: "get" with workflowId (no id) to fetch the latest execution for a workflow.Save and reuse mock data for testing workflows. Instead of calling real APIs or waiting for webhooks, save sample output from any node and reuse it in future test runs. Especially useful for triggers (webhooks, forms) but works with any node for consistent testing without external dependencies.Authentication:
analyzePinDataRequirement works with API key/OAuth only. CRUD operations (add/update/remove/clear/read) require login credentials.Inspect post-execution node input/output data. Use after any execution to debug expression errors, verify data shapes, or understand branch routing (IF/Switch outputs). Defaults to schema-style output (field/type shape) to keep context small.
Credentials (1 tool)
Credentials (1 tool)
Manage n8n credentials with five modes: get_credential_docs, create, delete, get_schema, check_workflow.
Next Steps
Best Practices
Learn tips and tricks for building better workflows with AI
Configure Agent Rules
Set up client-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.
