Crawdar Business Research
Crawdar MCP
Crawdar gives AI agents evidence-backed public business research through a hosted MCP server. It separates verified fits, likely fits, and excluded candidates, keeps source URLs attached, and explains why candidates were rejected.
No package or local crawler is required.
Optional local stdio bridge
This repository also provides an MIT-licensed, runnable bridge for clients that require stdio. It uses pinned mcp-remote to forward MCP traffic to https://crawdar.com/api/mcp. The crawler backend remains hosted and is not included in this repository. This is not an offline or self-hosted crawler.
With Node.js 22 or newer, run npm ci --ignore-scripts, then configure your MCP client to launch node with the absolute path to node_modules/mcp-remote/dist/proxy.js, followed by https://crawdar.com/api/mcp --transport http-only as separate arguments. For a container, build with docker build -t crawdar-mcp . and launch with docker run --rm -i crawdar-mcp (no TTY).
The bridge exposes the hosted server's tools and sends tool inputs to Crawdar over HTTPS. Live research remains subject to Crawdar's quotas and service availability. Credentials are not embedded. The fictional sandbox and tool discovery require no key. For authenticated usage, use the direct HTTP configuration below or the bridge's --header-file option with a private local header file. Never commit credentials or include them in command arguments.
Related MCP server: librecrawl-technical-seo-audit-mcp
Bring a difficult search brief
We are recruiting five independent builders to test a real company-research workflow. Describe your brief and acceptance rules. We will confirm a small sample scope first, then review what matched, what failed and what remains unknown. No stars, referrals or positive reviews required.
GitHub issues are public. Keep confidential briefs and all credentials out of them; use hello@crawdar.com for private support. The general Crawdar web tool does not require a GitHub account.
Connect
Remote MCP endpoint:
https://crawdar.com/api/mcpClaude Code:
claude mcp add --transport http crawdar https://crawdar.com/api/mcpCodex configuration:
[mcp_servers.crawdar]
url = "https://crawdar.com/api/mcp"Generic MCP configuration:
{
"mcpServers": {
"crawdar": {
"type": "http",
"url": "https://crawdar.com/api/mcp"
}
}
}Tools
research_businesses: One-call research from a natural-language brief.search_businesses: Structured target and geography search.sandbox_businesses: Fictional integration test with no search-provider usage.start_lead_search: Start a private resumable job.get_lead_search: Poll status and page through compact or full results.refine_lead_search: Create a revised job without changing the original.retry_lead_search: Recover from a stopped job.cancel_lead_search: Cancel a queued or running job.explain_crawdar: Read result semantics, limits, and safe-use guidance.
Try a visual workflow in n8n
Download the n8n sandbox workflow, import it into your n8n instance, and click Execute Workflow. This demonstrates routing, not real prospect discovery. No Crawdar account, key, AI-model subscription, or CRM credentials are needed. You still need n8n itself.
It fetches three fictional businesses, keeps source evidence and sandbox labels attached, and sends two explicitly qualified examples down one branch and one uncertain example to review. No emails, CRM writes or scheduled scans. Changing the brief only changes fixture labels, not real research. A qualified status is not a guarantee of fit: review the underlying evidence before consequential use.
Verified September 6, 2026 by importing and executing the exact JSON in n8n 2.37.10 with Node 24.20.0. Assertions passed for the 2/1 branch split, retained evidence and sandbox markers, and zero search-provider requests. This is a founder-maintained example, not an n8n-approved gallery template or a live-search accuracy benchmark.
For real research, follow the agent guide and use authenticated durable searches with rate-limit handling. Do not simply change the sandbox URL and assume the workflow handles job polling, pagination or paid usage.
Free agent identity
Before creating a key, you can inspect the API with the Postman sandbox collection. Import the JSON into Postman, or run it locally with Node.js and Newman:
npx --yes newman@6.2.1 run https://raw.githubusercontent.com/eliottreich/crawdar-mcp/main/examples/crawdar-sandbox.postman_collection.json --timeout-request 20000 --timeout 60000 --bailThe command downloads the pinned Newman runner and public collection. No Crawdar or Postman account is needed for this CLI route. The collection only calls the fictional sandbox, makes three requests, and checks the response format, preserved uncertainty, source links and validation errors. It does not measure real lead quality or send messages. Verified September 6, 2026 with Newman 6.2.1: 13 assertions passed. Postman desktop import has not been separately tested.
Create an optional free API key:
curl -X POST https://crawdar.com/api/v1/keys \
-H 'content-type: application/json' \
-d '{"label":"My research agent"}'Pass the returned key as x-api-key or Authorization: Bearer. The secret is shown once.
Contracts and documentation
Portable research skill: instructions for evidence review, private tokens, error handling and exports. No automatic outreach.
Smithery listing: optional distribution route. Smithery requires its own authentication; a Crawdar key is separate. Its Connect API was tested with fictional sandbox results on September 6, 2026. CLI 1.2.0 connection commands returned 404 in that check, so use the direct MCP endpoint above or Smithery's documented Connect API.
Public information can be incomplete or outdated. Keep evidence URLs attached and verify records before outreach or another consequential action.
Available Tools
9 toolscancel_lead_searchCancel a lead searchADestructiveIdempotent
Cancel a queued or running search job. Completed and failed jobs remain immutable.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Queued or running job id. | |
| jobToken | Yes | Private token belonging to the job. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| status | Yes | |
| canceledAt | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already flag destructiveHint and idempotentHint. The description adds useful behavioral context: only queued or running jobs are affected, and completed/failed jobs are immutable, which clarifies why the operation is idempotent for terminal states.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences deliver the action, the resource scope, and an important caveat without any filler. The main verb and target are front-loaded, making the purpose immediately clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, both required parameters fully documented, and annotations covering safety profile, the description provides everything an agent needs to invoke cancellation appropriately. The immutability caveat covers edge cases of completed/failed jobs.
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 provides full descriptions for both required parameters (id and jobToken) with 100% coverage. The description adds no additional parameter-specific meaning, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Cancel') and resource ('search job'), and further narrows scope to 'queued or running' jobs. This clearly distinguishes it from sibling tools like start_lead_search or get_lead_search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when cancellation is valid by noting 'Completed and failed jobs remain immutable', which serves as a when-not. However, it does not explicitly name alternatives or direct the agent to a different tool for other job states.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
explain_crawdarExplain Crawdar searchARead-onlyIdempotent
Get result semantics, limits, interface URLs, and safe operating guidance. This tool does not consume a search.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| guidance | Yes | |
| interfaces | Yes | |
| resultLanes | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds a meaningful behavioral trait: 'does not consume a search.' This goes beyond the annotations by clarifying that the tool performs no search operation, which is important context. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no redundancy. The first sentence front-loads the core purpose, and the second adds a clarifying limitation. Every word earns its place, making it efficient and easy to parse.
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 zero parameters and an output schema, the description covers the essential information: what the tool returns (semantics, limits, URLs, guidance) and what it does not do (consume a search). An agent can confidently use this tool to obtain operational context for the search tools, and nothing critical is missing.
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 tool has zero parameters, so the baseline is 4. The description does not need to explain parameter semantics, and the schema confirms no parameters exist. The description appropriately focuses on the tool's function rather than parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific purpose: to retrieve result semantics, limits, interface URLs, and safety guidance. It explicitly distinguishes itself from search operations with 'This tool does not consume a search.' This clearly differentiates it from the sibling search tools and gives an agent a precise understanding of what it does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by stating what it provides and clarifying it does not consume a search. This sets a clear boundary versus the sibling search tools, though it doesn't explicitly state 'use this when you need to understand the search tool' or provide alternative conditions. The context is clear enough for an agent to infer when to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_lead_searchGet a lead search pageARead-onlyIdempotent
Read job status or one cursor-paginated result page. Keep jobToken private and pass nextCursor back unchanged.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Job id returned by start_lead_search, refine_lead_search, or retry_lead_search. | |
| view | No | Compact minimizes tokens. Full retains detailed evidence fields. | compact |
| limit | No | Maximum prospects in this result page. | |
| cursor | No | Opaque nextCursor from the previous response. | |
| jobToken | Yes | Private token returned with the job. Do not log or share it. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| error | No | |
| status | Yes | |
| results | No | |
| progress | No | |
| returned | No | |
| warnings | No | |
| createdAt | No | |
| errorCode | No | |
| nextCursor | No | |
| retryAfter | No | |
| completedAt | No | |
| diagnostics | No | |
| resultCount | No | |
| searchedSources | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the operation as read-only, idempotent, and non-destructive. The description adds valuable behavioral detail beyond that: the tool returns either job status or a paginated page, jobToken must be kept private, and cursor must be passed back unchanged. No contradiction with annotations exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences front-load the core purpose and then give the two essential operational cautions. There is no filler or redundant restatement of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, annotations providing the safety profile, and full parameter documentation, the description supplies the missing high-level semantics: status/page duality, opaque cursor chaining, and token privacy. An agent has enough information to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the schema already documents id provenance, view behavior, limit bounds, cursor opacity, and jobToken privacy. The description's 'keep jobToken private' and 'pass nextCursor back unchanged' largely echo schema text, with only the 'unchanged' nuance adding slight extra meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Read') and resource ('job status or one cursor-paginated result page'). This clearly distinguishes it from sibling tools like start_lead_search, refine_lead_search, retry_lead_search, and cancel_lead_search, which create, modify, or cancel jobs rather than read results.
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 clearly frames the tool as a retrieval and pagination operation, and the instruction to pass nextCursor back unchanged gives concrete usage context. It does not explicitly name alternatives or exclusions, but the sibling tool set makes the retrieval-versus-creation contrast obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
refine_lead_searchRefine a lead searchA
Create a new private search job by changing the brief or criteria of a completed job. The original job stays unchanged.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Completed source job id returned by an earlier durable search call. | |
| brief | No | Replacement natural-language brief for the new job. | |
| limit | No | Maximum prospects retained by the new job. | |
| fields | No | Business fields to retain. Website and source evidence remain available for verification. | |
| target | No | Replacement business target for the new job. | |
| jobToken | Yes | Private token belonging to the source job. | |
| geography | No | Replacement city, region, country, or Worldwide. | |
| qualifier | No | Replacement public requirements and exclusions. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Stable job identifier. Use it with jobToken in every lifecycle call. |
| status | Yes | Current durable job state. |
| cacheHit | No | |
| jobToken | No | Private bearer token required to read, refine, or export this job. |
| retryUrl | Yes | Authenticated REST URL for creating a replacement after retryable failure. |
| cancelUrl | Yes | Authenticated REST URL for canceling queued or running work. |
| exportUrl | Yes | Authenticated CSV export URL. Add format=json for JSON. |
| statusUrl | Yes | Authenticated REST URL for job status and result pages. |
| resultCount | No | |
| expiresInSeconds | Yes | Seconds until the private job and token expire. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly=false, destructive=false, and idempotent=false. The description adds that the original job remains unchanged, but it does not disclose persistence behavior, asynchronous job polling, rate limits, or other side effects beyond creating a new job.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence with no filler. It front-loads the core action and key constraint, making it easy to parse quickly.
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 schema and annotations cover the parameter and safety landscape, and the description gives the essential purpose. However, it omits lifecycle context such as how to retrieve the resulting job or whether it is asynchronous, which would be useful given the job-based nature of the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and each parameter has a clear one-line description. The tool description itself adds no additional meaning beyond what the input schema already provides, so the baseline score applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Create'), a distinct resource ('new private search job'), and a unique action ('by changing the brief or criteria of a completed job'). The explicit non-destructive outcome ('The original job stays unchanged') further disambiguates it from similar lead-search tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when refining a completed lead search and clearly frames the action, but it does not explicitly name alternatives such as start_lead_search or retry_lead_search, nor does it provide direct 'when not to use' guidance. Context is present but not fully explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_businessesResearch businesses from a briefARead-only
Use for a quick synchronous search when the user supplies one natural-language brief and can wait for results in the current tool call. For durable progress, retry, export, or large agent workflows, use start_lead_search instead.
| Name | Required | Description | Default |
|---|---|---|---|
| brief | Yes | Example: Independent veterinary clinics in Berlin with an active first-party website. Exclude directories and chains. | |
| limit | No | Maximum businesses in this response page. | |
| fields | No | Business fields to retain. Website and source evidence remain available for verification. | |
| offset | No | Zero-based result offset for this response page. | |
| output | No | Compact minimizes tokens. Full preserves every returned field. | compact |
| geography | No | Optional explicit geography. Use when the brief does not make location clear. | |
| includeDiagnostics | No | Include source status and explained exclusions. |
Output Schema
| Name | Required | Description |
|---|---|---|
| limit | Yes | Maximum prospects requested for this page. |
| offset | Yes | Zero-based offset of this page. |
| hasMore | Yes | Whether another result page is available. |
| results | Yes | |
| warnings | Yes | Limitations the agent should retain with downstream data. |
| requestId | Yes | Request identifier for support and diagnostics. |
| durationMs | No | |
| nextOffset | No | Offset for the next synchronous result page, or null when complete. |
| diagnostics | No | Source status and explained candidate exclusions. |
| resultCount | Yes | Total accepted prospects before response pagination. |
| returnedCount | Yes | Prospects returned in this response page. |
| schemaVersion | Yes | Version of the result contract. |
| searchedSources | Yes | Discovery and first-party source types consulted. |
| remainingFreeSearches | No |
TDQS
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 the synchronous, quick nature and the contrast with the durable asynchronous sibling, which is valuable context beyond the annotations. It does not contradict annotations and provides the expected call-time behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste. The primary use case is front-loaded in the first sentence, and the alternative is clearly stated in the second. It is concise, structured, and every word contributes to the agent's decision.
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 complexity (7 parameters, 1 required) and the presence of a detailed input schema and output schema, the description is sufficient. It explains the synchronous nature and the routing to the async sibling. It does not cover pagination or output details, but those are already in the schema, and the description provides the key decision guidance for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and all seven parameters have detailed descriptions (e.g., brief example, limit bounds, fields enum). The description does not add parameter-specific semantics but reinforces that the brief is a natural-language query. With full schema coverage, a baseline of 3 is appropriate; the description adds no extra meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('research') and resource ('businesses'), and immediately defines the scope: a quick synchronous search from a natural-language brief. It distinguishes itself from start_lead_search by naming the alternative, making it clear this tool is for immediate results in the current call. No ambiguity.
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 explicitly says 'Use for a quick synchronous search when the user supplies one natural-language brief and can wait for results in the current tool call' and then explicitly routes other workflows ('durable progress, retry, export, or large agent workflows') to start_lead_search instead. This gives both when-to-use and when-not-to-use guidance with a named alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
retry_lead_searchRetry a stopped lead searchA
Create a replacement job when a prior job failed or exceeded its execution window. The original job stays available for audit.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Failed or timed-out source job id. | |
| jobToken | Yes | Private token belonging to the source job. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Stable job identifier. Use it with jobToken in every lifecycle call. |
| status | Yes | Current durable job state. |
| cacheHit | No | |
| jobToken | No | Private bearer token required to read, refine, or export this job. |
| retryUrl | Yes | Authenticated REST URL for creating a replacement after retryable failure. |
| cancelUrl | Yes | Authenticated REST URL for canceling queued or running work. |
| exportUrl | Yes | Authenticated CSV export URL. Add format=json for JSON. |
| statusUrl | Yes | Authenticated REST URL for job status and result pages. |
| resultCount | No | |
| expiresInSeconds | Yes | Seconds until the private job and token expire. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description makes the mutation explicit ('Create a replacement job') and adds a side effect detail (original stays for audit). It does not mention idempotency or permissions, but the annotations already cover the read-only and destructiveness hints, and the description aligns with them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, concise and to the point, with no unnecessary details or repetition. It is well-structured and front-loads the core purpose.
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 description is complete enough given the output schema exists and the parameters are well-described. It does not cover error cases or output details, but these are not required for a tool of this simplicity.
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?
Both parameters have descriptions in the schema that add meaning: 'id' is 'Failed or timed-out source job id' and 'jobToken' is 'Private token belonging to the source job'. This exceeds simple name-based inference.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the action ('Create a replacement job') and the specific object ('replacement job'), and distinguishes it from siblings by noting the original job stays for audit. It is clear and specific.
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 explicitly states when to use it ('when a prior job failed or exceeded its execution window'), providing a clear condition. It does not explicitly name alternatives, but the condition sufficiently guides usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sandbox_businessesTest the Crawdar contractARead-onlyIdempotent
Return deterministic fictional businesses without consuming provider capacity. Use this to test schemas, clients, and agent loops.
| Name | Required | Description | Default |
|---|---|---|---|
| target | No | Fictional business type echoed into deterministic test results. | |
| geography | No | Fictional location echoed into deterministic test results. |
Output Schema
| Name | Required | Description |
|---|---|---|
| limit | Yes | Maximum prospects requested for this page. |
| offset | Yes | Zero-based offset of this page. |
| hasMore | Yes | Whether another result page is available. |
| results | Yes | |
| warnings | Yes | Limitations the agent should retain with downstream data. |
| requestId | Yes | Request identifier for support and diagnostics. |
| durationMs | No | |
| nextOffset | No | Offset for the next synchronous result page, or null when complete. |
| diagnostics | No | Source status and explained candidate exclusions. |
| resultCount | Yes | Total accepted prospects before response pagination. |
| returnedCount | Yes | Prospects returned in this response page. |
| schemaVersion | Yes | Version of the result contract. |
| searchedSources | Yes | Discovery and first-party source types consulted. |
| remainingFreeSearches | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description clearly indicates the tool returns fictional deterministic data and has no provider-side consumption, aligning with the readOnlyHint annotation. It also implies idempotency through 'deterministic' and is consistent with the destructiveHint false annotation. No behavioral contradictions are present.
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 tightly written in two sentences with no redundant wording. It front-loads the primary purpose and immediately follows with concrete usage guidance.
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 annotations, input schema, output schema, and sibling tool context, the description covers all essential information an agent needs: purpose, behavior, parameters, and safe usage. There are no missing critical details.
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?
Both parameters are described with their meaning and role in generating deterministic test results. The schema coverage is 100%, and the description adds that values are 'echoed' into results, clarifying how the parameters affect output.
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 uses a specific verb ('Return') and clearly identifies the resource as deterministic fictional businesses. It also distinguishes this tool from production data tools by noting it does not consume provider capacity and is intended for testing schemas, clients, and agent loops.
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 explicitly states when to use the tool: 'Use this to test schemas, clients, and agent loops.' This provides clear guidance on the intended scenario and helps differentiate it from the sibling search/research tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_businessesSearch businesses with structured criteriaARead-only
Use for a quick synchronous search when target, geography, and qualification fields are already structured. Use research_businesses for a plain-language brief, or start_lead_search for durable asynchronous work.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum businesses in this response page. | |
| fields | No | Business fields to retain. Website and source evidence remain available for verification. | |
| offset | No | Zero-based result offset for this response page. | |
| output | No | Compact minimizes tokens. Full preserves every returned field. | compact |
| target | Yes | Business type or concise target. | |
| geography | Yes | City, region, country, or Worldwide. | |
| qualifier | No | Optional required signals and exclusions that can be checked in public evidence. | |
| includeDiagnostics | No | Include source status and explained exclusions. |
Output Schema
| Name | Required | Description |
|---|---|---|
| limit | Yes | Maximum prospects requested for this page. |
| offset | Yes | Zero-based offset of this page. |
| hasMore | Yes | Whether another result page is available. |
| results | Yes | |
| warnings | Yes | Limitations the agent should retain with downstream data. |
| requestId | Yes | Request identifier for support and diagnostics. |
| durationMs | No | |
| nextOffset | No | Offset for the next synchronous result page, or null when complete. |
| diagnostics | No | Source status and explained candidate exclusions. |
| resultCount | Yes | Total accepted prospects before response pagination. |
| returnedCount | Yes | Prospects returned in this response page. |
| schemaVersion | Yes | Version of the result contract. |
| searchedSources | Yes | Discovery and first-party source types consulted. |
| remainingFreeSearches | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds useful context by characterizing the call as quick and synchronous, and there is no contradiction with 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, front-loaded with the primary use case, and efficiently contrasts sibling tools without unnecessary detail.
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 description, combined with the parameter schema and annotations, provides enough context for invoking a synchronous search and interpreting paging-related outputs. It could mention return shape more explicitly, but the output enum and parameter descriptions cover the essentials.
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 descriptions cover 100% of parameters, so the baseline applies. The tool description does not add much beyond the schema, though it does reinforce that target, geography, and qualifier are the structured search fields.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses the specific verb 'search' and identifies the resource 'businesses.' It clearly distinguishes from siblings by noting the structured-criteria synchronous use case versus research_businesses for plain-language briefs and start_lead_search for durable async work.
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?
Explicitly states when to use the tool: quick synchronous search when target, geography, and qualification fields are already structured. It also names alternatives for different scenarios, leaving little ambiguity about selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_lead_searchStart a durable lead searchA
Use for the recommended durable asynchronous workflow. Creates a private queued search job and returns a job id plus jobToken for progress polling, cursor paging, refinement, retry, cancellation, and CSV or JSON export.
| Name | Required | Description | Default |
|---|---|---|---|
| brief | No | Natural-language business, geography, required signals, and exclusions. Use this instead of separate target and geography. | |
| limit | No | Maximum accepted prospects retained by the job. | |
| fields | No | Business fields to retain. Website and source evidence remain available for verification. | |
| target | No | Business type or concise ideal-customer target. Pair with geography when brief is omitted. | |
| geography | No | City, region, country, or Worldwide. Required with target when brief is omitted. | |
| qualifier | No | Publicly verifiable requirements and exclusions. | |
| idempotencyKey | No | Stable key for safely retrying the same job creation request. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Stable job identifier. Use it with jobToken in every lifecycle call. |
| status | Yes | Current durable job state. |
| cacheHit | No | |
| jobToken | No | Private bearer token required to read, refine, or export this job. |
| retryUrl | Yes | Authenticated REST URL for creating a replacement after retryable failure. |
| cancelUrl | Yes | Authenticated REST URL for canceling queued or running work. |
| exportUrl | Yes | Authenticated CSV export URL. Add format=json for JSON. |
| statusUrl | Yes | Authenticated REST URL for job status and result pages. |
| resultCount | No | |
| expiresInSeconds | Yes | Seconds until the private job and token expire. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Description discloses that it creates a job, is asynchronous and queued, and returns identifiers for subsequent operations; consistent with annotations (idempotentHint=false, readOnlyHint=false).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with usage recommendation, then concise feature list; no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Provides purpose, async nature, return identifiers, and downstream capabilities; since output schema exists, no need to detail return fields.
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 already covers all parameters with descriptions; description adds high-level workflow context but does not detail parameter usage, so baseline 3.
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?
States a specific verb 'creates' and resource 'private queued search job', and positions it as the recommended durable asynchronous workflow, distinguishing it from synchronous siblings.
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?
Explicitly says 'Use for the recommended durable asynchronous workflow' and enumerates downstream capabilities (polling, paging, refinement, retry, cancellation, export), signaling when to choose this tool; however, it does not explicitly name sibling tools for contrast.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
9 tool updates
v1.0.0- First observed
cancel_lead_search - First observed
explain_crawdar - First observed
get_lead_search - First observed
refine_lead_search - First observed
research_businesses - First observed
retry_lead_search - First observed
sandbox_businesses - First observed
search_businesses - First observed
start_lead_search
TDQS
Most tools have clear, distinct purposes: synchronous vs asynchronous search, sandbox, and explain. The overlap between research_businesses and search_businesses is somewhat subtle but resolved by the explicit distinction between natural-language briefs and structured criteria.
All tool names follow a consistent snake_case action_object pattern (research_businesses, start_lead_search, cancel_lead_search), making their behavior predictable. Even explain_crawdar fits the convention.
Nine tools is well-scoped for a business-research service: it covers synchronous search, async job lifecycle, sandbox testing, and explanatory metadata without excess or redundancy.
The tool surface covers the full search workflow—immediate sync queries, durable async jobs, refinement, retry, cancellation, status/result reading, and safe testing—plus an explain tool for interface guidance. No obvious gaps remain.
Maintenance
Related MCP Connectors
Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.
Verified business OSS MCP for search, RSS, crawling, documents, browser, media and transcription.
51Stealth scraping & search. Bypasses Cloudflare, DataDome & LinkedIn via Cyborg HITL approach.
One MCP for the Web. Easily search, crawl, navigate, and extract websites without getting blocked.…
Related MCP Servers
AlicenseBqualityAmaintenanceHosted MCP server for structured public web data — 319 tools across search, maps, commerce, social & finance, returning clean JSON.85005361MIT- AlicenseNot gradedqualityCmaintenanceOpen-source technical SEO crawler MCP server built on LibreCrawl. Runs full audits inside Claude, Cursor, or Codex — 50+ checks (hreflang, schema.org, security headers, WAF detection on 200-OK pages), chunked-progressive engine for large sites, ephemeral by design (server forgets every audit after download).39MIT
- FlicenseAqualityCmaintenanceMCP server for real-time public-web lead research without search API keys, using Google Maps and web search engines with LLM-based extraction, crawling, and local lead storage/export.8-
- AlicenseNot gradedqualityCmaintenance20-tool MCP server - production web-intelligence API gateway exposing 10 Website Intelligence + 7 Marketing APIs as 20 MCP tools over Streamable HTTP + stdio, with pay-per-call Solana USDC payments. 20 tools: URL-to-Markdown, metadata, technology detection, contact extraction, SEO audit, SSL, DNS, sitemaps, robots.txt, Google Maps reviews, AI company/website summaries, citation checking Cloud-hostMIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eliottreich/crawdar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server