Synta MCP provides 23 active tools for searching nodes, shortlisting recommended nodes, configuring them, finding templates, building workflows, validating them, and testing them against a live n8n instance. The recommended flow is to discover first, shortlist likely nodes second, configure with exact node definitions third, and only then create or update workflows.Documentation Index
Fetch the complete documentation index at: https://mcp-docs.synta.io/llms.txt
Use this file to discover all available pages before exploring further.
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 (3)
search_nodes - Full-text search across nodesget_suggested_nodes - Curated node shortlists by workflow categoryget_node - Exact node definitions in standard, summary, or raw viewTemplates (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 Authoring (4)
n8n_create_workflow - Create workflowsn8n_get_workflow - Retrieve workflows by IDn8n_update_full_workflow - Replace full workflow definitionsn8n_update_partial_workflow - Diff-based updates with typeVersion supportWorkflow Operations (3)
n8n_list_workflows - List all workflowsn8n_validate_workflow - Validate configs, connections, and expressionsn8n_delete_workflow - Permanently delete workflowsExecution & Testing (5)
n8n_trigger_execution - Self-healing testingn8n_test_workflow - External testingn8n_manage_executions - Execution managementn8n_manage_pindata - Mock data for testingn8n_inspect_node_io - Inspect node inputs and outputsWorkflow Analysis (2)
n8n_search_workflow - AST-based searchn8n_autofix_workflow - Auto-fix errorsCredentials (1)
n8n_manage_credentials - Manage credentialsComplete Tool Reference
Node Discovery & Configuration (3 tools)
Node Discovery & Configuration (3 tools)
Search for n8n nodes by name or service. Use it in two passes: first for lightweight discovery, then again with
includeOperations=true when you need discriminator details.Get curated node recommendations for workflow technique categories like
chatbot, notification, document_processing, or scraping_and_research.Get exact node definitions for one or more nodes. Use
view="standard" for the recommended authoring view, view="summary" for a quick JSON overview, and view="raw" for the complete raw schema.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 (8 tools)
Workflow Management (8 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.
