leads-mcp
Provides company enrichment data such as industry, size, funding, and tech stack using Abstract API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@leads-mcpFind the email for Alice Johnson at microsoft.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
leads-mcp
Lead generation MCP server for AI agents. Find emails, verify contacts, enrich profiles, and search prospects using Hunter.io, Apollo.io, and Abstract API.
BYOK (Bring Your Own Keys) — you supply your own API keys. No data leaves your machine except direct API calls to the services you configure.
Install
npx -y leads-mcpClaude Code
claude mcp add leads-mcp -- npx -y leads-mcpClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"leads-mcp": {
"command": "npx",
"args": ["-y", "leads-mcp"],
"env": {
"HUNTER_API_KEY": "your-hunter-key",
"APOLLO_API_KEY": "your-apollo-key",
"ABSTRACT_API_KEY": "your-abstract-key"
}
}
}
}Cursor
Add to ~/.cursor/mcp.json with the same config format as above.
Related MCP server: LeadClaw
API Keys
All keys are optional — tools gracefully tell you which key is needed when you try to use them.
Key | Service | Get it at |
| Hunter.io — email finding & verification | |
| Apollo.io — person/company enrichment & search | |
| Abstract API — company enrichment |
Tools
find-email
Find someone's email address given their name and company domain.
Params: firstName, lastName, domain
API: Hunter.io | Key: HUNTER_API_KEY
verify-email
Verify an email address for deliverability — MX records, SMTP, disposable, catch-all.
Params: email
API: Hunter.io | Key: HUNTER_API_KEY
domain-search
Find all email addresses associated with a company domain.
Params: domain, type?, department?, seniority?, limit?
API: Hunter.io | Key: HUNTER_API_KEY
enrich-person
Get a full professional profile — title, company, social links, phone.
Params: firstName?, lastName?, email?, domain?, linkedinUrl?
API: Apollo.io | Key: APOLLO_API_KEY
enrich-company
Get comprehensive company intelligence — industry, size, funding, tech stack.
Params: domain
API: Apollo.io + Abstract API | Key: APOLLO_API_KEY or ABSTRACT_API_KEY
search-people
Search for people by job title, company, location, and seniority.
Params: personTitles?, organizationName?, locations?, seniorities?, limit?
API: Apollo.io | Key: APOLLO_API_KEY
search-companies
Search for companies by name, industry, location, and employee count.
Params: query?, industries?, locations?, employeeRanges?, limit?
API: Apollo.io | Key: APOLLO_API_KEY
lead-report
Generate a comprehensive lead report combining all available APIs. Uses Promise.allSettled for partial results.
Params: firstName, lastName, domain
API: All available | Key: Any configured key
Example Prompts
"Find the email for John Smith at stripe.com"
"Verify if hello@example.com is deliverable"
"Find all engineering contacts at openai.com"
"Get the full profile for the CEO of anthropic.com"
"Tell me everything about acme.com"
"Search for CTOs at startups in San Francisco"
"Find B2B SaaS companies with 50-200 employees"
"Generate a full lead report for Jane Doe at tesla.com"
Development
git clone <repo-url>
cd leads-mcp
pnpm install
pnpm dev # Run with tsx (hot reload)
pnpm build # Compile TypeScript
pnpm start # Run compiled JSLicense
MIT
Available Tools
8 toolsdomain-searchB
Find all email addresses associated with a company domain. Filter by department, seniority, and email type.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter by email type | |
| limit | No | Max results to return (default: 10) | |
| domain | Yes | Domain to search (e.g., 'stripe.com') | |
| seniority | No | Filter by seniority (e.g., 'senior', 'executive', 'junior') | |
| department | No | Filter by department (e.g., 'engineering', 'marketing', 'sales') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full transparency burden. It mentions the action and filters but does not disclose important behaviors such as the limit parameter defaulting to 10, whether 'all' is actually capped, output format, or whether emails are verified.
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?
Two sentences, front-loaded with the primary verb and resource, and no filler. The second sentence efficiently lists the filter options.
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?
With 5 parameters and no output schema or annotations, the description does not explain the return value structure, default limit behavior, or the nuance behind 'all' (which is constrained by the limit parameter). This leaves significant gaps for an agent deciding to invoke the tool.
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% with each parameter having a description. The description only names the filter categories (department, seniority, email type) without adding any semantics beyond what the schema already provides, so baseline 3 applies.
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 it finds all email addresses for a company domain, using a specific verb and resource. It distinguishes itself from siblings like verify-email or enrich-person by focusing on domain-based discovery.
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?
Usage is implied: use when you need emails for a given domain. However, no explicit alternatives or exclusions are mentioned, leaving ambiguity with sibling tools like find-email.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
enrich-companyA
Get comprehensive company intelligence for a domain — industry, size, funding, tech stack, and more.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Company domain (e.g., 'stripe.com') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the type of data returned (industry, size, funding, tech stack) but says nothing about data freshness, source, accuracy, or error behavior. This is a moderate level of transparency for a read-only enrichment tool but lacks detail on potential limitations.
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?
The description is a single sentence that front-loads the core action and resource, with no filler. It lists representative data fields to convey scope without wasting words.
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 one-parameter tool without an output schema, the description provides a solid overview of purpose and return categories. The phrase 'and more' leaves some ambiguity about the full set of fields, but the tool's simplicity and the listed examples make it sufficiently complete for an agent to invoke correctly.
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?
The input schema covers the only parameter with a description and example, achieving 100% coverage. The description adds 'for a domain' but does not provide additional semantic detail beyond what the schema already offers, so it stays at the baseline.
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 verb 'get' and resource 'comprehensive company intelligence' clearly state the tool's function. It explicitly scopes to a domain, and the example data fields (industry, size, funding, tech stack) distinguish it from sibling tools like enrich-person or find-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?
The description indicates the intended use case: when you have a domain and want company data. It does not explicitly mention alternatives or exclusions, but the context is clear enough for an agent to know when to select this tool over siblings like search-companies (which requires search criteria rather than a specific domain).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
enrich-personA
Get a full professional profile for a person using their name, email, or LinkedIn URL. Uses Apollo.io.
| Name | Required | Description | Default |
|---|---|---|---|
| No | Email address | ||
| domain | No | Company domain | |
| lastName | No | Last name | |
| firstName | No | First name | |
| linkedinUrl | No | LinkedIn profile URL |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden of behavioral disclosure. It states that it uses Apollo.io and returns a full profile, but it does not disclose important constraints such as the need to provide at least one identifier (the schema marks all parameters optional) or what happens if insufficient data is given. The description also omits the 'domain' parameter, which may lead to confusion about accepted inputs.
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?
The description is extremely concise, consisting of just two sentences. The key action and inputs are front-loaded, and the mention of Apollo.io is a useful additional context. Every word earns its place with no redundancy.
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?
Without an output schema, the description should provide more detail about the returned 'full professional profile.' It also fails to explain that parameters are optional but at least one is presumably needed. However, the tool is simple and the description covers the primary use case, so it is adequate but not fully 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?
The input schema has 100% description coverage, so each parameter is individually documented. The description adds a slight grouping ('name, email, or LinkedIn URL') that implies these are alternative identifiers, but it does not clarify the role of 'domain' or how parameters combine. This is baseline 3 for high schema coverage.
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 the specific verb ('Get') and resource ('full professional profile for a person'), and further specifies the input methods (name, email, or LinkedIn URL). It distinguishes itself from sibling tools like enrich-company (for companies) and find-email (for finding emails) by focusing on person enrichment.
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?
The description provides clear context for when to use the tool: when you need a full professional profile from identifying information. However, it does not explicitly mention when not to use it or name alternative tools (e.g., search-people), so it stops short of full explicit exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find-emailA
Find someone's email address given their name and company domain. Uses Hunter.io.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Company domain (e.g., 'stripe.com') | |
| lastName | Yes | Last name of the person | |
| firstName | Yes | First name of the person |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility for behavioral disclosure. It mentions 'Uses Hunter.io' but does not explain that the result may be unverified, that rate limits or API keys apply, or what happens if no email is found. For a read-only lookup that may return probabilistic data, this is a significant gap.
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?
The description is two short sentences, front-loaded with the core action. 'Uses Hunter.io' is a concise implementation note that provides context without bloat. No words are wasted, and the information is immediately understandable.
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?
This tool has no output schema, no annotations, and a simple input schema. The description fails to specify return format, failure behavior, or how it differs from related tools like enrich-person or domain-search. Given the lack of structured info elsewhere, the description is incomplete for confident invocation and result interpretation.
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 description coverage is 100%, with clear descriptions for all three parameters (firstName, lastName, domain). The description's phrase 'given their name and company domain' paraphrases the schema but adds no new format, constraints, or examples beyond what the schema already provides. Thus, 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?
The description states a specific verb ('Find') and resource ('email address'), with clear inputs ('name and company domain'). It distinguishes this from sibling tools like domain-search (which finds all emails in a domain) and verify-email (which checks an existing email). The purpose is unambiguous and directly tied to the tool's name.
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?
The description provides clear context: use this tool when you have a person's name and company domain. It does not explicitly mention when not to use it or name alternatives, but the purpose itself differentiates it from siblings. This is more than implied usage—it states the exact precondition.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lead-reportA
Generate a comprehensive lead report combining email, person profile, and company data from all available APIs.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Company domain (e.g., 'stripe.com') | |
| lastName | Yes | Last name of the person | |
| firstName | Yes | First name of the person |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must disclose behavior. It mentions combining data from all available APIs, hinting at multiple underlying calls, but fails to address read-only status, potential data absence, rate limits, or error behavior. The vagueness of 'all available APIs' adds uncertainty.
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?
The description is a single, well-structured sentence that front-loads the main action and resource. It contains no redundant information and earns its place in terms of conciseness.
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?
Given the complexity of a composite report tool and the absence of annotations and output schema, the description is too sparse. It does not explain what the report contains beyond data types, how results are returned, or how it handles missing data from any API, which leaves significant 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?
Schema coverage is 100%, with each parameter (firstName, lastName, domain) already described in the schema. The description adds no additional parameter meaning beyond what is in the schema, so the baseline score of 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?
The description clearly states the tool generates a comprehensive lead report combining email, person profile, and company data. This distinguishes it from sibling tools like find-email or enrich-person, which handle individual data types. The verb 'generate' and resource 'lead report' are specific and unambiguous.
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?
The description implies usage for aggregated reporting rather than individual lookups, which provides clear context. However, it does not explicitly name alternative tools or state when not to use this tool, so it falls short of full exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search-companiesA
Search for companies by name, industry, location, and employee count. Uses Apollo.io.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default: 10) | |
| query | No | Company name or keyword to search | |
| locations | No | Locations to filter by (e.g., ['United States', 'Germany']) | |
| industries | No | Industry tags to filter by | |
| employeeRanges | No | Employee count ranges (e.g., ['1,10', '11,50', '51,200']) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears the full burden of behavioral disclosure. It only mentions 'Uses Apollo.io', which indicates an external dependency but does not disclose rate limits, permissions, or potential side effects. The read-only nature is implied but not explicit.
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?
A single, front-loaded sentence that efficiently conveys the tool's purpose and scope without redundancy or filler.
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?
Given the simple search nature, the description plus fully-described schema covers the essential aspects. However, the absence of an output schema and any mention of return format or pagination leaves a minor gap, preventing a perfect score.
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?
The input schema describes all five parameters with 100% coverage, including formats like employeeRanges and locations. The description merely restates the criteria without adding new meaning, so the baseline of 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?
The description clearly states 'Search for companies' with specific filter criteria (name, industry, location, employee count), using a specific verb and resource. It distinguishes itself from sibling tools like search-people by explicitly targeting companies.
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?
The description conveys a clear usage context: finding companies based on named attributes. However, it does not explicitly mention when not to use it or point to alternatives, so it falls short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search-peopleB
Search for people by job title, company, location, and seniority. Uses Apollo.io.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default: 10) | |
| locations | No | Locations to filter by (e.g., ['San Francisco', 'New York']) | |
| seniorities | No | Seniority levels (e.g., ['senior', 'executive', 'director']) | |
| personTitles | No | Job titles to search for (e.g., ['CTO', 'VP Engineering']) | |
| organizationName | No | Company name to search within |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description must disclose behavioral traits. It mentions 'Uses Apollo.io,' indicating an external data source, but does not disclose rate limits, data freshness, pagination, or what the response contains. This limited disclosure is insufficient for a search tool.
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?
The description is a single concise sentence that front-loads the primary action and criteria. There is no wasted text, and the second sentence about Apollo.io is valuable context.
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?
With no output schema and no annotations, the description should specify the return value and any caveats. It covers the search criteria but not the response format or behavior when results are empty. The strong schema coverage partially compensates, but the description lacks completeness.
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?
The input schema already provides descriptions for all five parameters (100% coverage), so the description adds little beyond a high-level summary. The mention of job title, company, location, and seniority maps to the schema parameters but does not provide additional semantic detail.
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 the tool searches for people using specific criteria (job title, company, location, seniority). The verb 'search' and resource 'people' are explicit, and listing the filter criteria distinguishes it from sibling tools like search-companies and enrich-person.
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?
The description provides no guidance on when to use this tool versus alternatives like enrich-person or find-email. It does not mention any exclusions or prerequisites, leaving the agent to infer usage from the purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify-emailA
Verify an email address for deliverability, checking MX records, SMTP, disposable, and catch-all status.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Email address to verify |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the specific checks performed (MX, SMTP, disposable, catch-all), which is useful behavioral detail. However, it does not mention whether the check sends an email, the return format, possible errors, or limitations (e.g., SMTP checks being unreliable), leaving some transparency gaps.
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?
The description is a single, well-structured sentence that front-loads the primary action and then adds relevant detail. Every word contributes value, with no redundant or filler content.
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 single-parameter tool, the description provides a clear picture of what is checked, but it omits what the output looks like. Without an output schema, the agent may not know whether the result is a boolean, a score, or a detailed report. It also does not mention any side effects, but the simple nature of the tool makes this a moderate gap rather than a severe one.
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?
The schema already describes the email parameter thoroughly ('Email address to verify'), and the description does not add additional meaning to this parameter beyond its overall purpose. Schema coverage is 100%, so the baseline of 3 is appropriate; the parameter is adequately documented but not enriched beyond 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?
The description begins with a strong verb ('Verify') and specifies the resource ('email address') and the exact purpose ('deliverability'). It enumerates specific checks (MX, SMTP, disposable, catch-all), making its function clear and distinguishing it from sibling tools like find-email or domain-search.
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?
The description implies the tool should be used when you have an existing email address to check for deliverability, but it does not explicitly state when to use this tool instead of alternatives like find-email or domain-search. There are no exclusions or alternative suggestions, so guidance is partially implied rather than explicit.
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.
8 tool updates
v1.0.1- First observed
domain-search - First observed
enrich-company - First observed
enrich-person - First observed
find-email - First observed
lead-report - First observed
search-companies - First observed
search-people - First observed
verify-email
TDQS
Each tool targets a distinct action: email lookup, email verification, domain email listing, person/company enrichment, people/company search, and combined reporting. No two tools overlap in purpose, and the descriptions clearly differentiate them.
Most tools follow a clear verb_noun pattern (find-email, verify-email, enrich-person, search-people, etc.), but 'domain-search' and 'lead-report' are noun-heavy deviations. The overall hyphenated lowercase style is consistent, so only minor inconsistency exists.
With 8 tools, the set is well-scoped for a lead generation/enrichment server. Each tool serves a clear function without redundancy, and the count falls comfortably within the ideal range.
The tools cover the full lead generation workflow: discovery (search-people, search-companies), email lookup (find-email, domain-search), verification (verify-email), enrichment (enrich-person, enrich-company), and synthesis (lead-report). No major gaps or dead ends are apparent.
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
Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.
LinkedIn outreach MCP server — 19 tools for AI agents to prospect, sequence, and manage contacts.
B2B lead generation, email verification, company enrichment, and agentic GTM Ops.
Cold email, email warmup, LinkedIn outreach, and B2B lead database via MCP.
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
- AlicenseNot gradedqualityDmaintenanceMCP server for the Apollo.io API that lets LLMs search and enrich people and company data.66MIT
- AlicenseAqualityCmaintenanceUnified MCP server combining Hunter.io email finding with Apollo company intelligence for B2B lead enrichment.113MIT
Appeared in Searches
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/AtomicIntuition/leads-mcp-'
If you have feedback or need assistance with the MCP directory API, please join our Discord server