Leadloadz
@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 --setupThis 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
Via npx (recommended)
No installation required. AI clients can run the server directly:
npx -y @leadloadz/mcp-serverVia npm
npm install -g @leadloadz/mcp-server
leadloadz-mcpConfiguration
You need a Leadloadz API key to use this server.
Sign up at leadloadz.com
Go to Dashboard → API Tokens
Generate a new token
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 |
| Yes | — | Your Leadloadz API token |
| No |
| API base URL (do not use |
| No |
| Request timeout in milliseconds |
| No |
| Set to |
Tools
search_leads
Search indexed B2B contacts by role, company, location, or technology.
Parameters:
query(string, required): Specific natural-language search querylimit(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
Website: leadloadz.com
Issues: GitHub Issues
License
MIT
Available Tools
3 toolsget_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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Specific natural-language search query. Narrow criteria yield better precision (e.g., 'CTOs at Series A B2B SaaS in London') | |
| limit | No | Maximum results to return. Default: 10. Cap: 50. Higher values consume more quota. |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Single email address to verify. Must be a valid RFC-like address format. |
TDQS
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.
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.
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.
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.
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.
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.
3 tool updates
v1.0.6- Added
get_user_stats - Added
search_leads - Added
verify_email
3 tool updates
v1.0.5- Removed
get_user_stats - Removed
search_leads - Removed
verify_email
3 tool updates
v0.1.0- First observed
get_user_stats - First observed
search_leads - First observed
verify_email
TDQS
Each tool serves a distinct purpose: usage stats, lead searching, and email verification. No functional overlap.
All tool names follow a consistent verb_noun pattern (get_user_stats, search_leads, verify_email).
Three tools is well-scoped for a lead generation and verification service, covering essential operations without redundancy.
The set covers the full workflow: check quota, search leads, and verify email deliverability. No missing critical operations given the read-only nature.
Maintenance
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
MCP server for Tomba email finder, verification, and contact enrichment API
Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.
Hosted MCP for verified B2B lead campaigns with success-only billing.
Controlled LinkedIn and GTM MCP server with review-gated prospecting and outreach workflows.
Related MCP Servers
AlicenseBqualityCmaintenanceB2B 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.25671MIT- AlicenseNot gradedqualityAmaintenanceMCP 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
- AlicenseAqualityDmaintenanceLead generation MCP server for AI agents. Find emails, verify contacts, enrich profiles, and search prospects using Hunter.io, Apollo.io, and Abstract API.819MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for verifying B2B contact records via email syntax and DNS/MX checks, serving verified data with per-tenant isolation.Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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