{
  "workflow": {
    "id": 7174,
    "name": "AI-powered LinkedIn connection recommender",
    "views": 492,
    "recentViews": 0,
    "totalViews": 492,
    "createdAt": "2025-08-08T13:19:06.550Z",
    "description": "The workflow is triggered manually with user input, searches LinkedIn profiles, processes the results using AI, generates connection recommendations, and delivers them via email. It leverages AI to enhance networking opportunities based on insights from profiles.\n\n## Good to Know\n\n- Each email is personalized with the user’s name and recommended connections.\n- Recommendations are based on LinkedIn search results and AI analysis.\n- The system ensures data privacy by processing inputs securely.\n- Email notifications include a curated list of potential connections.\n\n## How it Works\n\n### Profile Analysis Workflow\n- **Get User Data from Email**: Manually inputs user email and profile information to initiate the workflow.\n- **Your Profile Information**: Provides initial user data for LinkedIn search.\n- **Search LinkedIn Profiles**: Queries LinkedIn via an API (e.g., SerpAPI) to gather profile data.\n- **Process LinkedIn Search Results**: Extracts relevant details from search results.\n\n### AI Recommendation Workflow\n- **AI Profile Analysis**: Uses an AI model (e.g., Ollama Model) to analyze profile data and suggest connections.\n- **Create Recommendations**: Generates a curated list of potential connections.\n- **Create Final Recommendations**: Refines and formats the recommendation list.\n- **Create Email**: Prepares a personalized email with the connection list.\n- **Send Email**: Delivers the email to the user.\n\n## Excel Sheet Structure\n\n- **No persistent Excel sheet is required**; data is processed in-memory and emailed directly. However, optional logging can be set up:\n  - **Optional Log Sheet (Recommendations)**:\n    - **Timestamp**: Date and time of recommendation generation.\n    - **User Email**: User’s email address.\n    - **Profile Name**: User’s LinkedIn profile name.\n    - **Industry**: User’s industry.\n    - **Recommended Connections**: List of suggested connections.\n    - **Sent Status**: Whether the email was sent successfully.\n\n## How to Use\n1. **Import the Workflow into your n8n instance** and configure email integration.\n2. **Provide User Data**: Manually enter the user’s email and profile information in the \"Get User Data from Email\" node.\n3. **Configure API Credentials**: Set up SerpAPI for LinkedIn searches and email service (e.g., SMTP).\n4. **Run the Workflow**: Execute manually to test the process.\n5. **Monitor Emails**: Check the user’s inbox for the curated connection list.\n6. **Optional Logging**: Set up a Google Sheet to log recommendations if desired.\n\n## Requirements\n- **SerpAPI**: For LinkedIn profile searches.\n- **Email Service Integration**: Gmail, SMTP, or similar for email delivery.\n- **Ollama Model**: For AI-based profile analysis.\n- **n8n Instance**: With SerpAPI, email, and function nodes.\n\n## Customizing this Workflow\n- **Expand Data Sources**: Integrate additional platforms (e.g., Xing) for broader searches.\n- **Enhance AI**: Train the Ollama Model for more specific connection criteria (e.g., job role, location).\n- **Add Notifications**: Include Slack or SMS alerts for admin tracking.\n- **Customize Email**: Adjust the email template for branding or additional details.\n- **Automate Trigger**: Replace manual input with a scheduled trigger or webhook.\n",
    "workflow": {
      "id": "fnSWZ5XCdbq6snzS",
      "meta": {
        "instanceId": "dd69efaf8212c74ad206700d104739d3329588a6f3f8381a46a481f34c9cc281",
        "templateCredsSetupCompleted": true
      },
      "name": "AI-Powered LinkedIn Connection Recommender",
      "tags": [],
      "nodes": [
        {
          "id": "ef9e2f3b-c06a-484a-8903-2f37b35728f3",
          "name": "Search LinkedIn Profiles",
          "type": "n8n-nodes-base.httpRequest",
          "position": [
            -600,
            4.76293103448279
          ],
          "parameters": {
            "url": "https://serpapi.com/search.json",
            "options": {},
            "sendQuery": true,
            "authentication": "genericCredentialType",
            "genericAuthType": "httpBasicAuth",
            "queryParameters": {
              "parameters": [
                {
                  "name": "engine",
                  "value": "google"
                },
                {
                  "name": "q",
                  "value": "=site:linkedin.com/in \"{{ $json.Position }}\" \"{{ $json.Location }}\" {{ $json.Skills.split(',')[0] }}"
                },
                {
                  "name": "api_key",
                  "value": "="
                },
                {
                  "name": "num",
                  "value": "200"
                },
                {
                  "name": "start",
                  "value": "0"
                }
              ]
            }
          },
          "credentials": {
            "httpBasicAuth": {
              "id": "credential-id",
              "name": "httpBasicAuth Credential"
            },
            "httpQueryAuth": {
              "id": "credential-id",
              "name": "httpQueryAuth Credential"
            }
          },
          "typeVersion": 4
        },
        {
          "id": "34999f59-ae4b-4ef6-9603-bc5f6b2798d0",
          "name": "AI Profile Analysis",
          "type": "@n8n/n8n-nodes-langchain.chainLlm",
          "position": [
            -160,
            4.76293103448279
          ],
          "parameters": {
            "text": "=You are a LinkedIn networking expert. Analyze the following user profile and potential connections to provide intelligent networking recommendations.\n\nUser Profile:\n- Name: {{ $json.userProfile.name }}\n- Position: {{ $json.userProfile.current_position }}\n- Industry: {{ $json.userProfile.industry }}\n- Location: {{ $json.userProfile.location }}\n- Skills: {{ $json.userProfile.skills }}\n- Interests: {{ $json.userProfile.interests }}\n- Target Roles: {{ $json.userProfile.target_roles }}\n- Preferred Companies: {{ $json.userProfile.company_types }}\n\nPotential Connections Found:\n{{ $json.foundProfiles.map(p => `- ${p.name}: ${p.headline}`).join('\\n') }}\n\nPlease provide a JSON response with the following structure:\n{\n  \"scored_profiles\": [\n    {\n      \"name\": \"Profile Name\",\n      \"score\": 8.5,\n      \"reasons\": [\"Similar role\", \"Same industry\", \"Skill overlap\"]\n    }\n  ],\n  \"top_connections\": [\n    // Top 10 recommended profiles with full details\n  ],\n  \"connection_strategies\": [\n    \"Personalized connection message suggestion for each top profile\"\n  ],\n  \"networking_insights\": \"Key insights about networking opportunities and industry trends\"\n}\n\nScore profiles from 1-10 based on:\n- Role alignment with user's target positions\n- Industry relevance\n- Skill complementarity\n- Networking value\n- Career growth potential\n\nFocus on quality connections that could provide mutual value.",
            "batching": {},
            "promptType": "define"
          },
          "typeVersion": 1.7
        },
        {
          "id": "d8205e9b-e176-477c-a8e7-2f1eb94bc3cb",
          "name": "Ollama Model1",
          "type": "@n8n/n8n-nodes-langchain.lmOllama",
          "position": [
            -72,
            224.7629310344828
          ],
          "parameters": {
            "model": "llama3.2-16000:latest",
            "options": {
              "topP": 0.9,
              "temperature": 0.7
            }
          },
          "credentials": {
            "ollamaApi": {
              "id": "credential-id",
              "name": "ollamaApi Credential"
            }
          },
          "typeVersion": 1
        },
        {
          "id": "482f65e9-4075-4d60-8bc8-3c078f8c7acc",
          "name": "Send email",
          "type": "n8n-nodes-base.emailSend",
          "position": [
            656,
            4.76293103448279
          ],
          "webhookId": "46290c2a-08bd-43d7-bb85-112fceaed4b8",
          "parameters": {
            "text": "={{ $json.body }}",
            "options": {},
            "subject": "={{ $json.subject }}",
            "toEmail": "{{ $json.from }}",
            "fromEmail": "user@example.com",
            "emailFormat": "text"
          },
          "credentials": {
            "smtp": {
              "id": "credential-id",
              "name": "smtp Credential"
            }
          },
          "typeVersion": 2.1
        },
        {
          "id": "c759dfb7-9935-41e0-9d38-e41ff48c8b0b",
          "name": "Create Email",
          "type": "n8n-nodes-base.code",
          "position": [
            436,
            4.76293103448279
          ],
          "parameters": {
            "jsCode": "// Get the input data (your JSON)\nconst data = items[0].json;\n\n// Build the email text\nlet emailText = `📊 Networking Report for ${data.user_profile.name}\\n`;\nemailText += `\\nInterests: ${data.user_profile.interests}`;\nemailText += `\\nTarget Industry: ${data.user_profile.target_industry}\\n`;\n\nemailText += `\\nSummary:\\n`;\nemailText += `- Total Profiles Found: ${data.summary.total_profiles_found}\\n`;\nemailText += `- Analyzed Connections: ${data.summary.analyzed_connections}\\n`;\nemailText += `- High Priority: ${data.summary.high_priority}\\n`;\nemailText += `- Medium Priority: ${data.summary.medium_priority}\\n`;\nemailText += `- Average Score: ${data.summary.average_score}\\n`;\n\nemailText += `\\nTop Connection Recommendations:\\n`;\ndata.connection_recommendations.forEach((rec, index) => {\n    emailText += `\\n${index + 1}. ${rec.name} (${rec.priority} Priority, Score: ${rec.aiScore})`;\n    emailText += `\\n   ${rec.description}`;\n    emailText += `\\n   Mutual Connections: ${rec.mutual_connections}`;\n    emailText += `\\n   Reason: ${rec.connectionReason}`;\n    emailText += `\\n   Suggested Message: \"${rec.suggestedMessage}\"\\n`;\n});\n\nemailText += `\\nNext Steps:\\n`;\ndata.next_steps.forEach((step, i) => {\n    emailText += `- ${step}\\n`;\n});\n\nemailText += `\\nAI Insights:\\n${data.ai_insights}\\n`;\n\nemailText += `\\nBest Networking Times:\\nDays: ${data.networking_strategy.best_days.join(\", \")}\\nTimes: ${data.networking_strategy.best_times.join(\", \")}\\n`;\n\nreturn [{\n    json: {\n        subject: `Networking Report - ${data.user_profile.name}`,\n        body: emailText\n    }\n}];\n"
          },
          "typeVersion": 2
        },
        {
          "id": "7e27272d-1c4e-4e15-b7be-f0ef85937c13",
          "name": "Your Profile Information",
          "type": "n8n-nodes-base.set",
          "position": [
            -820,
            4.76293103448279
          ],
          "parameters": {
            "fields": {
              "values": [
                {
                  "name": "Name"
                },
                {
                  "name": "Position"
                },
                {
                  "name": "Industry"
                },
                {
                  "name": "Location"
                },
                {
                  "name": "Skills"
                },
                {
                  "name": "Interests"
                },
                {
                  "name": "Target Roles"
                },
                {
                  "name": "Company Types"
                }
              ]
            },
            "options": {}
          },
          "typeVersion": 3
        },
        {
          "id": "a9d1762a-aaf2-45a5-a5fc-381ec2d174c5",
          "name": "Process LinkedIn Search Results",
          "type": "n8n-nodes-base.code",
          "position": [
            -380,
            4.76293103448279
          ],
          "parameters": {
            "jsCode": "// Process search results and extract LinkedIn profiles\nconst results = $json.organic_results || [];\n\n// Get user profile from the previous node\nconst userProfile = $input.first().json || {};\n\n// Filter and process LinkedIn profiles\nconst linkedinProfiles = results\n  .filter(result => {\n    const link = result.link || '';\n    return link.includes('linkedin.com/in/') && \n           !link.includes('/posts/') && \n           !link.includes('/activity/');\n  })\n  .map(result => {\n    let name = result.title || 'Unknown';\n    // Clean up the title to extract just the name\n    name = name.replace(/\\s*[-|]\\s*LinkedIn.*$/i, '').trim();\n    \n    return {\n      name: name,\n      headline: result.snippet || result.title || '',\n      link: result.link,\n      description: result.snippet || '',\n      source: 'Google Search via SerpAPI'\n    };\n  })\n  .slice(0, 15); // Limit to top 15 results\n\n// Safely extract skills - handle undefined/null values\nconst getFirstSkill = (skills) => {\n  if (!skills || typeof skills !== 'string') {\n    return '';\n  }\n  const skillsArray = skills.split(',');\n  return skillsArray.length > 0 ? skillsArray[0].trim() : '';\n};\n\n// Build search query with safe property access\nconst buildSearchQuery = () => {\n  const position = userProfile.Position || '';\n  const location = userProfile.Location || '';\n  const firstSkill = getFirstSkill(userProfile.Skills);\n  \n  return `site:linkedin.com/in \"${position}\" \"${location}\" ${firstSkill}`.trim();\n};\n\n// Return structured data for AI analysis\nreturn {\n  json: {\n    userProfile: {\n      name: $('Your Profile Information').first().json.Name || '',\n      current_position: $('Your Profile Information').first().json.Position || '',\n      industry: $('Your Profile Information').first().json.Industry || '',\n      location:  $('Your Profile Information').first().json.Location|| '',\n      skills: $('Your Profile Information').first().json.Skills|| '',\n      interests: $('Your Profile Information').first().json.Interests || '',\n      target_roles: $('Your Profile Information').first().json['Target Roles']|| '',\n      company_types: $('Your Profile Information').first().json['Company Types'] || ''\n    },\n    foundProfiles: linkedinProfiles,\n    totalFound: linkedinProfiles.length,\n    searchQuery: buildSearchQuery()\n  }\n};"
          },
          "typeVersion": 2,
          "alwaysOutputData": true
        },
        {
          "id": "808cb1fa-9970-4d0e-8d34-37eea340fdb4",
          "name": "Create Final Recommendations",
          "type": "n8n-nodes-base.code",
          "position": [
            216,
            4.76293103448279
          ],
          "parameters": {
            "jsCode": "// Process AI recommendations and create final output\nconst inputData = $input.first();\nconst inputText = inputData.json?.text || inputData.json || inputData;\n\nlet aiRecommendations = {};\ntry {\n  // Extract JSON from the text content\n  const content = typeof inputText === 'string' ? inputText : JSON.stringify(inputText);\n  \n  // Try to parse JSON from the AI response\n  const jsonMatch = content.match(/```json\\n([\\s\\S]*?)\\n```/) || content.match(/\\{[\\s\\S]*\\}/);\n  if (jsonMatch) {\n    const jsonString = jsonMatch[1] || jsonMatch[0];\n    aiRecommendations = JSON.parse(jsonString);\n  } else {\n    throw new Error('No JSON found in response');\n  }\n} catch (error) {\n  console.log('Could not parse AI response:', error.message);\n  console.log('Input data:', inputData);\n  \n  // Create fallback recommendations if parsing fails\n  aiRecommendations = {\n    scored_profiles: [],\n    top_connections: [],\n    connection_strategies: [],\n    networking_insights: 'Focus on building meaningful professional relationships in your industry.'\n  };\n}\n\n// Helper function to safely split and get first element\nfunction safeGetFirst(str, delimiter = ',') {\n  if (!str || typeof str !== 'string') return '';\n  const parts = str.split(delimiter);\n  return parts.length > 0 ? parts[0].trim() : '';\n}\n\n// Helper function to safely split string\nfunction safeSplit(str, delimiter = ',') {\n  if (!str || typeof str !== 'string') return [];\n  return str.split(delimiter).map(item => item.trim()).filter(item => item);\n}\n\n// Helper function to generate connection message\nfunction generateConnectionMessage(profile, index) {\n  if (!profile || !profile.name) return 'Hi! I\\'d love to connect and share professional insights.';\n  \n  const firstName = safeGetFirst(profile.name, ' ');\n  const description = profile.description || '';\n  \n  // Create personalized messages based on profile\n  if (description.toLowerCase().includes('devops')) {\n    return `Hi ${firstName}, I'm interested in DevOps and cloud technologies. I'd love to connect and learn from your experience!`;\n  } else if (description.toLowerCase().includes('aws') || description.toLowerCase().includes('cloud')) {\n    return `Hi ${firstName}, I noticed your expertise in cloud computing. Would love to connect and share insights about the industry!`;\n  } else {\n    return `Hi ${firstName}, I'd love to connect with a fellow professional and learn from your experience in the industry.`;\n  }\n}\n\n// Helper function to extract tags from description\nfunction extractTags(description) {\n  if (!description) return ['Professional Contact'];\n  \n  const tags = [];\n  const descText = description.toLowerCase();\n  \n  // Add technology tags\n  const techs = ['aws', 'azure', 'gcp', 'devops', 'terraform', 'ansible', 'jenkins', 'kubernetes', 'docker'];\n  techs.forEach(tech => {\n    if (descText.includes(tech)) {\n      tags.push(tech.toUpperCase());\n    }\n  });\n  \n  // Add role tags\n  if (descText.includes('senior') || descText.includes('lead')) {\n    tags.push('Senior Level');\n  }\n  \n  if (descText.includes('mentor') || descText.includes('enthusiast')) {\n    tags.push('Mentor');\n  }\n  \n  return tags.length > 0 ? tags : ['Professional Contact'];\n}\n\n// Process the connections from AI recommendations\nconst connections = aiRecommendations.top_connections || [];\nconst scoredProfiles = aiRecommendations.scored_profiles || [];\n\nconst enhancedConnections = connections.map((profile, index) => {\n  // Find matching score data\n  const scoreData = scoredProfiles.find(p => \n    p.name && profile.name && \n    p.name.toLowerCase().trim() === profile.name.toLowerCase().trim()\n  );\n  \n  const score = scoreData?.score || (9.5 - index * 0.3); // Fallback scoring\n  \n  return {\n    name: profile.name || 'Unknown',\n    description: profile.description || '',\n    connections: profile.connections || 0,\n    mutual_connections: profile.mutual_connections || 0,\n    priority: score >= 8.5 ? 'High' : score >= 7.5 ? 'Medium' : 'Low',\n    aiScore: score,\n    connectionReason: scoreData?.reasons?.join(', ') || 'Professional networking opportunity',\n    suggestedMessage: generateConnectionMessage(profile, index),\n    tags: extractTags(profile.description),\n    estimatedResponseRate: score >= 8.5 ? 'High (70-90%)' : score >= 7.5 ? 'Medium (40-70%)' : 'Low (20-40%)',\n    link: profile.link || '#'\n  };\n}).sort((a, b) => b.aiScore - a.aiScore); // Sort by AI score\n\n// Create individual connection strategies\nconst connectionStrategies = enhancedConnections.map(conn => {\n  const firstName = safeGetFirst(conn.name, ' ');\n  return `${firstName}: ${conn.suggestedMessage.replace(`Hi ${firstName}, `, '')}`;\n});\n\nreturn {\n  json: {\n    summary: {\n      total_profiles_found: scoredProfiles.length,\n      analyzed_connections: enhancedConnections.length,\n      high_priority: enhancedConnections.filter(c => c.priority === 'High').length,\n      medium_priority: enhancedConnections.filter(c => c.priority === 'Medium').length,\n      low_priority: enhancedConnections.filter(c => c.priority === 'Low').length,\n      average_score: enhancedConnections.length > 0 ? \n        (enhancedConnections.reduce((sum, c) => sum + c.aiScore, 0) / enhancedConnections.length).toFixed(1) : 0\n    },\n    user_profile: {\n      name: \"Vrushti Sukhadiya\", // Extracted from the analysis text\n      interests: \"DevOps, Cloud Computing, Automation\",\n      target_industry: \"IT, Tech Startups, Cloud Companies\"\n    },\n    connection_recommendations: enhancedConnections,\n    connection_strategies: connectionStrategies,\n    ai_insights: aiRecommendations.networking_insights || 'Focus on building meaningful professional relationships in your industry.',\n    networking_strategy: {\n      weekly_goal: '5-10 new connections',\n      best_days: ['Tuesday', 'Wednesday', 'Thursday'],\n      best_times: ['9-11 AM', '2-4 PM'],\n      follow_up_schedule: 'Within 48 hours of connection acceptance',\n      focus_areas: ['DevOps professionals', 'Cloud Computing experts', 'AI/ML enthusiasts']\n    },\n    next_steps: [\n      'Start with highest-scored profiles (Mihir Suthar - 9.5, Muneeswaran M - 9.2)',\n      'Check for mutual connections before reaching out',\n      'Engage with their recent posts about DevOps/Cloud topics',\n      'Send personalized connection requests highlighting common interests',\n      'Follow up with thoughtful messages about industry trends',\n      'Consider attending DevOps/Cloud computing events where they might be present'\n    ],\n    top_recommendations: enhancedConnections.slice(0, 3).map(conn => ({\n      name: conn.name,\n      why_connect: conn.connectionReason,\n      action_item: `Connect with ${safeGetFirst(conn.name, ' ')} focusing on ${conn.tags.slice(0, 2).join(' and ')} expertise`\n    }))\n  }\n};"
          },
          "typeVersion": 2
        },
        {
          "id": "e1b30786-455f-414f-9577-36634a0c1cd9",
          "name": "Get User Data From Email ",
          "type": "n8n-nodes-base.emailReadImap",
          "position": [
            -1040,
            4.76293103448279
          ],
          "parameters": {
            "options": {}
          },
          "credentials": {
            "imap": {
              "id": "credential-id",
              "name": "imap Credential"
            }
          },
          "typeVersion": 2
        },
        {
          "id": "02259afc-6178-49f4-b08c-82dc7667bd06",
          "name": "Sticky Note",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -940,
            -420
          ],
          "parameters": {
            "width": 680,
            "height": 340,
            "content": "## System Architecture\n- **Profile Analysis Pipeline**:\n  - **Get User Data from Email**: Initiates with manual user input.\n  - **Your Profile Information**: Provides initial data.\n  - **Search LinkedIn Profiles**: Fetches profile data via API.\n  - **Process LinkedIn Search Results**: Extracts relevant information.\n- **AI Recommendation Flow**:\n  - **AI Profile Analysis**: Analyzes data with AI.\n  - **Create Recommendations**: Generates initial connection list.\n  - **Create Final Recommendations**: Refines the list.\n- **Delivery Flow**:\n  - **Create Email**: Prepares the email content.\n  - **Send Email**: Sends the curated list to the user."
          },
          "typeVersion": 1
        }
      ],
      "active": false,
      "pinData": {},
      "settings": {
        "executionOrder": "v1"
      },
      "versionId": "9073190a-946e-4f57-998d-365de4ec3ae8",
      "connections": {
        "Create Email": {
          "main": [
            [
              {
                "node": "Send email",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Ollama Model1": {
          "ai_languageModel": [
            [
              {
                "node": "AI Profile Analysis",
                "type": "ai_languageModel",
                "index": 0
              }
            ]
          ]
        },
        "AI Profile Analysis": {
          "main": [
            [
              {
                "node": "Create Final Recommendations",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Search LinkedIn Profiles": {
          "main": [
            [
              {
                "node": "Process LinkedIn Search Results",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Your Profile Information": {
          "main": [
            [
              {
                "node": "Search LinkedIn Profiles",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Get User Data From Email ": {
          "main": [
            [
              {
                "node": "Your Profile Information",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Create Final Recommendations": {
          "main": [
            [
              {
                "node": "Create Email",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Process LinkedIn Search Results": {
          "main": [
            [
              {
                "node": "AI Profile Analysis",
                "type": "main",
                "index": 0
              }
            ]
          ]
        }
      }
    },
    "lastUpdatedBy": 29,
    "workflowInfo": {
      "nodeCount": 10,
      "nodeTypes": {
        "n8n-nodes-base.set": {
          "count": 1
        },
        "n8n-nodes-base.code": {
          "count": 3
        },
        "n8n-nodes-base.emailSend": {
          "count": 1
        },
        "n8n-nodes-base.stickyNote": {
          "count": 1
        },
        "n8n-nodes-base.httpRequest": {
          "count": 1
        },
        "n8n-nodes-base.emailReadImap": {
          "count": 1
        },
        "@n8n/n8n-nodes-langchain.chainLlm": {
          "count": 1
        },
        "@n8n/n8n-nodes-langchain.lmOllama": {
          "count": 1
        }
      }
    },
    "status": "published",
    "user": {
      "name": "Oneclick AI Squad",
      "username": "oneclick-ai",
      "bio": "The AI Squad Initiative is a pioneering effort to build, automate and scale AI-powered workflows using n8n.io. Our mission is to help individuals and businesses integrate AI agents seamlessly into their daily operations  from automating tasks and enhancing productivity to creating innovative, intelligent solutions. We design modular, reusable AI workflow templates that empower creators, developers and teams to supercharge their automation with minimal effort and maximum impact.",
      "verified": true,
      "links": [
        "https://www.oneclickitsolution.com/"
      ],
      "avatar": "https://gravatar.com/avatar/848fca91367142f65f9e5c55d64e5c9952b160d7b060d103b52aa343c6bc7b3d?r=pg&d=retro&size=200"
    },
    "nodes": [
      {
        "id": 10,
        "icon": "fa:inbox",
        "name": "n8n-nodes-base.emailReadImap",
        "codex": {
          "data": {
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/build-your-own-virtual-assistant-with-n8n-a-step-by-step-guide/",
                  "icon": "👦",
                  "label": "Build your own virtual assistant with n8n: A step by step guide"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.emailimap/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/imap/"
                }
              ]
            },
            "categories": [
              "Communication",
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Other Trigger Nodes"
              ]
            }
          }
        },
        "group": "[\"trigger\"]",
        "defaults": {
          "name": "Email Trigger (IMAP)",
          "color": "#44AA22"
        },
        "iconData": {
          "icon": "inbox",
          "type": "icon"
        },
        "displayName": "Email Trigger (IMAP)",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 6,
            "name": "Communication"
          },
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 11,
        "icon": "fa:envelope",
        "name": "n8n-nodes-base.emailSend",
        "codex": {
          "data": {
            "alias": [
              "SMTP",
              "email",
              "human",
              "form",
              "wait",
              "hitl",
              "approval"
            ],
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/",
                  "icon": "☀️",
                  "label": "2021: The Year to Automate the New You with n8n"
                },
                {
                  "url": "https://n8n.io/blog/build-your-own-virtual-assistant-with-n8n-a-step-by-step-guide/",
                  "icon": "👦",
                  "label": "Build your own virtual assistant with n8n: A step by step guide"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.sendemail/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/sendemail/"
                }
              ]
            },
            "categories": [
              "Communication",
              "HITL",
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "HITL": [
                "Human in the Loop"
              ]
            }
          }
        },
        "group": "[\"output\"]",
        "defaults": {
          "name": "Send Email",
          "color": "#00bb88"
        },
        "iconData": {
          "icon": "envelope",
          "type": "icon"
        },
        "displayName": "Send Email",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 6,
            "name": "Communication"
          },
          {
            "id": 9,
            "name": "Core Nodes"
          },
          {
            "id": 28,
            "name": "HITL"
          }
        ]
      },
      {
        "id": 19,
        "icon": "file:httprequest.svg",
        "name": "n8n-nodes-base.httpRequest",
        "codex": {
          "data": {
            "alias": [
              "API",
              "Request",
              "URL",
              "Build",
              "cURL"
            ],
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/",
                  "icon": "☀️",
                  "label": "2021: The Year to Automate the New You with n8n"
                },
                {
                  "url": "https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/",
                  "icon": "🧬",
                  "label": "Why business process automation with n8n can change your daily life"
                },
                {
                  "url": "https://n8n.io/blog/automatically-pulling-and-visualizing-data-with-n8n/",
                  "icon": "📈",
                  "label": "Automatically pulling and visualizing data with n8n"
                },
                {
                  "url": "https://n8n.io/blog/learn-how-to-automatically-cross-post-your-content-with-n8n/",
                  "icon": "✍️",
                  "label": "Learn how to automatically cross-post your content with n8n"
                },
                {
                  "url": "https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/",
                  "icon": "🧾",
                  "label": "Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/running-n8n-on-ships-an-interview-with-maranics/",
                  "icon": "🛳",
                  "label": "Running n8n on ships: An interview with Maranics"
                },
                {
                  "url": "https://n8n.io/blog/what-are-apis-how-to-use-them-with-no-code/",
                  "icon": " 🪢",
                  "label": "What are APIs and how to use them with no code"
                },
                {
                  "url": "https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/",
                  "icon": "⚡️",
                  "label": "5 tasks you can automate with the new Notion API "
                },
                {
                  "url": "https://n8n.io/blog/world-poetry-day-workflow/",
                  "icon": "📜",
                  "label": "Celebrating World Poetry Day with a daily poem in Telegram"
                },
                {
                  "url": "https://n8n.io/blog/automate-google-apps-for-productivity/",
                  "icon": "💡",
                  "label": "15 Google apps you can combine and automate to increase productivity"
                },
                {
                  "url": "https://n8n.io/blog/automate-designs-with-bannerbear-and-n8n/",
                  "icon": "🎨",
                  "label": "Automate Designs with Bannerbear and n8n"
                },
                {
                  "url": "https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/",
                  "icon": " 🕸️",
                  "label": "How uProc scraped a multi-page website with a low-code workflow"
                },
                {
                  "url": "https://n8n.io/blog/building-an-expense-tracking-app-in-10-minutes/",
                  "icon": "📱",
                  "label": "Building an expense tracking app in 10 minutes"
                },
                {
                  "url": "https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/",
                  "icon": "🤖",
                  "label": "5 workflow automations for Mattermost that we love at n8n"
                },
                {
                  "url": "https://n8n.io/blog/how-to-use-the-http-request-node-the-swiss-army-knife-for-workflow-automation/",
                  "icon": "🧰",
                  "label": "How to use the HTTP Request Node - The Swiss Army Knife for Workflow Automation"
                },
                {
                  "url": "https://n8n.io/blog/learn-how-to-use-webhooks-with-mattermost-slash-commands/",
                  "icon": "🦄",
                  "label": "Learn how to use webhooks with Mattermost slash commands"
                },
                {
                  "url": "https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/",
                  "icon": "📈",
                  "label": "How a Membership Development Manager automates his work and investments"
                },
                {
                  "url": "https://n8n.io/blog/a-low-code-bitcoin-ticker-built-with-questdb-and-n8n-io/",
                  "icon": "📈",
                  "label": "A low-code bitcoin ticker built with QuestDB and n8n.io"
                },
                {
                  "url": "https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/",
                  "icon": "🎡",
                  "label": "How to set up a no-code CI/CD pipeline with GitHub and TravisCI"
                },
                {
                  "url": "https://n8n.io/blog/automations-for-activists/",
                  "icon": "✨",
                  "label": "How Common Knowledge use workflow automation for activism"
                },
                {
                  "url": "https://n8n.io/blog/creating-scheduled-text-affirmations-with-n8n/",
                  "icon": "🤟",
                  "label": "Creating scheduled text affirmations with n8n"
                },
                {
                  "url": "https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/",
                  "icon": "🛵",
                  "label": "How Goomer automated their operations with over 200 n8n workflows"
                },
                {
                  "url": "https://n8n.io/blog/aws-workflow-automation/",
                  "label": "7 no-code workflow automations for Amazon Web Services"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.httprequest/"
                }
              ]
            },
            "categories": [
              "Development",
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Helpers"
              ]
            }
          }
        },
        "group": "[\"output\"]",
        "defaults": {
          "name": "HTTP Request",
          "color": "#0004F5"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MCAyMEM0MCA4Ljk1MzE0IDMxLjA0NjkgMCAyMCAwQzguOTUzMTQgMCAwIDguOTUzMTQgMCAyMEMwIDMxLjA0NjkgOC45NTMxNCA0MCAyMCA0MEMzMS4wNDY5IDQwIDQwIDMxLjA0NjkgNDAgMjBaTTIwIDM2Ljk0NThDMTguODg1MiAzNi45NDU4IDE3LjEzNzggMzUuOTY3IDE1LjQ5OTggMzIuNjk4NUMxNC43OTY0IDMxLjI5MTggMTQuMTk2MSAyOS41NDMxIDEzLjc1MjYgMjcuNjg0N0gyNi4xODk4QzI1LjgwNDUgMjkuNTQwMyAyNS4yMDQ0IDMxLjI5MDEgMjQuNTAwMiAzMi42OTg1QzIyLjg2MjIgMzUuOTY3IDIxLjExNDggMzYuOTQ1OCAyMCAzNi45NDU4Wk0xMi45MDY0IDIwQzEyLjkwNjQgMjEuNjA5NyAxMy4wMDg3IDIzLjE2NCAxMy4yMDAzIDI0LjYzMDVIMjYuNzk5N0MyNi45OTEzIDIzLjE2NCAyNy4wOTM2IDIxLjYwOTcgMjcuMDkzNiAyMEMyNy4wOTM2IDE4LjM5MDMgMjYuOTkxMyAxNi44MzYgMjYuNzk5NyAxNS4zNjk1SDEzLjIwMDNDMTMuMDA4NyAxNi44MzYgMTIuOTA2NCAxOC4zOTAzIDEyLjkwNjQgMjBaTTIwIDMuMDU0MTlDMjEuMTE0OSAzLjA1NDE5IDIyLjg2MjIgNC4wMzA3OCAyNC41MDAxIDcuMzAwMzlDMjUuMjA2NiA4LjcxNDA4IDI1LjgwNzIgMTAuNDA2NyAyNi4xOTIgMTIuMzE1M0gxMy43NTAxQzE0LjE5MzMgMTAuNDA0NyAxNC43OTQyIDguNzEyNTQgMTUuNDk5OCA3LjMwMDY0QzE3LjEzNzcgNC4wMzA4MyAxOC44ODUxIDMuMDU0MTkgMjAgMy4wNTQxOVpNMzAuMTQ3OCAyMEMzMC4xNDc4IDE4LjQwOTkgMzAuMDU0MyAxNi44NjE3IDI5LjgyMjcgMTUuMzY5NUgzNi4zMDQyQzM2LjcyNTIgMTYuODQyIDM2Ljk0NTggMTguMzk2NCAzNi45NDU4IDIwQzM2Ljk0NTggMjEuNjAzNiAzNi43MjUyIDIzLjE1OCAzNi4zMDQyIDI0LjYzMDVIMjkuODIyN0MzMC4wNTQzIDIzLjEzODMgMzAuMTQ3OCAyMS41OTAxIDMwLjE0NzggMjBaTTI2LjI3NjcgNC4yNTUxMkMyNy42MzY1IDYuMzYwMTkgMjguNzExIDkuMTMyIDI5LjM3NzQgMTIuMzE1M0gzNS4xMDQ2QzMzLjI1MTEgOC42NjggMzAuMTA3IDUuNzgzNDYgMjYuMjc2NyA0LjI1NTEyWk0xMC42MjI2IDEyLjMxNTNINC44OTI5M0M2Ljc1MTQ3IDguNjY3ODQgOS44OTM1MSA1Ljc4MzQxIDEzLjcyMzIgNC4yNTUxM0MxMi4zNjM1IDYuMzYwMjEgMTEuMjg5IDkuMTMyMDEgMTAuNjIyNiAxMi4zMTUzWk0zLjA1NDE5IDIwQzMuMDU0MTkgMjEuNjAzIDMuMjc3NDMgMjMuMTU3NSAzLjY5NDg0IDI0LjYzMDVIMTAuMTIxN0M5Ljk0NjE5IDIzLjE0MiA5Ljg1MjIyIDIxLjU5NDMgOS44NTIyMiAyMEM5Ljg1MjIyIDE4LjQwNTcgOS45NDYxOSAxNi44NTggMTAuMTIxNyAxNS4zNjk1SDMuNjk0ODRDMy4yNzc0MyAxNi44NDI1IDMuMDU0MTkgMTguMzk3IDMuMDU0MTkgMjBaTTI2LjI3NjYgMzUuNzQyN0MyNy42MzY1IDMzLjYzOTMgMjguNzExIDMwLjg2OCAyOS4zNzc0IDI3LjY4NDdIMzUuMTA0NkMzMy4yNTEgMzEuMzMyMiAzMC4xMDY4IDM0LjIxNzkgMjYuMjc2NiAzNS43NDI3Wk0xMy43MjM0IDM1Ljc0MjdDOS44OTM2OSAzNC4yMTc5IDYuNzUxNTUgMzEuMzMyNCA0Ljg5MjkzIDI3LjY4NDdIMTAuNjIyNkMxMS4yODkgMzAuODY4IDEyLjM2MzUgMzMuNjM5MyAxMy43MjM0IDM1Ljc0MjdaIiBmaWxsPSIjM0E0MkU5Ii8+Cjwvc3ZnPgo="
        },
        "displayName": "HTTP Request",
        "typeVersion": 4,
        "nodeCategories": [
          {
            "id": 5,
            "name": "Development"
          },
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 38,
        "icon": "fa:pen",
        "name": "n8n-nodes-base.set",
        "codex": {
          "data": {
            "alias": [
              "Set",
              "JS",
              "JSON",
              "Filter",
              "Transform",
              "Map"
            ],
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/learn-to-automate-your-factorys-incident-reporting-a-step-by-step-guide/",
                  "icon": "🏭",
                  "label": "Learn to Automate Your Factory's Incident Reporting: A Step by Step Guide"
                },
                {
                  "url": "https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/",
                  "icon": "☀️",
                  "label": "2021: The Year to Automate the New You with n8n"
                },
                {
                  "url": "https://n8n.io/blog/automatically-pulling-and-visualizing-data-with-n8n/",
                  "icon": "📈",
                  "label": "Automatically pulling and visualizing data with n8n"
                },
                {
                  "url": "https://n8n.io/blog/database-monitoring-and-alerting-with-n8n/",
                  "icon": "📡",
                  "label": "Database Monitoring and Alerting with n8n"
                },
                {
                  "url": "https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/",
                  "icon": "🧾",
                  "label": "Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/no-code-ecommerce-workflow-automations/",
                  "icon": "store",
                  "label": "6 e-commerce workflows to power up your Shopify s"
                },
                {
                  "url": "https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/",
                  "icon": "🔗",
                  "label": "How to build a low-code, self-hosted URL shortener in 3 steps"
                },
                {
                  "url": "https://n8n.io/blog/automate-your-data-processing-pipeline-in-9-steps-with-n8n/",
                  "icon": "⚙️",
                  "label": "Automate your data processing pipeline in 9 steps"
                },
                {
                  "url": "https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/",
                  "icon": "👥",
                  "label": "How to get started with CRM automation (with 3 no-code workflow ideas"
                },
                {
                  "url": "https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/",
                  "icon": "⚡️",
                  "label": "5 tasks you can automate with the new Notion API "
                },
                {
                  "url": "https://n8n.io/blog/automate-google-apps-for-productivity/",
                  "icon": "💡",
                  "label": "15 Google apps you can combine and automate to increase productivity"
                },
                {
                  "url": "https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/",
                  "icon": " 🕸️",
                  "label": "How uProc scraped a multi-page website with a low-code workflow"
                },
                {
                  "url": "https://n8n.io/blog/building-an-expense-tracking-app-in-10-minutes/",
                  "icon": "📱",
                  "label": "Building an expense tracking app in 10 minutes"
                },
                {
                  "url": "https://n8n.io/blog/the-ultimate-guide-to-automate-your-video-collaboration-with-whereby-mattermost-and-n8n/",
                  "icon": "📹",
                  "label": "The ultimate guide to automate your video collaboration with Whereby, Mattermost, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/",
                  "icon": "🤖",
                  "label": "5 workflow automations for Mattermost that we love at n8n"
                },
                {
                  "url": "https://n8n.io/blog/learn-to-build-powerful-api-endpoints-using-webhooks/",
                  "icon": "🧰",
                  "label": "Learn to Build Powerful API Endpoints Using Webhooks"
                },
                {
                  "url": "https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/",
                  "icon": "📈",
                  "label": "How a Membership Development Manager automates his work and investments"
                },
                {
                  "url": "https://n8n.io/blog/a-low-code-bitcoin-ticker-built-with-questdb-and-n8n-io/",
                  "icon": "📈",
                  "label": "A low-code bitcoin ticker built with QuestDB and n8n.io"
                },
                {
                  "url": "https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/",
                  "icon": "🎡",
                  "label": "How to set up a no-code CI/CD pipeline with GitHub and TravisCI"
                },
                {
                  "url": "https://n8n.io/blog/benefits-of-automation-and-n8n-an-interview-with-hubspots-hugh-durkin/",
                  "icon": "🎖",
                  "label": "Benefits of automation and n8n: An interview with HubSpot's Hugh Durkin"
                },
                {
                  "url": "https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/",
                  "icon": "🛵",
                  "label": "How Goomer automated their operations with over 200 n8n workflows"
                },
                {
                  "url": "https://n8n.io/blog/aws-workflow-automation/",
                  "label": "7 no-code workflow automations for Amazon Web Services"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.set/"
                }
              ]
            },
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Data Transformation"
              ]
            }
          }
        },
        "group": "[\"input\"]",
        "defaults": {
          "name": "Edit Fields"
        },
        "iconData": {
          "icon": "pen",
          "type": "icon"
        },
        "displayName": "Edit Fields (Set)",
        "typeVersion": 3,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 565,
        "icon": "fa:sticky-note",
        "name": "n8n-nodes-base.stickyNote",
        "codex": {
          "data": {
            "alias": [
              "Comments",
              "Notes",
              "Sticky"
            ],
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Helpers"
              ]
            }
          }
        },
        "group": "[\"input\"]",
        "defaults": {
          "name": "Sticky Note",
          "color": "#FFD233"
        },
        "iconData": {
          "icon": "sticky-note",
          "type": "icon"
        },
        "displayName": "Sticky Note",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 834,
        "icon": "file:code.svg",
        "name": "n8n-nodes-base.code",
        "codex": {
          "data": {
            "alias": [
              "cpde",
              "Javascript",
              "JS",
              "Python",
              "Script",
              "Custom Code",
              "Function"
            ],
            "details": "The Code node allows you to execute JavaScript in your workflow.",
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.code/"
                }
              ]
            },
            "categories": [
              "Development",
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Helpers",
                "Data Transformation"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "Code"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xMTcxXzQ0MSkiPgo8cGF0aCBkPSJNMTcwLjI4MyA0OEgxOTYuNUMyMDMuMTI3IDQ4IDIwOC41IDQyLjYyNzQgMjA4LjUgMzZWMTJDMjA4LjUgNS4zNzI1OCAyMDMuMTI3IDAgMTk2LjUgMEgxNzAuMjgzQzEyNi4xIDAgOTAuMjgzIDM1LjgxNzIgOTAuMjgzIDgwVjE3NkM5MC4yODMgMjA2LjkyOCA2NS4yMTA5IDIzMiAzNC4yODMgMjMySDIzQzE2LjM3MjYgMjMyIDExIDIzNy4zNzIgMTEgMjQ0VjI2OEMxMSAyNzQuNjI3IDE2LjM3MjQgMjgwIDIyLjk5OTYgMjgwTDM0LjI4MyAyODBDNjUuMjEwOSAyODAgOTAuMjgzIDMwNS4wNzIgOTAuMjgzIDMzNlY0NDBDOTAuMjgzIDQ3OS43NjQgMTIyLjUxOCA1MTIgMTYyLjI4MyA1MTJIMTk2LjVDMjAzLjEyNyA1MTIgMjA4LjUgNTA2LjYyNyAyMDguNSA1MDBWNDc2QzIwOC41IDQ2OS4zNzMgMjAzLjEyNyA0NjQgMTk2LjUgNDY0SDE2Mi4yODNDMTQ5LjAyOCA0NjQgMTM4LjI4MyA0NTMuMjU1IDEzOC4yODMgNDQwVjMzNkMxMzguMjgzIDMwOS4wMjIgMTI4LjAxMSAyODQuNDQzIDExMS4xNjQgMjY1Ljk2MUMxMDYuMTA5IDI2MC40MTYgMTA2LjEwOSAyNTEuNTg0IDExMS4xNjQgMjQ2LjAzOUMxMjguMDExIDIyNy41NTcgMTM4LjI4MyAyMDIuOTc4IDEzOC4yODMgMTc2VjgwQzEzOC4yODMgNjIuMzI2OSAxNTIuNjEgNDggMTcwLjI4MyA0OFoiIGZpbGw9IiNGRjk5MjIiLz4KPHBhdGggZD0iTTMwNSAzNkMzMDUgNDIuNjI3NCAzMTAuMzczIDQ4IDMxNyA0OEgzNDIuOTc5QzM2MC42NTIgNDggMzc0Ljk3OCA2Mi4zMjY5IDM3NC45NzggODBWMTc2QzM3NC45NzggMjAyLjk3OCAzODUuMjUxIDIyNy41NTcgNDAyLjA5OCAyNDYuMDM5QzQwNy4xNTMgMjUxLjU4NCA0MDcuMTUzIDI2MC40MTYgNDAyLjA5OCAyNjUuOTYxQzM4NS4yNTEgMjg0LjQ0MyAzNzQuOTc4IDMwOS4wMjIgMzc0Ljk3OCAzMzZWNDMyQzM3NC45NzggNDQ5LjY3MyAzNjAuNjUyIDQ2NCAzNDIuOTc5IDQ2NEgzMTdDMzEwLjM3MyA0NjQgMzA1IDQ2OS4zNzMgMzA1IDQ3NlY1MDBDMzA1IDUwNi42MjcgMzEwLjM3MyA1MTIgMzE3IDUxMkgzNDIuOTc5QzM4Ny4xNjEgNTEyIDQyMi45NzggNDc2LjE4MyA0MjIuOTc4IDQzMlYzMzZDNDIyLjk3OCAzMDUuMDcyIDQ0OC4wNTEgMjgwIDQ3OC45NzkgMjgwSDQ5MEM0OTYuNjI3IDI4MCA1MDIgMjc0LjYyOCA1MDIgMjY4VjI0NEM1MDIgMjM3LjM3MyA0OTYuNjI4IDIzMiA0OTAgMjMyTDQ3OC45NzkgMjMyQzQ0OC4wNTEgMjMyIDQyMi45NzggMjA2LjkyOCA0MjIuOTc4IDE3NlY4MEM0MjIuOTc4IDM1LjgxNzIgMzg3LjE2MSAwIDM0Mi45NzkgMEgzMTdDMzEwLjM3MyAwIDMwNSA1LjM3MjU4IDMwNSAxMlYzNloiIGZpbGw9IiNGRjk5MjIiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xMTcxXzQ0MSI+CjxyZWN0IHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo="
        },
        "displayName": "Code",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 5,
            "name": "Development"
          },
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 1123,
        "icon": "fa:link",
        "name": "@n8n/n8n-nodes-langchain.chainLlm",
        "codex": {
          "data": {
            "alias": [
              "LangChain"
            ],
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/"
                }
              ]
            },
            "categories": [
              "AI",
              "Langchain"
            ],
            "subcategories": {
              "AI": [
                "Chains",
                "Root Nodes"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "Basic LLM Chain",
          "color": "#909298"
        },
        "iconData": {
          "icon": "link",
          "type": "icon"
        },
        "displayName": "Basic LLM Chain",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 25,
            "name": "AI"
          },
          {
            "id": 26,
            "name": "Langchain"
          }
        ]
      },
      {
        "id": 1159,
        "icon": "file:ollama.svg",
        "name": "@n8n/n8n-nodes-langchain.lmOllama",
        "codex": {
          "data": {
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama/"
                }
              ]
            },
            "categories": [
              "AI",
              "Langchain"
            ],
            "subcategories": {
              "AI": [
                "Language Models",
                "Root Nodes"
              ],
              "Language Models": [
                "Text Completion Models"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "Ollama Model"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNDEuMzMzIiBoZWlnaHQ9IjM0MS4zMzMiIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDE4MSAyNTYiPjxnIGZpbGw9IiM3RDdEODciPjxwYXRoIGQ9Ik0zNy43IDE5LjVjLTUuMiAxLjgtOC4zIDQuOS0xMS43IDExLjYtNC41IDguOS02LjIgMTkuMi01LjggMzUuNWwuMyAxNC4yLTUuOCA2LjFjLTE0LjggMTUuNS0xOC41IDM4LjctOS4yIDU3LjRsMy40IDYuOS0yIDQuNGMtMy40IDguMi01IDE2LjQtNSAyNi4zIDAgMTAuOCAxLjggMTkgNS44IDI2LjJsMi42IDQuOC0yLjEgNC45Yy0xLjIgMi43LTIuNiA3LjEtMy4yIDkuOC0xLjQgNi4yLTEuNSAyMi4xLS4xIDI1LjcgMSAyLjYgMS40IDIuNyA3LjYgMi43IDcuMyAwIDcgLjQgNS4zLTguNi0xLjUtOC4yLjItMTguOCA0LjItMjYuNiAzLjctNyAzLjgtMTAuNC41LTE0LjgtNC43LTYuNC02LjgtMTMuNi02LjktMjQtLjEtMTAuMyAxLjQtMTYgNi42LTI2LjEgMy4xLTYuMSAyLjktOC43LTEtMTIuMi0xLjEtMS0zLjEtNC4yLTQuMy03LTEuOS00LjItMi40LTYuOS0yLjMtMTQuMiAwLTExLjQgMi41LTE4LjMgOS41LTI2IDctNy42IDE0LjItMTEgMjMuOS0xMS4yIDQuMSAwIDcuOC0uMiA4LjItLjIuNC0uMSAxLjctMi4yIDIuOS00LjcgMy01LjkgOS42LTExLjkgMTYuNy0xNS4yIDQuOS0yLjMgNy0yLjcgMTQuNy0yLjcgNy45IDAgOS43LjQgMTQuOSAyLjkgNi44IDMuMyAxMy4zIDkuNCAxNS45IDE0LjggMSAyIDIuMyA0LjEgMyA0LjUuNi40IDQuNi44IDguNy44IDYuNy4xIDguMy41IDE0IDMuNiAxMi4zIDYuOCAxOS4zIDE4LjcgMTkuMyAzMy40LjEgNi43LS40IDktMi43IDE0LjItMS42IDMuNS0zLjUgNi44LTQuMyA3LjUtMy40IDIuOC0zLjUgNS44LS41IDExLjcgNS4yIDEwLjEgNi43IDE1LjggNi42IDI2LjEtLjEgMTAuNC0yLjIgMTcuNi02LjkgMjQtMy4zIDQuNC0zLjIgNy44LjUgMTQuOCA0IDcuOCA1LjcgMTguNCA0LjIgMjYuNi0xLjcgOS0yIDguNiA1LjMgOC42IDYuMiAwIDYuNi0uMSA3LjYtMi43IDEuNC0zLjYgMS4zLTE5LjUtLjEtMjUuNy0uNi0yLjctMi03LjEtMy4yLTkuOGwtMi4xLTQuOSAyLjYtNC44YzcuNi0xMy45IDcuOS0zNS45LjYtNTIuOGwtMi00LjcgMi41LTQuNmM5LjktMTguMyA2LjQtNDMuOS04LjEtNTkuMWwtNS44LTYuMS4zLTE0LjJjLjQtMTYuNC0xLjMtMjYuNi01LjgtMzUuNy02LjQtMTIuNi0xNy4yLTE1LjktMjYuMy03LjktNS40IDQuNy05LjIgMTMuOC0xMi4zIDI5LjgtLjMgMS40LTEgMi4yLTEuNyAxLjgtMTguMi04LTI5LjctOC41LTQ0LjMtMi4xTDY1IDU0LjlsLS40LTIuMkM2MSAzNC4yIDU2LjEgMjQuMiA0OSAyMC41Yy00LjMtMi4xLTcuNC0yLjQtMTEuMy0xbTcuNyAxNi44YzQuMiA3LjEgOC4xIDMwLjEgNS43IDMzLjYtLjUuOC0zLjEgMS42LTUuOCAxLjgtMi42LjItNi4yLjgtOCAxLjNsLTMuMS44LS43LTQuOWMtLjgtNS45LjItMTcuMiAyLjItMjQuOEMzNy4xIDM4LjQgNDAuNSAzMiA0MiAzMmMuNSAwIDIgMS45IDMuNCA0LjNtOTYuNS0xYzQgNi41IDYuOSAyMy45IDUuNiAzMy42bC0uNyA0LjktMy4xLS44Yy0xLjgtLjUtNS40LTEuMS04LTEuMy0yLjctLjItNS4zLTEtNS44LTEuOC0xLjItMS43LS4zLTE0LjEgMS43LTIyLjkgMS41LTYuNCA1LjctMTUgNy40LTE1IC40IDAgMS44IDEuNSAyLjkgMy4zIi8+PHBhdGggZD0iTTc3LjggMTE5LjljLTcuMyAyLjQtMTEuNiA1LjEtMTYuNSAxMC40LTUuNSA2LTcuNiAxMi03LjEgMjAuMS41IDcuNiAzLjUgMTIuOSAxMC42IDE4LjMgNi4yIDQuNyAxMi43IDYuMyAyNS43IDYuMyAxNy4yIDAgMjUuOC0zLjYgMzIuOS0xMy44IDQuMi01LjkgNC44LTE1LjUgMS42LTIzLTIuOS02LjgtMTEuMS0xNC4zLTE4LjgtMTcuMy04LTMuMS0yMC43LTMuNi0yOC40LTFtMjUuNyAxMGMxNi4xIDcuMSAxOS40IDIzLjIgNi42IDMxLjgtNC45IDMuMy05LjQgNC4zLTE5LjYgNC4zcy0xNC43LTEtMTkuNi00LjNjLTE3LjgtMTItMy4yLTM1LjYgMjEuMS0zNC4zIDMuOS4yIDguNiAxLjIgMTEuNSAyLjUiLz48cGF0aCBkPSJNODMuOCAxNDAuMWMtMi41IDEuNC0yLjIgNC40LjcgNi43IDIgMS42IDIuNCAyLjYgMS45IDQuOS0uNyAzLjYgMS41IDUuOCA1LjEgNC45IDIuMS0uNSAyLjUtMS4yIDIuNS00LjYgMC0yLjkuNS00LjIgMi01IDIuNy0xLjUgMi43LTYuNiAwLTcuNS0xLS4zLTIuOC0uMS00IC41LTEuNC43LTIuNi44LTMuOSAwLTIuMy0xLjItMi4yLTEuMi00LjMuMW0tNDQuMS0xOC45Yy0uOS43LTIuMyAzLTMuMiA1LTIuMSA1LjMtLjEgMTAuMyA0LjcgMTEuNiA0LjMgMS4xIDYgLjYgOS4yLTIuNyA0LTQuMSA0LjMtOC4xIDEuMS0xMS45LTIuMS0yLjUtMy40LTMuMi02LjQtMy4yLTIgMC00LjUuNi01LjQgMS4ybTg5LjggMmMtMy4yIDMuOC0yLjkgNy44IDEuMSAxMS45IDMuMiAzLjMgNC45IDMuOCA5LjIgMi43IDQuOS0xLjMgNi44LTYuMiA0LjYtMTEuOC0xLjktNC43LTMuOC02LTguNy02LTIuNyAwLTQuMS43LTYuMiAzLjIiLz48L2c+PC9zdmc+"
        },
        "displayName": "Ollama Model",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 25,
            "name": "AI"
          },
          {
            "id": 26,
            "name": "Langchain"
          }
        ]
      }
    ],
    "categories": [
      {
        "id": 37,
        "name": "Lead Generation"
      },
      {
        "id": 51,
        "name": "Multimodal AI"
      }
    ],
    "image": []
  }
}