AI-powered lead qualification engine for MCP. Ingest, enrich, score, and export leads to your CRM.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"leadpipe": {
"args": [
"path/to/leadpipe-mcp/dist/index.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AI-powered lead qualification engine for the Model Context Protocol
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing / ai-ml
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.enzoemir1/leadpipe-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
AI-powered lead qualification engine for the Model Context Protocol
LeadPipe ingests leads from any source, enriches them with company data, scores them 0-100 using configurable AI rules, and exports qualified leads to your CRM — all through the MCP protocol.
git clone https://github.com/enzoemir1/leadpipe-mcp.git
cd leadpipe-mcp
npm ci
npm run build
Add to your MCP client config:
{
"mcpServers": {
"leadpipe": {
"command": "node",
"args": ["path/to/leadpipe-mcp/dist/index.js"]
}
}
}
Filter leads against your Ideal Customer Profile before spending any enrichment credits. Uses only locally-available signals — email domain, job title, country, industry, company size, tech stack — so nothing is charged to Hunter.io, HubSpot, or Pipedrive.
{
"criteria": {
"reject_freemail": true,
"required_title_keywords": ["vp", "director", "head", "founder"],
"target_countries": ["US", "CA", "GB"],
"min_company_size": "11-50",
"required_tech_stack": ["shopify"]
},
"auto_disqualify": true
}
Returns per-lead qualified/rejected decisions with reasons and an estimated credit savings figure.
Pairs well with platform detection tools. If you chain a tool like Detecto (
detect_platform) beforelead_qualify, the detected tech stack populatescompany.tech_stack, andrequired_tech_stackcan drop wrong-platform leads before they ever reach enrichment or scoring.
Add a single lead to the pipeline.
{
"email": "jane@acme.com",
"first_name": "Jane",
"last_name": "Smith",
"job_title": "VP of Engineering",
"company_name": "Acme Corp",
"company_domain": "acme.com",
"source": "website_form",
"tags": ["demo-request"]
}
Add 1-100 leads at once. Duplicates are automatically skipped.
{
"leads": [
{ "email": "lead1@corp.com", "job_title": "CEO" },
{ "email": "lead2@startup.io", "job_title": "CTO" }
]
}
Enrich a lead with company data using the email domain.
{ "lead_id": "uuid-of-lead" }
Returns: company name, industry, size, country, tech stack, LinkedIn URL.
Calculate a qualification score (0-100). Leads scoring 60+ are marked qualified.
{ "lead_id": "uuid-of-lead" }
Returns score + detailed breakdown across all 6 dimensions.
Search and filter leads with pagination.
{
"query": "acme",
"status": "qualified",
"min_score": 60,
"limit": 20,
"offset": 0
}
Export leads to CRM or file format.
{
... [View full README on GitHub](https://github.com/enzoemir1/leadpipe-mcp#readme)