mcp-leadgen-orchestrator
Captures lead data from Facebook Lead Ads forms for automatic processing and outreach.
Sends personalized outreach emails via Gmail SMTP integration.
Captures lead data from Google Sheets triggers for automatic processing and enrichment.
Orchestrates lead generation and outreach workflow through n8n, with triggers from Google Sheets and Facebook Lead Ads.
Stores lead data and pipeline status in a local SQLite database.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-leadgen-orchestratorgenerate 50 leads for AI startups in San Francisco"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP-Powered Lead Gen + Enrichment + Outreach System
A full-stack lead generation and outreach automation system built with Model Context Protocol (MCP), n8n orchestration, Groq AI, and a real-time monitoring dashboard.
๐ฏ Features
Lead Generation: Generate 200+ realistic leads with valid contact information
AI Enrichment: Enrich leads with company insights, personas, and pain points using Groq LLM
Message Personalization: Create personalized emails and LinkedIn DMs with A/B variations
Smart Outreach: Send messages with retry logic, rate limiting, and error handling
Real-time Monitoring: Track pipeline progress with a modern React dashboard
MCP Integration: Orchestrate workflow through Model Context Protocol
n8n Workflow: Visual workflow automation and orchestration
Related MCP server: scrapercity-cli
๐๏ธ Architecture
โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ
โ n8n โโโโโโโถโ MCP Server โโโโโโโถโ Backend โ
โ Workflow โ โ (Tools) โ โ Services โ
โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ
โ โ
โ โผ
โ โโโโโโโโโโโโโโโ
โ โ SQLite โ
โ โ Database โ
โ โโโโโโโโโโโโโโโ
โผ
โโโโโโโโโโโโโโโโ
โ Frontend โ
โ Dashboard โ
โโโโโโโโโโโโโโโโ๐ Prerequisites
Python 3.10+
Node.js 18+
n8n (remote self-hosted instance)
Groq API key (free tier available at https://console.groq.com)
ngrok account (free tier available at https://ngrok.com)
๐ Quick Start
1. Clone and Setup
cd e:\intern-assigment\linkind-mcp2. Configure Environment
# Copy example environment file
cp .env.example .env
# Edit .env and add your Groq API key
# GROQ_API_KEY=your_key_here3. Install Python Dependencies
# Create virtual environment
python -m venv venv
# Activate virtual environment
# Windows:
venv\Scripts\activate
# Linux/Mac:
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt4. Install Frontend Dependencies
npm install5. Initialize Database
python backend/database.py6. Start the Services
Terminal 1 - MCP Server:
python mcp_server/server.pyTerminal 2 - API Backend:
python backend/api.pyTerminal 3 - Frontend:
npm run dev7. Access the Applications
Frontend Dashboard: http://localhost:3000
API Backend: http://localhost:8000
API Docs: http://localhost:8000/docs
n8n Editor: Your remote n8n instance URL
8. Setup ngrok Tunnel
To connect your local API with the remote n8n instance:
# In a new terminal, start ngrok
ngrok http 8000Copy the ngrok URL (e.g., https://abc123.ngrok-free.app) and update your n8n workflow nodes to use this URL.
๐ Project Structure
linkind-mcp/
โโโ backend/ # Python backend services
โ โโโ api.py # FastAPI application
โ โโโ database.py # SQLite database setup
โ โโโ lead_generator.py # Lead generation logic
โ โโโ enrichment.py # Lead enrichment service
โ โโโ messaging.py # Message generation
โ โโโ outreach.py # Message sending
โโโ mcp_server/ # MCP server implementation
โ โโโ server.py # MCP server main
โ โโโ tools.py # MCP tool definitions
โโโ frontend/ # Next.js React frontend
โ โโโ pages/ # Next.js pages
โ โโโ components/ # React components
โ โโโ styles/ # CSS styles
โโโ data/ # SQLite database storage
โโโ .env.example # Environment template
โโโ README.md # This file๐ง Configuration
Dry Run vs Live Run
Toggle between modes in the frontend or set in .env:
DRY_RUN_MODE=true # Logs messages without sending
DRY_RUN_MODE=false # Actually sends messagesRate Limiting
Configure in .env:
RATE_LIMIT_PER_MINUTE=10 # Max messages per minute
MAX_RETRIES=2 # Retry attempts for failed sendsEmail Configuration
For live email sending, configure SMTP:
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USERNAME=your_email@gmail.com
SMTP_PASSWORD=your_app_password # Use Gmail App Password๐ฎ Usage
How the System Works
The system now operates through automated triggers from external sources:
Lead Capture:
Google Sheets: Add a new row with lead information
Facebook Lead Ads: User submits an instant form
Automatic Processing:
n8n detects the new lead from trigger
Processes and normalizes the lead data
Sends to your local API via ngrok
API enriches the lead with AI insights
Generates personalized messages
Sends outreach (email/LinkedIn)
Monitor Progress:
Open frontend dashboard at http://localhost:3000
View real-time metrics and lead status
Check enrichment data and generated messages
Pipeline Stages
Process Lead โ Receives and validates external lead data
Enrich Lead โ Adds AI-generated company insights and personas
Generate Messages โ Creates personalized email + LinkedIn DM
Send Outreach โ Delivers messages (or logs in dry-run mode)
Testing with Sample Data
Add a test lead to your Google Sheet with:
Name: John Smith
Email: john.smith@company.com
Phone: +1-555-0123
Job Title: VP of Sales
Company: TechCorp Solutions
Comments: Interested in improving team productivity and automation tools
The n8n workflow will automatically detect and process it, generating personalized messages based on the comments provided.
n8n Workflow Setup
Access your n8n instance (remote self-hosted)
Import the workflow: Navigate to n8n and import
n8n/n8n-workflow.jsonConfigure triggers:
Google Sheets Trigger: Connect your Google account and select the spreadsheet with lead data
Required columns:
name,email,phone,job_title,company,comments
Facebook Lead Ads Trigger: Connect your Facebook account and select the form
Required fields: full_name, email, phone_number, job_title, company_name, comments
Update API endpoints: Replace placeholder URLs in all HTTP Request nodes with your ngrok URL:
Run Pipeline:
https://YOUR-NGROK-URL.ngrok-free.app/pipeline/runGet Metrics:
https://YOUR-NGROK-URL.ngrok-free.app/metricsGet Leads:
https://YOUR-NGROK-URL.ngrok-free.app/leads
Activate the workflow
๐งช Testing
Test Lead Processing
python backend/lead_generator.pyTest API Endpoint
curl -X POST http://localhost:8000/pipeline/run \
-H "Content-Type: application/json" \
-d '{
"dry_run": true,
"enrichment_mode": "offline",
"lead_count": 200,
"channel": "both",
"lead_data": {
"name": "Jane Doe",
"email": "jane@example.com",
"phone": "+1-555-0199",
"job_title": "CTO",
"company": "Innovation Labs",
"comments": "Looking for AI solutions to streamline operations",
"source": "test"
}
}'๐ Database Schema
Leads are tracked through these statuses:
NEWโ Lead createdENRICHEDโ Lead enriched with insightsMESSAGEDโ Messages generatedSENTโ Outreach sent successfullyFAILEDโ Process failed
๐ Free Resources Used
Groq: Free tier LLM API (100 requests/minute)
SQLite: Local database (no limits)
n8n: Self-hosted open-source (free)
ngrok: Free tier for tunneling (https://ngrok.com)
External Lead Sources: Facebook Lead Ads, Google Sheets
FastAPI: Python web framework
Next.js: React framework <<<<<<< HEAD
๐ Security Notes
Keep your ngrok URL private - it exposes your local API
Rotate ngrok URLs regularly (free tier URLs change on restart)
Use environment variables for sensitive data
Enable authentication on n8n in production
Never commit
.envfiles to version control
๐ License
MIT
๐ค Contributing
This is a take-home assignment project. For production use, consider adding:
Unit tests
WebSocket/SSE for real-time updates
Multi-tenant support
Export functionality
Advanced targeting rules
Mailhog (optional): Local SMTP testing server
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/harshit05092/mcp-leadgen-orchestrator'
If you have feedback or need assistance with the MCP directory API, please join our Discord server