Hubertino MCP Server
OfficialAllows AI agents to scrape Google Maps business leads via Hubertino by searching categories and locations, retrieving contact details, emails, social profiles, and exporting results as CSV or XLSX.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Hubertino MCP ServerScrape plumbers in Chicago with emails and export to CSV"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Hubertino MCP server: Google Maps leads for Claude, Cursor and other AI agents
@hubertino/mcp-server connects any Model Context Protocol client (Claude Desktop, Claude Code, Cursor, VS Code, ...) to Hubertino, a Google Maps lead scraper. Ask your assistant for "dentists in Austin with emails". It starts a scrape, waits for it to finish, and gives you the leads as a table or as a CSV/XLSX file.
It wraps Hubertino's authenticated public REST API (docs) and uses your own API key and credits.
What you get
Each lead is one Google Maps business. Only fields that have a value are returned:
Contact: name, category, phone, website, and an email found on the business's own website (
enrichWebsite).Social profiles: Facebook, Instagram, LinkedIn, X, YouTube (
enrichLinks).Location: address, city, state, postal code, country code, and a Google Maps link / place id.
Reputation: rating, review count, business status.
Extra fields (left out of compact results to save context): coordinates, opening hours, price range, service options, and order/reservation/menu links. Get them with
get_resultsdetail: "full", or in thedownload_exportfile.
Related MCP server: Outscraper MCP
Tools
Tool | What it does | API call |
| Starts a scrape for |
|
| Returns status, progress, credits reserved and charged, and how many rows have an email, phone, etc. |
|
| Polls until the scrape is done or a timeout (default 50 s) passes. Sends progress notifications. |
|
| Lists your recent scrapes, optionally filtered by status. |
|
| Returns lead rows as compact JSON, paged. Options: |
|
| Saves a finished scrape as |
|
There is also one prompt, build_lead_list, which runs the whole workflow for a business type and area.
start_scrape takes the same inputs and limits as the API:
Input | Type | Notes |
| string[] | Required. What to search for, e.g. |
| string[] | Required. Cities, regions or zip codes. Include the country, e.g. |
| integer | Required. Max places per search (per category × location pair), 1–500. |
| string | Optional Google edition code ( |
| boolean | Default |
| boolean | Default |
One scrape runs at most 2,000 searches (categories.length × locations.length).
Requirements
Node.js 20 or newer (
npxmust be on the PATH your MCP client uses).A Hubertino account and an API key. New accounts get 100 free credits, and the API is included on every plan, including the free one.
Sign up at hubertino.com.
Open Settings (/dashboard/settings) and create an API key. It starts with
hub_live_and is shown only once, so copy it straight away.
Install
Every client needs the same thing: run npx -y @hubertino/mcp-server with HUBERTINO_API_KEY set in its environment. Replace hub_live_your_key_here with your key.
Claude Desktop
Open Settings → Developer → Edit Config. This opens claude_desktop_config.json, which lives at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS and %APPDATA%\Claude\claude_desktop_config.json on Windows. Add:
{
"mcpServers": {
"hubertino": {
"command": "npx",
"args": ["-y", "@hubertino/mcp-server"],
"env": {
"HUBERTINO_API_KEY": "hub_live_your_key_here"
}
}
}
}Restart Claude Desktop. The Hubertino tools then show up in the tools menu.
A one-click bundle (hubertino-mcp.mcpb) can be built with npm run bundle and opened in Claude Desktop. It asks for the key in a form, so you don't edit any JSON.
Claude Code
claude mcp add hubertino -e HUBERTINO_API_KEY=hub_live_your_key_here -- npx -y @hubertino/mcp-serverAdd --scope user to make it available in every project. Run claude mcp list to check that it's connected.
Cursor
Add the server to ~/.cursor/mcp.json (all projects) or to .cursor/mcp.json (one project):
{
"mcpServers": {
"hubertino": {
"command": "npx",
"args": ["-y", "@hubertino/mcp-server"],
"env": {
"HUBERTINO_API_KEY": "hub_live_your_key_here"
}
}
}
}VS Code (GitHub Copilot agent mode)
Add this to .vscode/mcp.json. VS Code prompts for the key and stores it securely:
{
"inputs": [
{ "type": "promptString", "id": "hubertino-key", "description": "Hubertino API key (hub_live_...)", "password": true }
],
"servers": {
"hubertino": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@hubertino/mcp-server"],
"env": { "HUBERTINO_API_KEY": "${input:hubertino-key}" }
}
}
}Other clients / from source
Any MCP client that can launch a stdio server works. To run from a checkout:
git clone https://github.com/hubertino-app/hubertino-mcp.git
cd hubertino-mcp && npm install && npm run build
# then point your client at: node /absolute/path/to/hubertino-mcp/dist/index.jsConfiguration
Variable | Required | Default | Purpose |
| yes | none | Your |
| no |
| API base URL. |
| no |
| Where |
Example prompts
"Find dentists in Austin, TX with emails. 100 per search is enough."
"Build a list of plumbers and electricians in Leeds and York, UK, then save it as a CSV."
"Scrape roofing contractors in these zip codes: 78701, 78702, 78703. Show only the ones with an email and a website."
"How is my last scrape doing?"
"Show me page 2 of the results from my cafe scrape: name, phone and Instagram only."
"Which of my finished scrapes had the most results? Download it as Excel."
A typical run looks like this:
start_scrape {"categories":["dentist"],"locations":["Austin, TX, United States"],"maxResults":100}
-> {"id":"6f1c…","status":"queued","credits":"Reserved 100 credits … the rest is refunded automatically.", …}
wait_for_scrape {"scrapeId":"6f1c…"}
-> {"status":"done","resultCount":…,"creditsCharged":…,"coverage":{"total":…,"email":…}, …}
get_results {"scrapeId":"6f1c…","withEmailOnly":true,"limit":50}
-> {"total":…,"returned":…,"hasMore":true,"nextOffset":50,"rows":[{"name":"…","phone":"…","email":"…"}, …]}
download_export {"scrapeId":"6f1c…","format":"csv"}
-> {"path":"/Users/you/Downloads/hubertino-6f1c….csv","bytes":…}Credits, limits and errors
1 credit = 1 business delivered. When a scrape starts, Hubertino reserves
categories × locations × maxResultscredits, capped at your balance. When it finishes, you are charged only for rows actually delivered and the rest is refunded. If your balance is below the worst case, the scrape still runs but stops once the balance is used up. See pricing.Speed: a scrape takes minutes. Rows can be read while it runs (
partial: true). Each row's_statusgoesfound → extracted → enriched.Rate limit: 12 new scrapes per 5 minutes per account. Status, results and export calls are not rate limited.
Page size:
get_resultsreads up to 1,000 rows per call (default 50). To protect the model's context window, a page that would not fit in one tool response (about 50,000 characters) is cut short withtrimmed: true; keep paging fromnextOffset, ask for fewer columns withfields, or usedownload_exportto get everything.Long scrapes:
get_scrapeandwait_for_scrapeecho at most 25 categories/locations and addcategoriesTotal/locationsTotalfor longer lists.wait_for_scrapenever runs more than about 8 s past itstimeoutSeconds, even when the API answers slowly.Export: only available once status is
done.
Errors come back as tool errors with a next step, so the assistant can recover or tell you what to do:
HTTP | Meaning | What the tool says |
400 | Invalid input | The API's message naming the bad field |
401 | Missing/invalid key | Check |
402 | Not enough credits | Nothing was charged; top up at /dashboard/billing |
403 | Refused (e.g. email not verified) | The API's message |
404 | Unknown scrape id | Check the id with |
409 | Not finished yet | Wait with |
410 | Results no longer stored | Start a new scrape |
429 | Rate limited | Wait a few minutes before starting another scrape |
5xx | Temporarily unavailable | Retry in a minute |
timeout / network | No answer from Hubertino | Retry shortly |
If starting a scrape fails with a timeout, network error or 5xx, the scrape may still have been created. start_scrape then says to check list_scrapes before starting it again, so the same scrape is not run and charged twice.
Security and privacy
Your API key stays in your MCP client's config and is sent only as a Bearer header to the Hubertino API over HTTPS. The server never logs it or returns it in a response. Don't paste your key into the chat.
The server calls only the authenticated
/api/v1endpoints listed above. It makes no other network calls and does no scraping itself.download_exportwrites onlyhubertino-<scrape id prefix>.csv/.xlsxfiles into the chosen folder and never overwrites an existing file.Use lead data lawfully. Follow the privacy and anti-spam rules that apply to you and to the people you contact (for example GDPR, PECR, CAN-SPAM).
Development
npm install
npm run build # compile to dist/
npm test # type-check and run the node:test suites (mocked fetch; no network)
npm run smoke # spawn dist/index.js over stdio and list tools (set HUBERTINO_API_KEY for a live read-only call)
npm run bundle # build hubertino-mcp.mcpb (Claude Desktop / Smithery bundle)
# optional: compare mirrored limits with a local checkout of the Hubertino app
HUBERTINO_APP_DIR=/path/to/hubertino/app npm testPublishing steps are in PUBLISHING.md.
Links
API docs: https://hubertino.com/docs
Pricing: https://hubertino.com/pricing
Google Maps scraper: https://hubertino.com/google-maps-scraper
Affiliate program (25% recurring): https://hubertino.com/partners
License
MIT © Hubertino MB
Available Tools
6 toolsdownload_exportDownload scrape as CSV/XLSXA
Save a finished scrape as a spreadsheet file on this computer and return its path. The API serves the file itself (authenticated), so this tool downloads it rather than returning a link. Only works once the scrape status is done. The file uses the full column layout (every column, blanks where unknown). Files are never overwritten: an existing name gets a -1, -2... suffix.
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | xlsx (default, Excel/Google Sheets) or csv. | xlsx |
| scrapeId | Yes | The scrape id returned by start_scrape or list_scrapes (a UUID). | |
| directory | No | Absolute directory to save into. Defaults to HUBERTINO_DOWNLOAD_DIR, else ~/Downloads, else the system temp directory. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate non-read-only and non-idempotent, but the description adds crucial details: it downloads the file (authenticated), never overwrites (appends -1, -2 suffix), and returns the path. This goes beyond annotations to describe side effects and file handling.
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?
Three sentences, front-loaded with the core purpose, and each sentence adds value: main action, download behavior, precondition, and file naming. No fluff or 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 tool with 3 parameters and no output schema, the description covers the key aspects: what it does, when it works, how files are named, and the return value (path). It omits error cases but states the precondition clearly. With siblings present, it is sufficiently distinct and 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?
Schema description coverage is 100%, so parameters are well-documented in the schema. The description adds little about parameters beyond mentioning the full column layout (which is output-related). Baseline 3 is appropriate since the schema already handles semantics.
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 action ('Save a finished scrape as a spreadsheet file on this computer and return its path') with a clear resource and output. It distinguishes itself from siblings like get_results by explaining it downloads the file rather than returning a link.
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?
It provides a clear precondition ('Only works once the scrape status is done') and explains the download behavior. However, it does not explicitly mention alternatives or when not to use it, but the context implies it is for file retrieval versus data access.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_resultsGet scrape results (lead rows)ARead-only
Read a scrape's rows as compact JSON, one page at a time. Works while the scrape is running (partial rows) and after it is done. Long pages are cut short to fit one tool response (trimmed: true); keep paging from nextOffset. Each row is one business with only its populated fields, e.g. name, category, phone, email, website, address, city, state, postal_code, country_code, rating, reviews, business_status, company_facebook/instagram/linkedin/x/youtube, location_link, place_id and _status (found -> extracted -> enriched). Page with offset/nextOffset until hasMore is false. For a spreadsheet of every row use download_export instead of paging through thousands of rows.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Rows per page (1-1000, default 50). | |
| detail | No | compact (default) drops long or duplicate columns (coordinates, opening hours, internal ids, links to order/reserve) and shortens very long text; full returns every populated column. | compact |
| fields | No | Only return these columns, e.g. ["name","email","phone","website"]. Overrides detail. Available columns include query, name, category, phone, email, website, domain, company_facebook, company_instagram, company_x, company_youtube, company_linkedin, address, street, city, state, state_code, postal_code, country, country_code, latitude, longitude, plus_code, rating, reviews, business_status, price_range, service_options, working_hours, order_links, reservation_links, menu_link, location_link, place_id, google_id, cid, kgmid, _status. | |
| offset | No | Rows to skip (default 0). Use nextOffset from the previous page. | |
| scrapeId | Yes | The scrape id returned by start_scrape or list_scrapes (a UUID). | |
| withEmailOnly | No | Only return rows that have an email address. Filters within the requested page. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnlyHint, openWorldHint), the description reveals significant behavior: partial rows are visible while the scrape runs, long pages are trimmed with trimmed: true, rows include only populated fields, and _status transitions found -> extracted -> enriched. 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?
The key purpose is front-loaded in the first sentence, and each following sentence adds needed operational detail: when it works, trimming/paging, row shape, status progression, and the download_export alternative. There is no filler.
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?
Despite having no output schema, the description compensates by defining the row format (one business per row, populated fields only), the field vocabulary, the _status lifecycle, and pagination mechanics (nextOffset, hasMore, trimmed). This gives an agent enough to call and interpret results.
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 already has a clear description for limit, detail, fields, offset, scrapeId, and withEmailOnly. The description reinforces paging with nextOffset and mentions compact JSON, but it adds no parameter-level meaning beyond what the schema already provides, so baseline 3 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?
The description opens with a specific verb and resource: 'Read a scrape's rows as compact JSON, one page at a time,' which clearly distinguishes this from siblings like start_scrape and wait_for_scrape. It also explicitly contrasts itself with download_export for spreadsheet-download use cases, so the tool's role is unmistakable.
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?
It says exactly when to use this tool — to page through scrape rows, both while running and after completion — and when not to: 'For a spreadsheet of every row use download_export instead of paging through thousands of rows.' It also gives the paging pattern (offset/nextOffset until hasMore is false).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_scrapeGet scrape statusARead-only
Get one scrape's live status (queued, running, done, error), progress (stage, percent, searches done, places found/extracted), resultCount, credits reserved/charged, and coverage (how many delivered rows have an email, phone, website, socials...). Use it to check on a scrape without waiting; use wait_for_scrape to block until it finishes.
| Name | Required | Description | Default |
|---|---|---|---|
| scrapeId | Yes | The scrape id returned by start_scrape or list_scrapes (a UUID). | |
| includeSearches | No | Also return the individual Google Maps searches (query, URL, result count). Can be long. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark it read-only and open-world; the description adds meaningful behavioral context: it is live/non-blocking, and it enumerates what the status payload contains (queued/running/done/error, progress, resultCount, credits, coverage). It does not describe error behavior or response structure, but for a read-only status tool the annotations lower the bar.
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 no filler: the first defines the tool's output in a compact list, and the second states the usage rule and alternative. The key verb and resource appear first.
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 no output schema, the description compensates by listing the main return categories (status, progress, resultCount, credits, coverage). It also gives the core use case and alternative. It is slightly thin on exact response shape and error conditions, but the tool is simple enough that this is near-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?
Schema description coverage is 100%, so the schema fully documents scrapeId and includeSearches. The description adds no parameter-specific detail beyond implying the scrape is identified by ID; the baseline of 3 applies because the schema carries the parameter semantics.
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 'Get' plus a precise resource, 'one scrape's live status', and enumerates the fields returned (status, progress, resultCount, credits, coverage). It distinguishes itself from wait_for_scrape by naming it as the blocking alternative, so an agent can tell them apart.
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 when to use it: 'Use it to check on a scrape without waiting', and names the alternative wait_for_scrape for blocking. This is a clear usage rule and a sibling differentiation. It doesn't mention get_results/list_scrapes, but the tool's status-only scope makes those exclusions implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_scrapesList scrapesARead-only
List this account's most recent scrapes, newest first (the API keeps the latest 200): id, title, status, resultCount, credits charged and dates. Use it to find a scrape id or to reuse a finished scrape instead of paying for the same search again.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many scrapes to return (1-200, default 20). | |
| status | No | Only return scrapes with this status. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already signal readOnlyHint=true and openWorldHint=true. The description adds useful behavioral context beyond annotations: account scoping, newest-first ordering, the 200-item retention cap, and the specific fields returned. This is meaningful disclosure for a read-only list tool.
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 no filler. The first sentence front-loads the resource, ordering, bound, and returned fields; the second gives practical use cases. Every clause adds value.
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 list tool with no output schema, the description covers the essential return fields and the account/retention context. Combined with fully documented parameters and safety annotations, an agent has enough to invoke it correctly. It could mention pagination edges, but the 200 cap makes this a minor 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?
Schema description coverage is 100%, so both `limit` and `status` are already documented. The description adds little parameter-specific detail beyond reinforcing the 200 cap and status relevance. Baseline 3 is appropriate when the schema carries the parameter documentation burden.
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 and resource: 'List this account's most recent scrapes.' It adds ordering ('newest first'), a retention bound ('latest 200'), and names the exact fields returned. This clearly distinguishes it from sibling tools like start_scrape, get_results, and download_export.
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 gives two use cases: finding a scrape id and reusing a finished scrape 'instead of paying for the same search again,' which points to when listing is preferable to starting a new scrape. It does not enumerate all sibling alternatives, but the guidance is concrete and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_scrapeStart a Google Maps lead scrapeA
Start a Hubertino scrape that searches Google Maps for businesses and returns them as lead rows (name, category, phone, website, email, address, rating, reviews, social profiles). Use it for requests like "find dentists in Austin with emails" or "build a list of plumbers in Leeds". Every category is searched in every location: categories x locations searches, max 2000 per scrape. COSTS CREDITS: it reserves categories x locations x maxResults credits up front (capped at the balance), charges 1 credit per business actually delivered and refunds the rest. Confirm with the user before large scrapes. Returns the scrape id immediately (status queued); then call wait_for_scrape, then get_results or download_export. Limited to 12 new scrapes per 5 minutes per account.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | Optional Google edition (lower-case country code) used for the search: us, gb, ca, au, ie, de, fr, es, it, pt, nl, be, at, ch, se, no, dk, fi, pl, cz, lt, lv, ee, ro, hu, gr, br, mx, jp, in, nz, za. When omitted, Hubertino infers it from a country named in the locations and falls back to "us". | |
| locations | Yes | Where to search, one place per item: a city, region, neighbourhood or zip/postal code, e.g. ["Austin, TX, United States"], ["Vilnius, Lithuania"], ["90210, CA, USA"]. Include the country for the best match. Each category is searched separately in each location, so several smaller areas (neighbourhoods, zip codes) find more businesses than one big area. 1-10000 items, each 1-120 characters. categories.length x locations.length must be <= 2000. | |
| categories | Yes | What to search Google Maps for, one business type per item, e.g. ["dentist"], ["plumber", "HVAC contractor"]. Use the words a customer would type into Google Maps. 1-1000 items, each 1-120 characters. | |
| maxResults | Yes | Maximum places to collect PER SEARCH (per category x location pair), 1-500. Google Maps typically returns around 100 places per search; use 500 for "everything". This also sets the worst-case credit reservation: categories x locations x maxResults (1 credit = 1 place delivered). | |
| enrichLinks | No | Collect social profiles and ordering/reservation links for each place. Default true, no extra credits. | |
| enrichWebsite | No | Visit each business's own website to find a contact email (and social profiles). Default true, no extra credits. Keep it on whenever the user wants emails. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnly=false, non-idempotent), the description discloses substantial behavioral details: credit reservation and refund mechanics, charges per delivered business, the categories x locations cross-product limit, the 12-scrapes-per-5-minutes rate limit, and the requirement to confirm large scrapes with the user. This is exactly the kind of side-effect and cost context the annotations do not provide.
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 long but densely informative and front-loaded with the core purpose and examples. Cost behavior, rate limits, and next-step workflow are all essential for safely invoking this expensive operation, and no sentence is wasted.
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, credit costs, and absence of an output schema, the description is complete enough for an agent to invoke it correctly. It covers what it returns (scrape id, status queued), what will happen later (results/download), rate limits, credit accounting, and confirmation requirements.
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 each parameter already has a detailed description explaining meaning, constraints, and cross-field relationships. The description text reinforces the cross-product and credit behavior, but does not add significant new parameter semantics 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 names a specific action (start a Hubertino scrape), the resource (Google Maps businesses), and the output (lead rows with name, category, phone, website, email, and more). It clearly distinguishes itself from sibling tools like wait_for_scrape, get_results, and download_export by stating that this tool begins the scrape and returns an id.
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?
It gives concrete use-case examples like "find dentists in Austin with emails" and "build a list of plumbers in Leeds". It also explains the follow-up sequence: returns scrape id immediately, then call wait_for_scrape, then get_results or download_export, which tells the agent exactly when and how to use this tool relative to its siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wait_for_scrapeWait for a scrape to finishARead-only
Poll a scrape until it is done (or failed), or until timeoutSeconds passes, then return its status like get_scrape. If it is still running when the time is up, just call wait_for_scrape again. Sends MCP progress notifications when the client asks for them. Many MCP clients abort a tool call after about 60 seconds, so keep the default timeout unless you know yours allows more.
| Name | Required | Description | Default |
|---|---|---|---|
| scrapeId | Yes | The scrape id returned by start_scrape or list_scrapes (a UUID). | |
| timeoutSeconds | No | How long to wait before returning the current status (5-600, default 50). | |
| pollIntervalSeconds | No | Seconds between status checks (2-60, default 5). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the description doesn't need to restate safety. It adds value by disclosing that the tool sends MCP progress notifications when requested, and it mentions the practical client-abort behavior. This goes beyond the schema and annotations, giving the agent useful operational context.
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 three sentences with no fluff. It front-loads the core behavior, then gives usage guidance, and finishes with a timeout recommendation. Every sentence earns its place, and the structure is efficient.
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 (no output schema, three well-documented parameters), the description covers the essential loop behavior, timeout handling, progress notifications, and client constraints. It references get_scrape for the return format, which is acceptable since get_scrape is a sibling. It doesn't detail error cases or failure handling, but those are likely covered by the referenced get_scrape behavior, so the description is adequate for correct invocation.
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 100% coverage of all three parameters with clear descriptions. The description adds extra context not in the schema, specifically about timeoutSeconds: it warns that many clients abort after ~60 seconds and advises keeping the default unless the client supports more. This practical guidance helps the agent choose parameter values correctly, exceeding the schema's baseline.
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 a specific action: 'Poll a scrape until it is done (or failed), or until timeoutSeconds passes, then return its status like get_scrape.' It names the resource (scrape) and the result (status), and differentiates from get_scrape by using the waiting/polling behavior. This leaves no ambiguity about what the tool 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 provides clear context for when to use the tool (to wait for completion) and gives a practical loop strategy ('If it is still running when the time is up, just call wait_for_scrape again'). It also warns about client timeout limits and advises keeping the default timeout. However, it doesn't explicitly contrast with get_scrape as a non-waiting alternative, though the 'like get_scrape' reference implicitly distinguishes them.
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.
6 tool updates
v0.1.0- First observed
download_export - First observed
get_results - First observed
get_scrape - First observed
list_scrapes - First observed
start_scrape - First observed
wait_for_scrape
TDQS
Scored across 6 tools
Each tool serves a distinct step in the scrape workflow: starting, listing, status-checking, waiting, reading rows, and exporting. The only near-overlap is get_scrape vs wait_for_scrape, but the blocking/polling distinction is clearly described.
All tool names follow a consistent snake_case verb_noun pattern (start_scrape, list_scrapes, get_results, get_scrape, wait_for_scrape, download_export). The verbs are specific and match their actions.
Six tools is well-scoped for a scraping service: create, monitor, wait, retrieve, export, and list. Each tool earns its place without redundancy or bloat.
The tool surface covers the full lifecycle from starting a scrape to exporting results, including async status checks and partial result access. There are no obvious dead ends or missing operations for the stated domain.
Related MCP Connectors
Google Maps scraper that extracts business contact details: emails, phone numbers, addresses…
Local business lead extraction with email + phone enrichment from Google Maps.
B2B lead generation from Google Maps: search, dedupe and email-enrich businesses. Needs API key.
Google Maps business leads via Apify: name, phone, website, rating.
Related MCP Servers
AlicenseNot gradedqualityCmaintenanceProvides access to Outscraper's data extraction services for business intelligence, location data, and reviews across platforms like Google Maps, Amazon, and Yelp. It enables AI assistants to perform comprehensive web scraping tasks including contact information retrieval and geolocation services.12 PyPI7MIT
Outscraper MCPofficial
AlicenseBqualityBmaintenanceConnects AI agents to Outscraper for business discovery, Google Maps intelligence, company and contact enrichment, review analysis, search, and structured web extraction.28260 npm4MIT- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to search and scrape Google Maps places data (name, rating, address, etc.) directly without an API key.1-
- AlicenseAqualityBmaintenanceEnables AI assistants to scrape Google Maps business data (names, addresses, phones, emails, websites, ratings, etc.) through natural language queries, with tools for synchronous and asynchronous scraping and credit checking.427 npm3MIT