Skip to main content
Glama

Server Details

Remote MCP server to enrich company profiles with structured B2B data and confidence scores.

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
Last Tested
Transport
Streamable HTTP
URL
Repository
Diego-Costa-Tech/lead-enrichment-mcp
GitHub Stars
0
Server Listing
lead-enrichment-mcp

TDQS

A4.1/5.0

Scored across 1 tool

Disambiguation5/5

Only one tool exists, so there is no ambiguity—agents have no risk of selecting the wrong tool.

Naming Consistency5/5

With a single tool, naming consistency is trivial; the tool name 'enrich_lead' is clear and follows a verb_noun pattern.

Tool Count3/5

One tool for a 'B2B Lead Enrichment' server is borderline - it can work if the tool encapsulates all enrichment needs, but typically such servers benefit from multiple specialized tools (e.g., batch enrichment, search, status).

Completeness2/5

The tool covers multiple enrichment dimensions (firmographic, technographic, intent, contact), but lacks batch operations, updates, or status tracking, leaving significant gaps for common workflows.

Available Tools

1 tool
enrich_leadA
Read-only
Inspect

Enrich a B2B company profile with structured firmographic, technographic, intent, and contact data. This tool should be called when an AI agent needs to gather detailed information about a company before crafting a personalized outreach, generating a lead score, or making a sales recommendation.

ParametersJSON Schema
NameRequiredDescriptionDefault
domainYesThe company domain to enrich (e.g., "stripe.com").
attributesNoWhich data attributes to include. Allowed values: firmographic, technographic, intent, contacts.
requiredFieldsNoSpecific fields that must be present in the response.

Output Schema

ParametersJSON Schema
NameRequiredDescription
revenueYesEstimated annual revenue range (e.g., "$1B+").
contactsNoKey contacts identified at the company.
industryYesPrimary industry classification.
insightsYesActionable semantic insights derived from the data.
enrichedAtYesISO 8601 timestamp when this enrichment was performed.
companyNameYesOfficial legal name of the enriched company.
technologiesYesTechnology stack associated with the company.
employeeCountYesEstimated employee count range (e.g., "5000+").
intentSignalsYesSignals showing buying intent or strategic initiatives.
confidenceScoreYesConfidence score from 0 to 1.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true. The description adds detail about the types of data collected (firmographic, technographic, intent, contacts). Although it doesn't mention error handling or auth, the read-only nature is clear.

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 sentences that are front-loaded with purpose. No redundant information; every sentence is essential.

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 presence of an output schema (not shown) and full parameter descriptions, the tool definition is fairly complete. Missing are potential error conditions or rate limits, but overall it provides enough context for usage.

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

Parameters3/5

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

Schema coverage is 100%, so baseline is 3. The description does not add significant semantic value beyond the schema; the parameter descriptions are self-contained. It hints at attribute categories but doesn't detail them.

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 'Enrich' and resource 'B2B company profile' with specific data types (firmographic, technographic, etc.). It distinguishes the tool's purpose well, and with no sibling tools, it's unambiguous.

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 explicitly states when to use the tool: before personalized outreach, lead scoring, or sales recommendations. While it provides good context, it lacks when-not-to-use guidance or alternatives, but siblings are absent.

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. 1 tool update
    • Changedenrich_lead7 fields changed
      • changedInput schema / properties / attributes / description
        Previous value: -"Which data attributes to include: firmographic, technographic, intent, contacts"New value: +"Which data attributes to include. Allowed values: firmographic, technographic, intent, contacts."
      • addedInput schema / properties / attributes / title
        Added value: +"Attributes"
      • changedInput schema / properties / domain / description
        Previous value: -"The company domain to enrich"New value: +"The company domain to enrich (e.g., \"stripe.com\")."
      • addedInput schema / properties / domain / title
        Added value: +"Domain"
      • changedInput schema / properties / requiredFields / description
        Previous value: -"Specific fields that must be present in the response"New value: +"Specific fields that must be present in the response."
      • addedInput schema / properties / requiredFields / title
        Added value: +"Required Fields"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "companyName": {
        +      "description": "Official legal name of the enriched company.",
        +      "type": "string"
        +    },
        +    "confidenceScore": {
        +      "description": "Confidence score from 0 to 1.",
        +      "maximum": 1,
        +      "minimum": 0,
        +      "type": "number"
        +    },
        +    "contacts": {
        +      "description": "Key contacts identified at the company.",
        +      "items": {
        +        "properties": {
        +          "department": {
        +            "type": "string"
        +          },
        +          "linkedin": {
        +            "type": "string"
        +          },
        +          "name": {
        +            "type": "string"
        +          },
        +          "title": {
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "name",
        +          "title",
        +          "department"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "employeeCount": {
        +      "description": "Estimated employee count range (e.g., \"5000+\").",
        +      "type": "string"
        +    },
        +    "enrichedAt": {
        +      "description": "ISO 8601 timestamp when this enrichment was performed.",
        +      "format": "date-time",
        +      "type": "string"
        +    },
        +    "industry": {
        +      "description": "Primary industry classification.",
        +      "type": "string"
        +    },
        +    "insights": {
        +      "description": "Actionable semantic insights derived from the data.",
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "intentSignals": {
        +      "description": "Signals showing buying intent or strategic initiatives.",
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "revenue": {
        +      "description": "Estimated annual revenue range (e.g., \"$1B+\").",
        +      "type": "string"
        +    },
        +    "technologies": {
        +      "description": "Technology stack associated with the company.",
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "required": [
        +    "companyName",
        +    "industry",
        +    "employeeCount",
        +    "revenue",
        +    "technologies",
        +    "intentSignals",
        +    "confidenceScore",
        +    "enrichedAt",
        +    "insights"
        +  ],
        +  "type": "object"
        +}
  2. 1 tool update
    • First observedenrich_lead

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    An MCP server providing real-time access to comprehensive B2B company and contact data for lead generation and business intelligence. It enables AI tools to search firmographics, discover key contacts, and automate personalized outreach workflows.
    32
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    MCP server for Apollo.io B2B data discovery and enrichment, enabling company search, people search, contact enrichment, and organization firmographics through Apollo's REST API.
    8
    Apache 2.0
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.