Skip to main content
Glama

Server Details

Find local businesses, companies and decision makers with verified emails for B2B outreach.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP ยท MCP 2025-11-25
URL

TDQS

A3.9/5.0

Scored across 11 tools

Disambiguation5/5

Each tool targets a distinct resource-action combination: businesses, contacts, credits, organizations, and persons are clearly separated, and within each resource, actions like search, enrich, find, create, list, and lookup are unambiguous. Even similar tools like persons_lookup and persons_find_email have clear distinctions in purpose and output.

Naming Consistency5/5

All tools follow a consistent resource_verb or resource_verb_noun pattern in snake_case (e.g., businesses_search, organizations_enrich, persons_find_email). The naming is uniform, predictable, and easy to infer, with no mixed conventions or vague verbs.

Tool Count5/5

With 11 tools covering five distinct resource domains, the count is well-scoped and each tool serves a clear purpose. The number is within the ideal range for a lead-generation server, providing enough functionality without unnecessary bloat.

Completeness4/5

The tool surface covers the primary workflows: searching businesses, organizations, and persons; enriching organizations; finding decision makers and contact details; managing contacts; and checking credits. Minor gaps exist (e.g., no update/delete for contacts, no direct business lookup by ID), but these are not critical for the server's core lead-generation purpose.

Available Tools

11 tools
contacts_createSave your own contacts or organizationsAInspect

Save your own contacts or organizations. Free. Existing contacts are matched and kept, never duplicated.

ParametersJSON Schema
NameRequiredDescriptionDefault
contactsYesContacts to save; each needs an email, LinkedIn URL, website or organization ID

Output Schema

ParametersJSON Schema
NameRequiredDescription
savedYes

TDQS

A3.8/5.0
Behavior4/5

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

The description adds valuable behavioral context beyond annotations: existing contacts are matched and kept, never duplicated. This conveys idempotency/merge behavior, which readOnlyHint=false and destructiveHint=false do not express. It does not contradict the 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 two concise sentences with no wasted words. It front-loads the purpose, then adds cost and behavioral details that are all relevant for tool selection and invocation.

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?

The schema and output schema cover parameter requirements and return structure, so the description does not need to repeat those. It adequately conveys the core behavior, though it could more explicitly clarify how organizations are represented within the contacts array.

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%, and the schema already documents the contacts parameter and the requirement that each contact needs an email, LinkedIn URL, website, or organization ID. The tool description itself adds no new parameter-level meaning.

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

Purpose4/5

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

The description clearly states the verb and resource: 'Save your own contacts or organizations.' It distinguishes from list/search siblings by emphasizing 'your own,' but it does not explicitly name any alternative tool.

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?

Usage is implied rather than explicit: saving your own contacts or organizations. It gives context like 'Free' and the non-duplication behavior, but it does not state when to prefer this tool over alternatives or when not to use it.

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

contacts_listList your contacts in a stable order; page with nextBeforeB
Read-only
Inspect

List your contacts in a stable order; page with nextBefore

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum saved contacts to return on this page
beforeNoThe nextBefore of the previous page

Output Schema

ParametersJSON Schema
NameRequiredDescription
contactsYes
nextBeforeYes

TDQS

B3.3/5.0
Behavior4/5

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

Annotations already mark the tool as read-only and non-destructive. The description adds a meaningful behavioral guarantee: a stable order across pages, which is essential for correct cursor-based pagination. It does not mention auth or rate limits, but for a simple read-only list with an output schema, the added context is sufficient.

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 a single, front-loaded sentence with no filler. It packs the verb, resource, stable-order guarantee, and pagination method into a compact form, making it easy for an agent to parse quickly.

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?

For a two-parameter list endpoint with complete schema descriptions, read-only annotations, and an output schema, the description covers the essential usage and pagination behavior. Return values are handled by the output schema, so the only real omission is explicit alternative routing, which is already captured in the usage_guidelines dimension.

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?

Both parameters are already fully documented in the schema with 100% coverage: limit has default/min/max, and before is defined as 'The nextBefore of the previous page.' The description merely echoes the before behavior and adds no new parameter meaning beyond the schema.

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

Purpose2/5

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

Tautological: description restates name/title.

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?

It tells the agent this is for listing contacts and explains the pagination mechanism ('page with nextBefore'), which is useful for paging through results. However, it never states when to prefer this tool over contacts_create or the search-based siblings, nor does it give any exclusion conditions.

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

credits_getCurrent credit balanceC
Read-only
Inspect

Current credit balance

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
creditsYes

TDQS

C2.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds no extra behavioral context such as snapshot semantics, units, or response specifics, but it does not contradict the annotations.

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

Conciseness3/5

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

Three words with no filler, but the phrase is under-specified for a definition: it is a tautological noun phrase rather than an instructive sentence. Conciseness is fine, but the structure lacks a verb or usage statement.

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?

For a zero-parameter, read-only balance lookup with an output schema and safety annotations, the description provides enough to understand what will be returned. It is not a complex workflow, so the missing verb and usage note are smaller gaps.

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?

The input schema has zero parameters, so there are no parameter semantics to document. The baseline of 4 applies; no compensation is needed from the description.

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

Purpose2/5

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

Tautological: description restates name/title.

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

Usage Guidelines2/5

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

No sentence or phrase explains when to call this tool or when to prefer an alternative. The only implied context is from the title/name, and the sibling tools are unrelated categories, so the description gives no routing guidance.

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

organizations_enrichEnrich a company from its domainAInspect

Enrich a company from its domain. Returns the company's firmographics, socials and website data. Charges 0.5 credits only when the company is found. Send an Idempotency-Key header to make retries safe.

ParametersJSON Schema
NameRequiredDescriptionDefault
domainYesCompany domain or website URL, e.g. "stripe.com"

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
organizationYes
chargedCreditsYes

TDQS

A4.5/5.0
Behavior5/5

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

The description discloses behavior beyond the annotations: it charges 0.5 credits only when the company is found, and it instructs sending an Idempotency-Key header for safe retries. These are non-obvious side effects and requirements that the annotations alone do not convey.

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 three tight sentences with no filler: purpose first, then return data, then billing and retry guidance. Every sentence earns its place and the most important information is 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?

For a single-parameter tool with an output schema and annotations, the description covers the key operational details: what data is returned, the credit cost condition, and retry safety. Nothing essential is missing for an agent to call it correctly.

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?

The input schema already provides 100% parameter coverage, including an example ('stripe.com'). The description adds no new parameter semantics beyond what the schema states, 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.

Purpose5/5

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

The description uses a specific verb ('Enrich') with a clear resource ('a company from its domain') and specifies the type of data returned (firmographics, socials, website data). This clearly distinguishes it from sibling search-oriented tools like organizations_search or businesses_search.

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?

It clearly conveys when to use the tool: when you have a company domain and want enrichment data rather than search/find operations. However, it does not explicitly name alternatives or state when not to use it, so it stops short of full usage guidance.

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

organizations_find_decision_makerFind the decision maker of an organization with a verified emailAInspect

Find the decision maker of an organization with a verified email. Charges 2 credits only when a decision maker is found. Can take a few minutes. Send an Idempotency-Key header to make retries safe.

ParametersJSON Schema
NameRequiredDescriptionDefault
organizationIdYesCompany ID returned by organization search or enrichment

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
decisionMakerYes
creditsChargedYes

TDQS

A3.5/5.0
Behavior4/5

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

The description adds valuable behavioral context beyond the annotations: it charges 2 credits only on success, can take several minutes, and recommends an Idempotency-Key header for safe retries. This is strong practical guidance, though it stops short of describing failure modes or the exact async response flow.

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

Conciseness4/5

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

The description is compact and front-loaded with the core purpose, followed by three high-value operational notes. The only minor redundancy is that the first sentence mirrors the title exactly, but overall every sentence earns its place.

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?

For a single-parameter tool with an output schema, the description covers the important non-schema details: cost, slowness, and retry safety. It does not mention polling or callback behavior for the multi-minute wait, but the provided output schema and simple parameter surface make this reasonably 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 description coverage is 100%, so the single parameter organizationId is already fully documented as a company ID from search or enrichment. The tool description adds no additional parameter-level meaning, which is acceptable given the schema already carries the burden.

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

Purpose4/5

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

The description clearly states the operation: find an organization's decision maker with a verified email. It is specific enough to separate the tool from sibling search/enrichment tools, though it does not explicitly name those alternatives or define what counts as a decision maker.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus siblings like organizations_enrich, persons_find_email, or organizations_search. The operational caveats about credits and latency are helpful, but no when/when-not conditions or alternative tool references are provided.

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

persons_find_emailFind a person's work email by LinkedIn URL, or full name and company domainAInspect

Find a person's work email by LinkedIn URL, or full name and company domain. Charges 1 credit only when an email is found. Send an Idempotency-Key header to make retries safe.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoFull name, e.g. "Jane Doe"; needs domain
domainNoCompany domain, e.g. "acme.com"
linkedinNoe.g. "https://www.linkedin.com/in/jane-doe"

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYes
emailYes
foundYes
jobTitleYes
linkedinYes
companyNameYes
chargedCreditsYes
companyWebsiteYes
alternateEmailsYes

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses two important behavioral traits not captured by annotations: credit is charged only when an email is found, and an Idempotency-Key header is recommended for safe retries. This meaningfully adds context beyond the structured 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?

Two concise sentences with no filler. The core purpose comes first, followed by billing behavior and a retry-safety instruction. Every sentence earns its place.

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?

The description fully covers how to invoke the tool, the alternate input modes, the cost model, and retry guidance. With an output schema available, no critical information is missing.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds value by explaining the parameter relationship: LinkedIn can be used alone, while name requires domain. This combination logic is not fully explicit 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?

The description clearly states the verb 'Find' and the resource 'a person's work email', and specifies the two lookup strategies: LinkedIn URL or full name plus company domain. This is specific enough to distinguish from siblings like persons_find_phone and persons_lookup.

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 gives clear conditions for use: supply either a LinkedIn URL or a name plus domain. It does not explicitly discuss when not to use it or name alternative tools, but the usage context is unambiguous.

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

persons_find_phoneFind a person's phone number by LinkedIn URL, email, or full name and company domainAInspect

Find a person's phone number by LinkedIn URL, email, or full name and company domain. Charges 2 credits only when a phone number is found. Send an Idempotency-Key header to make retries safe.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoFull name, e.g. "Jane Doe"; needs domain
emailNoKnown email address identifying the person
domainNoCompany domain, e.g. "acme.com"
linkedinNoe.g. "https://www.linkedin.com/in/jane-doe"

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYes
foundYes
phoneYes
phonesYes
jobTitleYes
linkedinYes
companyNameYes
chargedCreditsYes
companyWebsiteYes

TDQS

A4.4/5.0
Behavior4/5

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

Beyond the minimal boolean annotations, the description discloses a real behavioral trait: it charges 2 credits only when a phone number is found. It also instructs callers to send an Idempotency-Key header for safe retries. It does not mention auth or rate limits, but the material side effects are covered.

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 two sentences with no filler. The core purpose and accepted inputs are front-loaded, and the cost and idempotency guidance each earn their place.

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 high schema coverage and presence of an output schema, the description covers the main decisions an agent faces: which inputs are valid and what side effects to expect. It could be slightly stronger by explicitly saying to use persons_find_email when only an email address is needed, but it is otherwise complete for a lookup tool.

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?

The schema already describes each parameter well, so the baseline is 3. The description adds value by clarifying the accepted identifier alternatives and the dependency between 'name' and 'company domain' via the phrase 'full name and company domain.' This helps an agent understand valid combinations beyond 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?

The description states a specific action ('Find'), a concrete resource ('a person's phone number'), and the exact input routes (LinkedIn URL, email, or full name plus company domain). This clearly distinguishes the tool from siblings like persons_find_email and persons_lookup.

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 gives clear context: use this tool when you need a phone number and have one of the listed identifiers. It does not explicitly name alternative sibling tools or state when not to use it, but the identifier-based usage is unambiguous.

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

persons_lookupLook up one person by LinkedIn URL, email, or name and company domainAInspect

Look up one person by LinkedIn URL, email, or name and company domain. Returns the person with their emails, phones, role and company. Charges 1 credit only when the person is found with an email or phone. saveToContacts also stores them in your contacts. Send an Idempotency-Key header to make retries safe.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoFull name, e.g. "Jane Doe"; needs domain
emailNoKnown email address identifying the person
domainNoCompany domain, e.g. "acme.com"
linkedinNoe.g. "https://www.linkedin.com/in/jane-doe"
saveToContactsNoSave the returned person to your Deeplead contacts

Output Schema

ParametersJSON Schema
NameRequiredDescription
foundYes
personYes
chargedCreditsYes

TDQS

A4.7/5.0
Behavior5/5

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

The description adds important behavioral details beyond the annotations: the credit is charged only when a person is found with email or phone, saveToContacts has a storage side effect, and sending an Idempotency-Key makes retries safe. This gives the agent an accurate cost and safety profile.

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?

Four short sentences deliver the purpose, lookup modes, return content, billing behavior, side effect, and retry guidance without any redundant phrasing. The most important operational constraint, the credit charge, is front-loaded after the purpose statement.

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?

The description is complete for a single-person lookup tool: it covers accepted inputs, output highlights, billing, side effects, and retry safety. Because an output schema exists, the return details do not need to be spelled out. The only implicit requirement, that at least one identifier must be supplied, is strongly implied by 'by LinkedIn URL, email, or name and company domain.'

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?

Schema coverage is 100%, so the schema already documents all parameters. The description adds meaning beyond the schema by clarifying that saveToContacts stores the person in contacts and by tying the charge to a successful person-with-contact-info result, which helps the agent reason about cost and side effects for each parameter.

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 states a specific verb ('Look up'), a single resource ('one person'), and the three accepted identifier modes ('LinkedIn URL, email, or name and company domain'). This clearly differentiates it from the sibling search tools, which imply multiple results, and from persons_find_email/persons_find_phone, which target a single contact channel.

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 gives clear usage context: use this tool when you need one person and have a known identifier such as LinkedIn URL, email, or name plus company domain. It does not explicitly name alternatives or exclusion conditions such as 'use persons_search for broad lookups,' so it falls just short of a 5.

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.

  1. 14 tool updates
    • Changedbusinesses_search6 fields changed
      • addedInput schema / properties / excludedNiches / description
        Added value: +"Business categories or niches to exclude"
      • addedInput schema / properties / page / description
        Added value: +"Page number, starting at 1; up to 30 businesses per page"
      • addedInput schema / properties / rating / description
        Added value: +"Google rating band to match"
      • addedInput schema / properties / reviews / description
        Added value: +"Google review-count band to match"
      • addedInput schema / properties / saveToContacts
        Added value: +{
        +  "default": false,
        +  "description": "Save returned businesses to your Deeplead contacts",
        +  "type": "boolean"
        +}
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "businesses": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "adPixels": {
        +            "additionalProperties": false,
        +            "properties": {
        +              "chatgpt": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              },
        +              "googleAds": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              },
        +              "googleAnalytics": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              },
        +              "meta": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              },
        +              "tiktok": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              }
        +            },
        +            "required": [
        +              "meta",
        +              "googleAds",
        +              "googleAnalytics",
        +              "tiktok",
        +              "chatgpt"
        +            ],
        +            "type": "object"
        +          },
        +          "address": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "businessId": {
        +            "type": "string"
        +          },
        +          "categories": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "city": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "country": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "email": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "emails": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "googleProfileClaimed": {
        +            "type": [
        +              "boolean",
        +              "null"
        +            ]
        +          },
        +          "name": {
        +            "type": "string"
        +          },
        +          "phone": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "phones": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "rating": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "reviewCount": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "reviewsByStars": {
        +            "description": "Counts of 1 to 5 star reviews",
        +            "items": {
        +              "type": [
        +                "number",
        +                "null"
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "socials": {
        +            "additionalProperties": false,
        +            "properties": {
        +              "facebook": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "instagram": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "linkedin": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "tiktok": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              }
        +            },
        +            "required": [
        +              "facebook",
        +              "instagram",
        +              "linkedin",
        +              "tiktok"
        +            ],
        +            "type": "object"
        +          },
        +          "website": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          }
        +        },
        +        "required": [
        +          "businessId",
        +          "name",
        +          "categories",
        +          "address",
        +          "city",
        +          "country",
        +          "website",
        +          "email",
        +          "emails",
        +          "phone",
        +          "phones",
        +          "rating",
        +          "reviewCount",
        +          "reviewsByStars",
        +          "googleProfileClaimed",
        +          "socials",
        +          "adPixels"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "chargedCredits": {
        +      "type": "number"
        +    }
        +  },
        +  "required": [
        +    "chargedCredits",
        +    "businesses"
        +  ],
        +  "type": "object"
        +}
    • Changedcontacts_create2 fields changed
      • addedInput schema / properties / contacts / description
        Added value: +"Contacts to save; each needs an email, LinkedIn URL, website or organization ID"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "saved": {
        +      "type": "number"
        +    }
        +  },
        +  "required": [
        +    "saved"
        +  ],
        +  "type": "object"
        +}
    • Changedcontacts_list2 fields changed
      • addedInput schema / properties / limit / description
        Added value: +"Maximum saved contacts to return on this page"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "contacts": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "companyName": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "contactId": {
        +            "type": "string"
        +          },
        +          "email": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "jobTitle": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "linkedin": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "name": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "organizationId": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "website": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          }
        +        },
        +        "required": [
        +          "contactId",
        +          "name",
        +          "email",
        +          "jobTitle",
        +          "companyName",
        +          "website",
        +          "linkedin",
        +          "organizationId"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "nextBefore": {
        +      "type": [
        +        "string",
        +        "null"
        +      ]
        +    }
        +  },
        +  "required": [
        +    "contacts",
        +    "nextBefore"
        +  ],
        +  "type": "object"
        +}
    • Changedcredits_get1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "credits": {
        +      "type": "number"
        +    }
        +  },
        +  "required": [
        +    "credits"
        +  ],
        +  "type": "object"
        +}
    • Addedorganizations_enrich
    • Addedorganizations_find_decision_maker
    • Removedorganizations_findDecisionMaker
    • Changedorganizations_search10 fields changed
      • addedInput schema / properties / foundedAfter / description
        Added value: +"Earliest founding year to include"
      • addedInput schema / properties / foundedBefore / description
        Added value: +"Latest founding year to include"
      • addedInput schema / properties / hqCity
        Added value: +{
        +  "description": "City names of the headquarters, e.g. [\"Austin\"]",
        +  "items": {
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • addedInput schema / properties / includeWithoutWebsite / description
        Added value: +"Include companies without websites in search results"
      • addedInput schema / properties / limit / description
        Added value: +"Maximum companies to return; 0 returns only a free count"
      • changedInput schema / properties / limit / minimum
        Previous value: -1New value: +0
      • addedInput schema / properties / offset / description
        Added value: +"Number of matching companies to skip for pagination"
      • addedInput schema / properties / revenueRange / description
        Added value: +"Annual company revenue bands"
      • addedInput schema / properties / technologies / description
        Added value: +"Technologies used by the company"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "chargedCredits": {
        +      "type": "number"
        +    },
        +    "organizations": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "adPixels": {
        +            "additionalProperties": false,
        +            "description": "true/false where the website was checked, null where it never was",
        +            "properties": {
        +              "chatgpt": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              },
        +              "googleAds": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              },
        +              "googleAnalytics": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              },
        +              "meta": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              },
        +              "tiktok": {
        +                "type": [
        +                  "boolean",
        +                  "null"
        +                ]
        +              }
        +            },
        +            "required": [
        +              "meta",
        +              "googleAds",
        +              "googleAnalytics",
        +              "tiktok",
        +              "chatgpt"
        +            ],
        +            "type": "object"
        +          },
        +          "description": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "domain": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "emails": {
        +            "description": "Found on the company website",
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "employeeCount": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "employeeGrowthRate": {
        +            "description": "Employee growth on LinkedIn in percent",
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "employeeMax": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "employeeMin": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "foundedYear": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "hqCity": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "hqCountry": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "hqState": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "industry": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "keywords": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "lastFunding": {
        +            "additionalProperties": false,
        +            "properties": {
        +              "amount": {
        +                "description": "USD",
        +                "type": [
        +                  "number",
        +                  "null"
        +                ]
        +              },
        +              "date": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "type": {
        +                "description": "e.g. Seed Round, Series A, Private Equity Round",
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              }
        +            },
        +            "required": [
        +              "type",
        +              "date",
        +              "amount"
        +            ],
        +            "type": "object"
        +          },
        +          "linkedin": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "linkedinDescription": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "monthlyGoogleAdSpend": {
        +            "description": "Estimated monthly Google Ads spend in USD",
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "monthlyVisits": {
        +            "description": "Estimated monthly website visits",
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "naicsCodes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "name": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "organizationId": {
        +            "type": "string"
        +          },
        +          "phones": {
        +            "description": "Found on the company website",
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "revenueRange": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "socials": {
        +            "additionalProperties": false,
        +            "properties": {
        +              "facebook": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "instagram": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "linkedin": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "tiktok": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "x": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              },
        +              "youtube": {
        +                "type": [
        +                  "string",
        +                  "null"
        +                ]
        +              }
        +            },
        +            "required": [
        +              "facebook",
        +              "instagram",
        +              "linkedin",
        +              "x",
        +              "tiktok",
        +              "youtube"
        +            ],
        +            "type": "object"
        +          },
        +          "technologies": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "totalFunding": {
        +            "description": "USD",
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "website": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "websiteAlive": {
        +            "type": [
        +              "boolean",
        +              "null"
        +            ]
        +          },
        +          "websiteDescription": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "websiteTitle": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          }
        +        },
        +        "required": [
        +          "organizationId",
        +          "name",
        +          "domain",
        +          "website",
        +          "websiteAlive",
        +          "websiteTitle",
        +          "websiteDescription",
        +          "linkedin",
        +          "linkedinDescription",
        +          "description",
        +          "industry",
        +          "naicsCodes",
        +          "keywords",
        +          "technologies",
        +          "employeeCount",
        +          "employeeMin",
        +          "employeeMax",
        +          "revenueRange",
        +          "monthlyVisits",
        +          "monthlyGoogleAdSpend",
        +          "employeeGrowthRate",
        +          "lastFunding",
        +          "totalFunding",
        +          "foundedYear",
        +          "hqCity",
        +          "hqState",
        +          "hqCountry",
        +          "emails",
        +          "phones",
        +          "socials",
        +          "adPixels"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "totalCount": {
        +      "type": "number"
        +    }
        +  },
        +  "required": [
        +    "totalCount",
        +    "chargedCredits",
        +    "organizations"
        +  ],
        +  "type": "object"
        +}
    • Addedpersons_find_email
    • Addedpersons_find_phone
    • Addedpersons_lookup
    • Removedpersons_save
    • Changedpersons_search14 fields changed
      • addedInput schema / properties / foundedAfter / description
        Added value: +"Earliest founding year to include"
      • addedInput schema / properties / foundedBefore / description
        Added value: +"Latest founding year to include"
      • addedInput schema / properties / jobLevel / description
        Added value: +"Allowed job seniority levels"
      • addedInput schema / properties / jobTitleExclude / description
        Added value: +"Job title phrases to exclude"
      • addedInput schema / properties / limit / description
        Added value: +"Maximum people to return; 0 returns only a free count"
      • changedInput schema / properties / limit / minimum
        Previous value: -1New value: +0
      • addedInput schema / properties / offset / description
        Added value: +"Pagination offset; use nextOffset from the previous response"
      • addedInput schema / properties / onePerOrganization
        Added value: +{
        +  "default": false,
        +  "description": "Return at most one person per company",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / personCity / description
        Added value: +"Cities where the person is based"
      • addedInput schema / properties / personState / description
        Added value: +"States where the person is based"
      • addedInput schema / properties / revenueRange / description
        Added value: +"Annual company revenue bands"
      • addedInput schema / properties / saveToContacts
        Added value: +{
        +  "default": false,
        +  "description": "Save returned people to your Deeplead contacts",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / technologies / description
        Added value: +"Technologies used by the company"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "chargedCredits": {
        +      "type": "number"
        +    },
        +    "nextOffset": {
        +      "type": [
        +        "number",
        +        "null"
        +      ]
        +    },
        +    "persons": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "alternateEmails": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "city": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "companyEmployeeGrowthRate": {
        +            "description": "Percent",
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "companyLastFundingDate": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "companyLastFundingType": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "companyMonthlyVisits": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "companyName": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "companyWebsite": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "country": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "email": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "foundedYear": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "jobFunction": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "jobLevel": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "jobTitle": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "linkedin": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "naicsCodes": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "name": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "organizationId": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "personId": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "phone": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "phones": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "revenueRange": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "state": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          }
        +        },
        +        "required": [
        +          "personId",
        +          "name",
        +          "email",
        +          "alternateEmails",
        +          "phone",
        +          "phones",
        +          "linkedin",
        +          "jobTitle",
        +          "jobLevel",
        +          "jobFunction",
        +          "city",
        +          "state",
        +          "country",
        +          "organizationId",
        +          "companyName",
        +          "companyWebsite",
        +          "revenueRange",
        +          "naicsCodes",
        +          "foundedYear",
        +          "companyMonthlyVisits",
        +          "companyEmployeeGrowthRate",
        +          "companyLastFundingType",
        +          "companyLastFundingDate"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "totalCount": {
        +      "description": "With limit 0: all matching people, including those without an email or phone",
        +      "type": "number"
        +    }
        +  },
        +  "required": [
        +    "totalCount",
        +    "nextOffset",
        +    "chargedCredits",
        +    "persons"
        +  ],
        +  "type": "object"
        +}
    • Removedsearch_parse
  2. 9 tool updates
    • First observedbusinesses_search
    • First observedcontacts_create
    • First observedcontacts_list
    • First observedcredits_get
    • First observedorganizations_findDecisionMaker
    • First observedorganizations_search
    • First observedpersons_save
    • First observedpersons_search
    • First observedsearch_parse

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Finds, filters, and verifies local-business leads on demand; every returned email carries a verification receipt (verifier, verdict, timestamp). Credit-based with per-key spend budgets; 25 free validated leads at signup.
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Finds and verifies business email addresses using DNS/SMTP verification and web scraping, with no external API costs.
    5
    18 npm
    11
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources