Skip to main content
Glama
hubertino-app

Hubertino MCP Server

Official

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_results detail: "full", or in the download_export file.

Related MCP server: Outscraper MCP

Tools

Tool

What it does

API call

start_scrape

Starts a scrape for categories × locations. Uses credits.

POST /api/v1/scrapes

get_scrape

Returns status, progress, credits reserved and charged, and how many rows have an email, phone, etc.

GET /api/v1/scrapes/{id}

wait_for_scrape

Polls until the scrape is done or a timeout (default 50 s) passes. Sends progress notifications.

GET /api/v1/scrapes/{id}

list_scrapes

Lists your recent scrapes, optionally filtered by status.

GET /api/v1/scrapes

get_results

Returns lead rows as compact JSON, paged. Options: withEmailOnly, fields, detail.

GET /api/v1/scrapes/{id}/results

download_export

Saves a finished scrape as .xlsx or .csv on your computer.

GET /api/v1/scrapes/{id}/export

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

categories

string[]

Required. What to search for, e.g. ["dentist"]. 1–1,000 items, 1–120 characters each.

locations

string[]

Required. Cities, regions or zip codes. Include the country, e.g. "Austin, TX, United States". 1–10,000 items.

maxResults

integer

Required. Max places per search (per category × location pair), 1–500.

country

string

Optional Google edition code (us, gb, de, lt, ... 32 codes). If omitted, it is inferred from the locations.

enrichWebsite

boolean

Default true. Visits each business website to find an email. No extra credits.

enrichLinks

boolean

Default true. Collects social profiles and order/reservation links. No extra credits.

One scrape runs at most 2,000 searches (categories.length × locations.length).

Requirements

  • Node.js 20 or newer (npx must 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.

    1. Sign up at hubertino.com.

    2. 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-server

Add --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.js

Configuration

Variable

Required

Default

Purpose

HUBERTINO_API_KEY

yes

none

Your hub_live_... key. If it is missing, the server still starts and each tool explains how to set it.

HUBERTINO_API_URL

no

https://hubertino.com

API base URL. https://hubertino.com/api/v1 works too. Only https:// is accepted, except for localhost.

HUBERTINO_DOWNLOAD_DIR

no

~/Downloads, else the temp dir

Where download_export saves files.

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 × maxResults credits, 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 _status goes found → extracted → enriched.

  • Rate limit: 12 new scrapes per 5 minutes per account. Status, results and export calls are not rate limited.

  • Page size: get_results reads 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 with trimmed: true; keep paging from nextOffset, ask for fewer columns with fields, or use download_export to get everything.

  • Long scrapes: get_scrape and wait_for_scrape echo at most 25 categories/locations and add categoriesTotal / locationsTotal for longer lists. wait_for_scrape never runs more than about 8 s past its timeoutSeconds, 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 HUBERTINO_API_KEY; create or rotate one in Settings

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 list_scrapes

409

Not finished yet

Wait with wait_for_scrape, then retry

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/v1 endpoints listed above. It makes no other network calls and does no scraping itself.

  • download_export writes only hubertino-<scrape id prefix>.csv / .xlsx files 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 test

Publishing steps are in PUBLISHING.md.

License

MIT © Hubertino MB

Available Tools

6 tools
download_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoxlsx (default, Excel/Google Sheets) or csv.xlsx
scrapeIdYesThe scrape id returned by start_scrape or list_scrapes (a UUID).
directoryNoAbsolute directory to save into. Defaults to HUBERTINO_DOWNLOAD_DIR, else ~/Downloads, else the system temp directory.

TDQS

A4.5/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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)A
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoRows per page (1-1000, default 50).
detailNocompact (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
fieldsNoOnly 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.
offsetNoRows to skip (default 0). Use nextOffset from the previous page.
scrapeIdYesThe scrape id returned by start_scrape or list_scrapes (a UUID).
withEmailOnlyNoOnly return rows that have an email address. Filters within the requested page.

TDQS

A4.7/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 statusA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
scrapeIdYesThe scrape id returned by start_scrape or list_scrapes (a UUID).
includeSearchesNoAlso return the individual Google Maps searches (query, URL, result count). Can be long.

TDQS

A4.4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 scrapesA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many scrapes to return (1-200, default 20).
statusNoOnly return scrapes with this status.

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
countryNoOptional 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".
locationsYesWhere 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.
categoriesYesWhat 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.
maxResultsYesMaximum 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).
enrichLinksNoCollect social profiles and ordering/reservation links for each place. Default true, no extra credits.
enrichWebsiteNoVisit 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

A4.7/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 finishA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
scrapeIdYesThe scrape id returned by start_scrape or list_scrapes (a UUID).
timeoutSecondsNoHow long to wait before returning the current status (5-600, default 50).
pollIntervalSecondsNoSeconds between status checks (2-60, default 5).

TDQS

A4.4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 6 tool updatesv0.1.0
    • First observeddownload_export
    • First observedget_results
    • First observedget_scrape
    • First observedlist_scrapes
    • First observedstart_scrape
    • First observedwait_for_scrape

TDQS

A4.6/5.0

Scored across 6 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides 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 PyPI
    7
    MIT
  • A
    license
    B
    quality
    B
    maintenance
    Connects AI agents to Outscraper for business discovery, Google Maps intelligence, company and contact enrichment, review analysis, search, and structured web extraction.
    28
    260 npm
    4
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables 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.
    4
    27 npm
    3
    MIT