Skip to main content
Glama

LeadFuze Enrichment MCP Server

Description

Enable Claude to be your everyday sales prospector. Enrich contacts and companies with verified business data directly from Claude and other MCP-compatible AI agents. Get detailed person and company information including emails, phone numbers, job titles, company details, and social profiles.

Related MCP server: leads-mcp

Features

  • Email Enrichment: Look up detailed person and company data using an email address

  • LinkedIn Enrichment: Look up detailed person and company data using a LinkedIn profile URL

  • Email Validation: Verify if an email address is deliverable, check format validity, and assess risk level

  • Rich Data: Returns verified business emails, phone numbers, job titles, company info, and social profiles

  • No Match = No Charge: Enrichment credits are only consumed when a profile match is found

Getting Started

  1. Visit LeadFuze Console to create an account

  2. Your API key is automatically created on account setup

  3. Find your API key on the API Keys page (starts with lfz_)

  4. Configure the MCP server with your API key (see Configuration below)

Configuration

Just copy/paste the config below with your API key. No installation required.

Claude.ai

Connect to the hosted MCP server at https://mcp.leadfuze.com/mcp and enter your API key when prompted.

VS Code / Cursor

Add the following to your mcp.json file (usually at ~/.cursor/mcp.json or ~/.vscode/mcp.json):

{
  "mcpServers": {
    "leadfuze": {
      "url": "https://mcp.leadfuze.com/mcp",
      "headers": {
        "Authorization": "Bearer lfz_your_api_key_here"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "leadfuze": {
      "url": "https://mcp.leadfuze.com/mcp",
      "headers": {
        "Authorization": "Bearer lfz_your_api_key_here"
      }
    }
  }
}

Replace lfz_your_api_key_here with your actual API key from the LeadFuze console.

Rate Limits

Endpoint

Rate Limit

Enrichment (Email/LinkedIn)

10,000 requests/minute

Email Validation

20,000 requests/minute

Need higher limits? Contact us at help@leadfuze.co

Examples

Example 1: Email Enrichment (Match Found)

User prompt: "Look up the contact information for jane.doe@example-health.com"

What happens:

  • Server searches LeadFuze database by email

  • Returns person profile with job title, company, location

  • Includes company details (industry, size, revenue)

  • Returns social profile links

  • One credit consumed for successful match

Example response:

Found: Jane Doe
- Email: jane.doe@example-health.com (Valid)
- Title: Medical Assistant at Example Health Inc
- Location: Phoenix, AZ
- LinkedIn: linkedin.com/in/jane-doe-example

Company: Example Health Inc
- Industry: Hospitals And Health Care
- Size: 1001-5000 employees
- Revenue: $250M - $500M

Example 2: LinkedIn Enrichment (Match Found)

User prompt: "Get contact details for linkedin.com/in/johndoe-ceo"

What happens:

  • Server searches LeadFuze database by LinkedIn URL

  • Returns person profile with verified business email

  • Includes company details and contact information

  • Returns additional social profiles if available

  • One credit consumed for successful match

Example response:

Found: John Doe
- Email: john.doe@acme-corp.com (Valid)
- Title: CEO at Acme Corporation
- Location: San Francisco, CA
- Phone: +1-555-123-4567

Company: Acme Corporation
- Industry: Software Development
- Size: 51-200 employees
- Revenue: $10M - $50M

Example 3: No Match Found (No Credit Consumed)

User prompt: "Look up contact@nonexistent-domain-xyz.com"

What happens:

  • Server searches LeadFuze database

  • No matching profile found in database

  • Returns "no match" response

  • No credit consumed - you only pay for successful matches

Example response:

No match found for: contact@nonexistent-domain-xyz.com

No credits were consumed for this lookup.
Try searching with a different email or LinkedIn URL.

Example 4: Email Validation

User prompt: "Validate the email john@stripe.com"

What happens:

  • Server checks if the email format is valid

  • Verifies the domain exists and has mail servers

  • Tests deliverability via SMTP

  • Assesses risk level (low, medium, high)

  • One credit consumed for validation

Example response:

Email: john@stripe.com
Status: RISKY
Risk Level: medium

Validation Details:
- Valid Format: Yes
- Deliverable: Yes
- Host Exists: Yes
- Catch-All: Yes
- Full Inbox: No

Email Info:
- Username: john
- Domain: stripe.com

Credits Used: 1 | Remaining: 99

Privacy Policy

See our privacy policy: https://www.leadfuze.com/privacy

Support


Self-Hosting & Development

Most users don't need this section - the Configuration section above connects you to LeadFuze's hosted server.

This section is for:

  • Enterprise users who need to run the server on their own infrastructure (security/compliance requirements)

  • Developers contributing to this open-source project

  • Offline usage where you can't connect to mcp.leadfuze.com

Installation

npm install
npm run build

Running Locally

stdio mode (for Claude Desktop, Claude Code, MCP Inspector):

LEADFUZE_API_KEY=lfz_your_key node dist/index.js

With MCP Inspector:

LEADFUZE_API_KEY=lfz_your_key npx @modelcontextprotocol/inspector node dist/index.js

Running as HTTP Server

HTTP mode (for remote deployments):

LEADFUZE_API_KEY=lfz_your_key node dist/index.js --http --port 3000

This starts an HTTP server with:

  • MCP endpoint: http://localhost:3000/mcp

  • Health check: http://localhost:3000/health

For production, deploy behind a reverse proxy (nginx) with TLS.

Available Tools

3 tools
enrich_by_emailEmail EnrichmentA
Read-onlyIdempotent

Look up detailed person and company information using an email address. Returns verified business data including job title, company details, phone numbers, and social profiles.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesThe email address to enrich
include_companyNoInclude company data in response
include_socialNoInclude social profile data in response

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds valuable context about what data is returned (verified business data, job title, company details, phone numbers, social profiles) that goes beyond the annotations. While annotations cover read-only, open-world, idempotent, and non-destructive properties, the description provides concrete information about the type and scope of data returned, which is helpful for understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly concise with just two sentences that efficiently communicate the tool's purpose and return data. Every word earns its place, and the information is front-loaded with the core functionality stated immediately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the comprehensive annotations (read-only, open-world, idempotent, non-destructive) and 100% schema coverage, the description provides good contextual completeness by detailing the return data. However, without an output schema, the description could benefit from more specific information about response structure or format to be fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the input schema already fully documents all three parameters. The description mentions email-based lookup and the types of data returned, but doesn't add specific parameter semantics beyond what the schema provides. This meets the baseline expectation when schema coverage is complete.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Look up detailed person and company information'), the resource ('using an email address'), and distinguishes from siblings by specifying email-based enrichment rather than LinkedIn-based or validation approaches. It provides a comprehensive overview of what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use this tool (for email-based enrichment) and mentions what data it returns, but doesn't explicitly state when to choose it over 'enrich_by_linkedin' or 'validate_email'. It provides clear context about the tool's function but lacks explicit alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

enrich_by_linkedinLinkedIn EnrichmentA
Read-onlyIdempotent

Look up detailed person and company information using a LinkedIn profile URL. Returns verified business data including email, job title, company details, and phone numbers.

ParametersJSON Schema
NameRequiredDescriptionDefault
linkedinYesThe LinkedIn profile URL (e.g., linkedin.com/in/johndoe or https://www.linkedin.com/in/johndoe)
include_companyNoInclude company data in response
include_socialNoInclude social profile data in response

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds valuable behavioral context beyond what annotations provide. While annotations declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, and openWorldHint=true, the description specifies that it returns 'verified business data' and lists specific data types (email, job title, company details, phone numbers). This provides important context about the nature and quality of the returned data that isn't captured in annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly concise with just two sentences that each earn their place. The first sentence establishes the purpose and input, the second describes the output. No wasted words, well-structured, and front-loaded with the core functionality.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity, rich annotations, and 100% schema coverage, the description provides good contextual completeness. It explains what data is returned (though without an output schema, more detail on the return structure would be helpful). The main gap is the lack of explicit guidance on when to choose this tool versus the 'enrich_by_email' sibling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the input schema already documents all three parameters thoroughly. The description mentions 'using a LinkedIn profile URL' which aligns with the 'linkedin' parameter, but doesn't add meaningful semantic context beyond what the schema provides. The baseline of 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Look up detailed person and company information'), resource ('using a LinkedIn profile URL'), and output scope ('Returns verified business data including email, job title, company details, and phone numbers'). It distinguishes itself from sibling tools like 'enrich_by_email' and 'validate_email' by specifying LinkedIn URL as the input source rather than email.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool ('using a LinkedIn profile URL'), but does not explicitly state when not to use it or mention alternatives like the sibling 'enrich_by_email' tool. The context is sufficient to understand the primary use case, but lacks explicit exclusion guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

validate_emailEmail ValidationA
Read-onlyIdempotent

Validate an email address to check if it's deliverable, has valid format, and assess its risk level. Returns detailed validation results including deliverability, catch-all status, and mail server information.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesThe email address to validate

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, open-world, idempotent, and non-destructive behavior. The description adds valuable context by specifying what is validated (deliverability, format, risk level) and what details are returned (catch-all status, mail server info), enhancing transparency beyond the annotations without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose and efficiently lists key validation aspects and return details in two sentences. Every sentence adds value without redundancy, making it appropriately sized and structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity, rich annotations, and no output schema, the description provides sufficient context on what the tool does and returns. However, it could improve by detailing output structure or error handling to fully compensate for the lack of output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the single parameter 'email' well-documented in the schema. The description does not add significant meaning beyond the schema, such as format examples or validation specifics, so it meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('validate an email address') and the resources involved ('deliverable, valid format, risk level'). It distinguishes from sibling tools like 'enrich_by_email' by focusing on validation rather than enrichment, making the purpose explicit and differentiated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for email validation purposes but does not explicitly state when to use this tool versus alternatives like 'enrich_by_email' or 'enrich_by_linkedin'. No guidance on prerequisites or exclusions is provided, leaving usage context somewhat vague.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • First observedenrich_by_email
    • First observedenrich_by_linkedin
    • First observedvalidate_email

TDQS

A4.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: enrich_by_email and enrich_by_linkedin both enrich contact data but use different input types (email vs. LinkedIn URL), while validate_email performs a separate validation function. There is no ambiguity or overlap in their core operations.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case (enrich_by_email, enrich_by_linkedin, validate_email). The naming is predictable and readable across the set.

Tool Count4/5

Three tools is reasonable for a lead enrichment and validation server, though it feels slightly minimal. Each tool earns its place, but the scope could potentially support a few more related operations without being overburdened.

Completeness4/5

The tools cover key enrichment and validation workflows for lead data, with no obvious dead ends. Minor gaps might include bulk operations or additional data sources, but agents can effectively work with the provided surface for common use cases.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables B2B research by finding verified work emails, extracting contacts, detecting tech stacks, and profiling DNS and SaaS, all through a suite of MCP tools.
    -
  • A
    license
    A
    quality
    D
    maintenance
    Lead generation MCP server for AI agents. Find emails, verify contacts, enrich profiles, and search prospects using Hunter.io, Apollo.io, and Abstract API.
    8
    19
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enriches person profiles from email addresses, returning full name, job title, company, social links, and location. Works as a drop-in replacement for Apollo person enrichment at lower cost.
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides MCP clients with 60+ APIs for B2B data enrichment, lead generation, email verification, company intelligence, and agentic GTM workflows.
    -

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/leadfuze/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server