Skip to main content
Glama
Ali1041

Leadloadz

by Ali1041

@leadloadz/mcp-server

A Model Context Protocol (MCP) server that connects AI assistants to the Leadloadz B2B lead generation platform.

Features

  • Search Leads — Find verified B2B leads using natural language queries

  • Verify Email — Real-time email verification with deliverability scoring

  • Get Stats — Check your usage and remaining quotas

  • Interactive Setup — Built-in wizard to get your API key

  • Anonymous Telemetry — Helps us improve the product (no PII, opt-out via LEADLOADZ_DISABLE_TELEMETRY=1)

Related MCP server: LeadClaw

Quick Start

Don't have an API key yet?

Run the setup wizard:

npx @leadloadz/mcp-server --setup

This will guide you through creating an account and getting your API key.

Already have an API key?

Add it to your MCP client configuration (see below) and start using Leadloadz directly.

Installation

No installation required. AI clients can run the server directly:

npx -y @leadloadz/mcp-server

Via npm

npm install -g @leadloadz/mcp-server
leadloadz-mcp

Configuration

You need a Leadloadz API key to use this server.

  1. Sign up at leadloadz.com

  2. Go to Dashboard → API Tokens

  3. Generate a new token

  4. Copy the token value

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "leadloadz": {
      "command": "npx",
      "args": ["-y", "@leadloadz/mcp-server"],
      "env": {
        "LEADLOADZ_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cline (VS Code)

Add to your Cline MCP settings:

{
  "mcpServers": {
    "leadloadz": {
      "command": "npx",
      "args": ["-y", "@leadloadz/mcp-server"],
      "env": {
        "LEADLOADZ_API_KEY": "your-api-key-here"
      }
    }
  }
}

Other Clients

Any MCP client that supports stdio transport can use:

{
  "command": "npx",
  "args": ["-y", "@leadloadz/mcp-server"],
  "env": {
    "LEADLOADZ_API_KEY": "your-api-key-here"
  }
}

Environment Variables

Variable

Required

Default

Description

LEADLOADZ_API_KEY

Yes

Your Leadloadz API token

LEADLOADZ_API_BASE

No

https://leadloadz.com/api/mcp

API base URL (do not use www — redirects strip auth headers)

LEADLOADZ_TIMEOUT_MS

No

30000

Request timeout in milliseconds

LEADLOADZ_DISABLE_TELEMETRY

No

0

Set to 1 to disable anonymous usage telemetry

Tools

search_leads

Search indexed B2B contacts by role, company, location, or technology.

Parameters:

  • query (string, required): Specific natural-language search query

  • limit (number, optional): Max results. Default: 10, Cap: 50

Returns: Verified leads with deliverability scores

verify_email

Check email deliverability in real-time.

Parameters:

  • email (string, required): Email address to verify

Returns: Deliverability score and risk assessment

get_user_stats

Read current usage counters.

Returns: Searches performed, emails verified, and remaining quota

Security

  • Your API key is never logged or exposed in error messages

  • All errors are sanitized to prevent information leakage

  • Communication with Leadloadz APIs uses HTTPS

Support

License

MIT

Available Tools

3 tools
get_user_statsA

Read current usage counters: searches performed, emails verified, and remaining quota. Read-only. Requires API key. Rate limit: 30/min per user. Use before batch operations to check available allowance.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

Discloses read-only nature, API key requirement, and rate limit (30/min per user). No annotations exist, so the description carries full burden; it adequately covers behavioral traits for a safe read operation.

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?

Three concise sentences front-load the purpose and add necessary behavioral info without redundancy. Every sentence adds value.

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?

Provides enough context for a parameterless tool: what it reads, when to use it, and constraints. Lacks details on return format, but acceptable for simple stats retrieval.

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

Parameters4/5

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

No parameters in input schema, so baseline score is 4. Description does not need to add parameter information.

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 it reads usage counters (searches, emails, quota). It distinguishes itself from siblings 'search_leads' and 'verify_email' by specifying a different resource and action.

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?

Explicitly advises to use before batch operations to check allowance. While it doesn't discuss when not to use or alternatives, the provided context is sufficient for a simple read tool.

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

search_leadsA

Search indexed B2B contacts by role, company, location, or technology. Read-only; returns verified leads with deliverability scores. Requires API key. Rate limit: 30/min per user. Use verify_email after discovery to confirm deliverability before outreach.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSpecific natural-language search query. Narrow criteria yield better precision (e.g., 'CTOs at Series A B2B SaaS in London')
limitNoMaximum results to return. Default: 10. Cap: 50. Higher values consume more quota.

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description fully covers behavioral traits: read-only, returns verified leads with deliverability scores, requires API key, and rate limit of 30/min per user.

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?

Three sentences, front-loaded with purpose, no wasted words. Each sentence adds value.

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

Completeness5/5

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

For a 2-param search tool with no output schema, the description adequately explains input (search criteria), behavior (read-only, deliverability scores), constraints (rate limit, API key), and follow-up action (verify_email). 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?

Schema coverage is 100% and schema descriptions already detail both parameters. The tool description adds no new parameter information beyond what's in the schema.

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?

Clearly states it searches indexed B2B contacts by role, company, location, or technology. Distinct from siblings get_user_stats and verify_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?

Provides guidance on when to use (searching leads) and recommends verify_email for further action. Lacks explicit when-not-to-use but implies context.

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

verify_emailA

Check email deliverability in real-time: MX records, SMTP, disposable/role detection. Read-only. Requires API key. Rate limit: 30/min per user. Use after search_leads or before sending campaigns. Returns deliverability score and risk assessment.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesSingle email address to verify. Must be a valid RFC-like address format.

TDQS

A4.5/5.0
Behavior5/5

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

Discloses read-only nature, API key requirement, and rate limit (30/min per user) without any annotations. Also describes return value (deliverability score and risk assessment).

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?

Concise, packing core purpose, behavior, guidelines, and return info into a few sentences. No wasted words, well front-loaded.

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

Completeness5/5

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

Covers all essential aspects for a simple tool: purpose, behavior, auth, rate limit, usage context, and return summary. No gaps.

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?

Input schema already provides 100% coverage with description for 'email' parameter. Description does not add additional semantic detail beyond the schema, so baseline 3 is appropriate.

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?

Description clearly states 'Check email deliverability in real-time' with specific checks (MX records, SMTP, disposable/role detection). Differentiates from siblings like get_user_stats and search_leads by focusing on email verification.

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?

Explicitly says 'Use after search_leads or before sending campaigns', providing clear context. Lacks explicit exclusions or alternatives, but sufficiently guides usage.

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 updatesv1.0.6
    • Addedget_user_stats
    • Addedsearch_leads
    • Addedverify_email
  2. 3 tool updatesv1.0.5
    • Removedget_user_stats
    • Removedsearch_leads
    • Removedverify_email
  3. 3 tool updatesv0.1.0
    • First observedget_user_stats
    • First observedsearch_leads
    • First observedverify_email

TDQS

A4.7/5.0
Disambiguation5/5

Each tool serves a distinct purpose: usage stats, lead searching, and email verification. No functional overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (get_user_stats, search_leads, verify_email).

Tool Count5/5

Three tools is well-scoped for a lead generation and verification service, covering essential operations without redundancy.

Completeness5/5

The set covers the full workflow: check quota, search leads, and verify email deliverability. No missing critical operations given the read-only nature.

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

  • A
    license
    B
    quality
    C
    maintenance
    B2B lead generation MCP server with 20+ lead generation tools - Apollo scraping, Google Maps, email finder, email validator, mobile finder, skip trace, ecommerce store data, and more.
    25
    67
    1
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    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.
    MIT
  • 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

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

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