LeadClaw

LeadClaw

MCP server that enables AI agents to discover and qualify B2B leads from Leadbay's knowledge base, with tools for lead research, enrichment, and outreach logging.

Category
Visit Server

README

<p align="center"> <img src="logo.png" alt="LeadClaw" width="200"> </p>

<h1 align="center">LeadClaw</h1> <p align="center">MCP server that gives your B2B outreach agent superpowers. LeadClaw lets your agent tap into Leadbay's rich knowledge base of companies, turning outreach activity from senseless spamming into meaningful connections.</p> <p align="center">Ask your agent for new leads, and it will pull highly qualified companies that score well against your target profile and meet your qualification criteria.</p> <p align="center">Everything is personalized—nothing to configure. Leadbay runs advanced AI agents on your website and leverages deep B2B sales expertise to optimize how leads are sourced for you.</p> <p align="center">Tell your agent which leads you want it to prospect, connect your communication channels, and it will source contacts from Leadbay and handle outreach on your behalf. Enjoy the outreach you no longer have to do. </p>


New to Leadbay? Create your account here before installing.

How Leadbay thinks (mental model for your agent)

  • Inbox, not a database. Each day your user logs back in, a fresh batch of leads is delivered. Batch size is paced by how many leads the user has actually acted on recently — some workflows produce a big stream of smaller prospects, others a narrow stream of bigger ones. Pulling more won't produce more; acting on leads does.
  • Two scoring layers. Every lead ships with a basic score (firmographic — already decent, usually correlates with AI). Roughly the top 10 of each batch are also AI-qualified (targeted web research + qualification questions → ai_agent_lead_score). Leads below the top 10 aren't worse — the system is saving resources. The agent can request deeper qualification (leadbay_bulk_qualify_leads) or contact enrichment (leadbay_enrich_titles) on any lead that looks worth it.
  • Daily rhythm. The agent works best as a daily check-in: pull fresh leads, skim the auto-qualified top, deepen 1-3 promising ones, propose outreach, then log what actually got sent via leadbay_report_outreach. If your host supports scheduling, set up a daily run.

Install

No Leadbay account yet? Register here first.

Step 1 — Mint a token (required for everyone)

Requires Node.js 22+.

npx -y @leadbay/mcp@latest login --email you@yourcompany.com --region us

You'll be prompted for your password (hidden, never saved). This writes a token to your machine — you'll paste it in the next step.

Not sure of your region? Check your Leadbay dashboard URL: app-us.leadbay.appus, app-fr.leadbay.appfr.


Step 2 — Connect your client

Claude Desktop

  1. Download leadbay-mcp-*.dxt from the Releases page
  2. Double-click it — Claude Desktop opens and asks you to confirm the install
  3. Paste your token and confirm your region when prompted
  4. Restart Claude Desktop, open a new chat, and try: "Show me today's leads."

Cursor / Claude Code / any other MCP client

npx -y @leadbay/mcp@latest install --email you@yourcompany.com --region us

This mints a token and registers the server into every MCP client it detects (Claude Desktop, Cursor, Claude Code), asking you per-target. You can skip Step 1 if you use this path.

Claude Code plugin marketplace

/plugin marketplace add leadbay/leadclaw
/plugin install leadbay@leadbay-leadclaw

Claude Code prompts for your token and region. Registers the MCP server and installs six skills (leadbay_daily_check_in, leadbay_research_a_domain, leadbay_import_file, leadbay_log_outreach, leadbay_qualify_top_n, leadbay_refine_audience) that auto-trigger on natural-language asks.

Tools

Read-only (always on)

Tool Description
leadbay_pull_leads Pull today's fresh batch of scored leads
leadbay_pull_followups Pull leads that need follow-up action
leadbay_followups_map Geo-clustered follow-up map for travel planning
leadbay_tour_plan Build a visit plan for an upcoming trip
leadbay_research_lead_by_id Deep-dive research card for a single lead
leadbay_research_lead_by_name_fuzzy Look up a lead by company name
leadbay_prepare_outreach Build a personalized outreach brief for a lead
leadbay_account_status Check quota, credits, and account state
leadbay_list_campaigns List existing campaigns
leadbay_campaign_progression Campaign funnel metrics
leadbay_campaign_call_sheet Call sheet for a campaign
leadbay_bulk_enrich_status Status of a running enrichment job
leadbay_qualify_status Status of a running qualification job
leadbay_import_status Status of a running import job
leadbay_resolve_import_rows Resolve import rows to lead IDs
leadbay_list_mappable_fields List CRM fields available for mapping
leadbay_create_topup_link Generate a Stripe top-up link (quota recovery)
leadbay_open_billing_portal Open the billing portal

Write actions (gated by LEADBAY_MCP_WRITE=1, default ON since 0.3.0)

Tool Description
leadbay_bulk_qualify_leads Trigger AI qualification on a batch of leads
leadbay_enrich_titles Enrich contact job titles
leadbay_adjust_audience Adjust the active lens audience
leadbay_refine_prompt Refine the qualification prompt
leadbay_answer_clarification Answer a clarification question from Leadbay
leadbay_report_outreach Log outreach activity (required after every contact)
leadbay_import_leads Import a list of company domains
leadbay_import_and_qualify Import + immediately qualify leads
leadbay_add_note Add a note to a lead
leadbay_like_lead Mark a lead as liked
leadbay_dislike_lead Mark a lead as disliked
leadbay_create_campaign Create a new campaign
leadbay_add_leads_to_campaign Add leads to a campaign
leadbay_remove_leads_from_campaign Remove leads from a campaign
leadbay_create_custom_field Create a custom CRM field

Advanced granular tools (gated by LEADBAY_MCP_ADVANCED=1)

Low-level single-API-call tools for power users and integrations. Enabled by setting LEADBAY_MCP_ADVANCED=1 in the MCP server's env.

How it works

The MCP server automatically uses your active lens (the last lens you used in Leadbay). Just call leadbay_pull_leads and it works — no lens configuration needed.

leadbay_research_lead_by_id bundles multiple API calls (lead details + AI qualification + contacts) into a single response. If some data isn't available yet, it returns partial results instead of failing.

Configuration

Env var Required Description
LEADBAY_TOKEN Yes Bearer token (set by the installer)
LEADBAY_REGION Yes us or fr
LEADBAY_MCP_WRITE No Set to 0 to disable write tools (default: on)
LEADBAY_MCP_ADVANCED No Set to 1 to expose granular tools (default: off)
LEADBAY_API_BASE_URL No Override API URL (for staging/dev)

Workflows

The canonical inventory of what the MCP supports — supported / partial / planned / blocked-on-backend — is WORKFLOWS.md. Use it to triage incoming asks: find the row that matches, or add a new one. A small audit asserts every cited tool/prompt and test path is real, so the table can't silently drift.

Quick taste:

leadbay_pull_leads → leadbay_research_lead_by_id → leadbay_prepare_outreach   # discover & research
leadbay_pull_followups → leadbay_followups_map → leadbay_prepare_outreach     # travel/geo follow-ups
leadbay_import_leads → leadbay_bulk_qualify_leads                             # import & qualify

Requirements

Development

pnpm install
pnpm prompts:build   # .md.tmpl → generated TS
pnpm -r build        # compile everything
pnpm -r test         # must be green
pnpm -r typecheck    # must be green

Test tiers

  • Unit tests (packages/core/test/unit/) — error-code mapping, tool branches. Use mockHttp from test/harness.ts to stub node:https. No network required.
  • Integration tests (packages/core/test/integration/) — opt-in. Set LEADBAY_TEST_TOKEN and run pnpm test:smoke.
  • Audit tests (packages/mcp/test/audit/) — assert tool descriptions, routing blocks, and WORKFLOWS.md consistency at build time. Always run on CI.
  • Eval tests (packages/mcp/test/eval/) — LLM-graded scenarios. Gated by EVAL=1.

See CLAUDE.md for the full contributor guide: tool structure, test conventions, build pipeline, and how to add a new tool.

Publishing

All releases are tag-driven — never run npm publish locally. GitHub Actions owns publishing.

# 1. Bump packages/mcp/package.json#version + add CHANGELOG entry, land PR
git checkout main && git pull
git tag mcp-v0.x.0
git push origin mcp-v0.x.0
# 2. Watch the release workflow: preflight-npm → publish-mcp

For dry runs: Actions → release → "Run workflow" → package: mcp, dry_run: true.

Full runbook (token setup, failure modes, manual re-runs): RELEASE.md.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured