Skip to main content

Prerequisites

Before you begin, make sure you have:
  1. Node.js installed - Download Node.js (version 16 or higher)
  2. Synta MCP API Key - Get yours at synta.io/mcp
  3. n8n credentials - Your n8n instance URL and API key
The API key from synta.io/mcp is different from your n8n API key. You’ll need both for full functionality.
Follow these steps to obtain your n8n API key:
  1. Open your n8n instance and log in
  2. Navigate to Settings - Click on your profile icon in the bottom left
  3. Go to n8n API - Find it in the sidebar menu
  4. Create an API Key:
    • Click the “Create an API Key” button
    • Give it a descriptive label (e.g., “Synta MCP Integration”)
    • Click “Create”
  5. Copy the API key - Save it securely, you won’t be able to see it again!
Synta MCP requires a publicly accessible n8n instance (e.g., https://your-instance.app.n8n.cloud). Localhost URLs are not supported.

Configuration by Client

Select your AI coding agent below to see the specific configuration steps:
Click the button below to install Synta MCP with one click:Add Synta MCP to CursorAfter clicking:
  1. Cursor will prompt you to install the server
  2. Important: You’ll need to manually edit the configuration to replace:
    • YOUR_SYNTA_API_KEY with your API key from synta.io/mcp
    • YOUR_N8N_URL with your n8n instance URL
    • YOUR_N8N_API_KEY with your n8n API key
  3. Restart Cursor

Option 2: Manual Configuration

Step 1: Locate Your MCP Configuration File

You can access the configuration in two ways:Method A - Via Cursor UI:
  1. Open Cursor
  2. Go to CursorSettingsCursor Settings
  3. Navigate to Tools and MCP
  4. Click on “New MCP Server”
Method B - Direct File Edit:
  • macOS: ~/.cursor/mcp.json
  • Windows: %APPDATA%\Cursor\mcp.json
  • Linux: ~/.config/cursor/mcp.json

Step 2: Add Synta MCP Configuration

Add the following configuration:
{
  "mcpServers": {
    "synta-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.synta.io/mcp",
        "--header",
        "Authorization: Bearer YOUR_SYNTA_API_KEY",
        "--header",
        "X-N8n-Url: YOUR_N8N_URL",
        "--header",
        "X-N8n-Key: YOUR_N8N_API_KEY"
      ]
    }
  }
}

Step 3: Replace Credentials

Replace the following placeholders:
  • YOUR_SYNTA_API_KEY - Your API key from synta.io/mcp
  • YOUR_N8N_URL - Your n8n instance URL (e.g., https://your-instance.app.n8n.cloud)
  • YOUR_N8N_API_KEY - Your n8n API key

Step 4: Restart Cursor

Close and reopen Cursor to load the new MCP configuration. You should now see Synta MCP tools available in your AI assistant.Enhance your AI assistant with specialized n8n workflow expertise:
  1. Open Cursor chat and click the @ symbol
  2. Type “rules” in the input field
  3. Click “Add New Rule”
  4. Get the rule content:
  5. Paste the content into the new rule
  6. Save the rule
These custom rules turn your AI assistant into an n8n workflow specialist, providing expert guidance on workflow building, node configuration, and best practices.

Verify Installation

After restarting your AI agent, verify the installation by asking:
Can you search for the slack node in n8n
Your AI agent should respond with search results for Slack nodes if the installation was successful.
If you encounter any issues, check the Troubleshooting page for common problems and solutions.

Next Steps