Leadgen MCP
Server Details
Romanian business-registry lookup, director search, contact extraction, and WHOIS/DNS audit.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- darksider4all/leadgen-mcp
- GitHub Stars
- 0
- Server Listing
- Leadgen MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 4 of 4 tools scored.
Each tool targets a distinct data source and action: website crawling for contacts, business registry search by company/name, business registry search by person, and domain WHOIS/DNS. There is no overlap or ambiguity between them.
All tool names follow a verb_noun snake_case pattern (extract_contacts, lookup_business, lookup_director, lookup_domain). The verb varies but the structure is consistent and predictable.
Four tools is a well-scoped count for a lead generation server. Each tool provides a unique data source, and the set feels neither sparse nor bloated.
The domain covers core lead generation needs: website contact extraction, company research, director research, and domain intelligence. Minor gaps like lack of a dedicated company-detail endpoint beyond search exist, but agents can work around them.
Available Tools
4 toolsextract_contactsAInspect
Crawl a website and extract emails, phone numbers, and social profiles.
Args:
website: The website URL to crawl (e.g. "example.com" or "https://example.com").
max_pages: Maximum number of pages to crawl (1-20).
| Name | Required | Description | Default |
|---|---|---|---|
| website | Yes | ||
| max_pages | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does not state whether the tool is read-only, any potential impact on the target website, rate limits, or error handling. Crawling a website implies network access but lacks details such as whether it follows robots.txt, timeouts, or maximum crawl depth consequences. This is insufficient transparency for a tool that interacts with external sites.
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 appropriately brief and well-structured. The purpose is stated in the first sentence, followed by clear arg descriptions. Every sentence serves a purpose with no fluff or repetition.
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?
The tool is relatively simple with two parameters, but since there is no output schema, the description should clarify what the return value looks like. It mentions extracting emails, phone numbers, and social profiles but does not describe the format, whether it's a list or object, or how pages are aggregated. It also lacks any mention of errors or limits beyond max_pages. This is adequate but has clear gaps for a fully self-contained description.
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 0%, so the description fully compensates by explaining both parameters: website is the URL to crawl with examples, and max_pages is the maximum number of pages with a range (1-20). This adds meaningful context beyond the bare schema properties and helps the agent construct valid inputs.
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 opens with a specific action: 'Crawl a website and extract emails, phone numbers, and social profiles.' This clearly defines the tool's function and scope, distinguishing it from sibling tools like lookup_business or lookup_domain, which imply lookup operations rather than crawling.
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 explicit guidance on when to use this tool versus the sibling tools. It does not mention alternative tools or describe scenarios where this tool is preferred. The only implicit guidance is that it's for crawling websites, but there is no exclusionary language or context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_businessAInspect
Search the Romanian business registry (official ONRC data) for companies.
Data source: official ONRC open-data snapshot (data.gov.ro), loaded locally.
Name queries use a ranked FTS5 index and are diacritic-insensitive
('paval' matches 'PAVĂL'); digit queries match the CUI exactly, falling
back to a CUI prefix match when the exact code is unknown.
Args:
query: Company name or CUI (tax ID) to search for.
max_results: Maximum number of companies to return (1-100).
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| max_results | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full transparency burden. It discloses meaningful behavioral details: the data source is a local snapshot, name queries use an FTS5 index and are diacritic-insensitive, and digit queries match CUI exactly with prefix fallback. These details go beyond basic purpose and help the agent anticipate behavior, though it omits return format and safety statements.
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 concise and well-structured: a one-line summary, then data source and query behavior, then parameter definitions. Every sentence adds value without 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?
For a two-parameter lookup tool with no output schema, the description covers the essential context: purpose, data source, matching behavior, and parameter meaning. It is slightly incomplete by not describing the response shape or edge-case behavior, but given the tool's simplicity and the presence of detailed query semantics, it is largely 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 no property descriptions (0% coverage), but the description's Args section fully compensates by explaining query as either a company name or CUI and max_results with a valid range (1-100). This adds critical semantics beyond the raw schema types.
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's function with a specific verb ('Search') and resource ('Romanian business registry ... for companies'), distinguishing it from sibling tools like lookup_director and lookup_domain by its focus on companies. It also names the official data source, reinforcing its scope.
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 establishes a clear context for when to use the tool (company lookups in the Romanian registry) and explains query types, but it does not explicitly mention alternatives or exclusion conditions relative to sibling tools. This is clear context without explicit guidance, so 4.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_directorAInspect
Find Romanian companies by director or legal representative name.
Searches the ONRC reprezentanti table (persoana_imputernicita) via a
ranked FTS5 index; diacritic-insensitive ('popescu' matches 'POPESCU').
Returns companies with their director names and roles.
Args:
name: Director / representative name to search for (e.g. "Ion Popescu").
max_results: Maximum number of companies to return (1-100).
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| max_results | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses key behaviors: it searches the ONRC reprezentanti table via a ranked FTS5 index, is diacritic-insensitive ('popescu' matches 'POPESCU'), and returns companies with director names and roles. Since no annotations are provided, this detail bears the full burden of behavioral transparency.
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 compact, starting with the main purpose in the first sentence, followed by technical context and an Args list. All sentences add value without 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?
Given the tool's simplicity (2 params, no output schema), the description adequately covers the key aspects: purpose, search behavior, and return value. It lacks details on result ordering or error handling, but these are not critical for this usage.
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 provides no descriptions for params (0% coverage), but the description fully explains both: 'name' is defined with an example and the purpose; 'max_results' states the range (1-100) and meaning. This adds significant semantics beyond the schema's type/default.
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's function: 'Find Romanian companies by director or legal representative name.' It specifies the resource (companies) and search criterion (director name), distinguishing it from sibling tools like lookup_business or lookup_domain.
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 comparison with alternatives or guidance on when to use this tool versus other lookup tools. It describes the search mechanism and return values, but does not mention exclusions or refer to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_domainAInspect
Perform WHOIS + DNS + SPF/DMARC lookup for a domain.
Args:
domain: Domain name to look up (e.g. "example.com").
include_dns: Include DNS records (A, MX, NS, TXT, etc.).
include_security: Include SPF/DMARC email-security check.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| include_dns | No | ||
| include_security | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden. It enumerates the included lookup components (WHOIS, DNS, SPF/DMARC), which adds some behavioral context, but it does not disclose response format, network implications, or error behavior. This is moderate value beyond the plain purpose.
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 compact, well-structured docstring: a single summary line followed by an args list. No redundant text, and every sentence adds necessary information. It is front-loaded with the primary action.
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 lack of output schema and annotations, the description covers the operation and parameters clearly. However, it does not explicitly state the return value structure or any limitations such as rate limits or latency. For a straightforward 3-parameter lookup tool, this is a minor but acceptable gap.
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 Args section in the description thoroughly explains each parameter beyond the schema. For example, include_dns is described as 'Include DNS records (A, MX, NS, TXT, etc.)' and include_security as 'Include SPF/DMARC email-security check'. Since schema coverage is 0%, this completely compensates and significantly enriches parameter understanding.
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 opens with a clear imperative: 'Perform WHOIS + DNS + SPF/DMARC lookup for a domain.' This specifies the exact resources and operations, distinguishing it from sibling tools like extract_contacts and lookup_business.
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 does not explicitly state when to use this tool vs alternatives or mention any exclusions. Usage is implied by the tool name and description, but there is no direct guidance, so it falls in the 'implied usage' category.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceDomain intelligence for DNS, WHOIS/RDAP, SSL/TLS, subdomain discovery, availability, valuation, email security, and typosquatting and brand protection.11MIT
- AlicenseAqualityCmaintenanceStructured business intelligence for AI agents. 5.5M verified entities across 34 countries, 40.3M BORME mercantile acts, EU VAT validation, GLEIF, healthcare registries. 20 tools.61MIT
- AlicenseAqualityDmaintenanceProvides comprehensive domain research tools including RDAP, WHOIS, and DNS lookup capabilities, with automatic fallback and support for 50+ TLDs.1141MIT
- Alicense-qualityBmaintenanceDomain and company intelligence for AI agents. Enables vetting companies, qualifying leads, and mapping targets from free public data without API keys.MIT
Your Connectors
Sign in to create a connector for this server.