Skip to main content
Glama

Crawdar Business Research

Get a lead search page

get_lead_search
Read-onlyIdempotent

Read job status or one cursor-paginated result page. Keep jobToken private and pass nextCursor back unchanged.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesJob id returned by start_lead_search, refine_lead_search, or retry_lead_search.
viewNoCompact minimizes tokens. Full retains detailed evidence fields.compact
limitNoMaximum prospects in this result page.
cursorNoOpaque nextCursor from the previous response.
jobTokenYesPrivate token returned with the job. Do not log or share it.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
errorNo
statusYes
resultsNo
progressNo
returnedNo
warningsNo
createdAtNo
errorCodeNo
nextCursorNo
retryAfterNo
completedAtNo
diagnosticsNo
resultCountNo
searchedSourcesNo

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover read-only and idempotent behavior. The description adds useful behavioral context with cursor-paginated pagination, the requirement to pass nextCursor back unchanged, and the instruction to keep jobToken private. No contradiction with 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 short, front-loaded sentences with no filler. Every clause earns its place: purpose first, then critical pagination and token-handling instructions.

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 read-only paginated retrieval tool with full input schema, annotations, and an output schema, the description covers purpose, pagination protocol, and security handling. Nothing essential is missing.

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 the schema already fully documents all five parameters. The description adds only marginal operational guidance ('pass nextCursor back unchanged') beyond what the schema says, so baseline 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?

States a specific verb ('Read') and resource ('job status or one cursor-paginated result page'). This clearly identifies the tool as the read/poll operation for a lead search job and distinguishes it from sibling lifecycle tools like start_lead_search, refine_lead_search, retry_lead_search, and cancel_lead_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?

The description clearly implies use after a lead search job has been created, for reading status or paging through results. It gives operational context through 'pass nextCursor back unchanged,' though it does not explicitly name alternatives or state when not to use this tool.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation4/5

Most tools map to distinct lifecycle actions (start/get/cancel/refine/retry), and the descriptions make those boundaries clear. The only real overlap is between research_businesses and search_businesses, which both perform synchronous lookups but are separated by natural-language vs structured input.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern, with lead_search reused across lifecycle operations. Even explain_crawdar and sandbox_businesses fit the naming convention well.

Tool Count5/5

Nine tools is well within the appropriate range for a business-research MCP server. The count balances synchronous search, a durable async job lifecycle, sandbox testing, and self-documentation without feeling bloated.

Completeness4/5

The async lead-search lifecycle is well covered with start, get, cancel, refine, and retry, and the synchronous and sandbox search tools cover adjacent needs. However, export is mentioned in start_lead_search but not exposed as a tool, and there is no way to list existing jobs, leaving minor gaps.

Resources