Skip to main content
Glama

LocalPro — Verified US Local Service Provider Data

Server Details

Verified US local service providers across 10 home-services trades. Owned data, no API key.

Ownership verified
Status
Healthy
Uptime
100.0% over 40 days
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL
Repository
LocalProDev/mcp-server
GitHub Stars
1
Server Listing
LocalPro MCP Server

TDQS

A4.4/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct role: list_niches, list_cities, and list_service_types are discovery/enumeration tools; search_providers performs queries; get_provider retrieves a single provider detail. There is no functional overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: list_* for discovery endpoints, search_providers for querying, and get_provider for detail retrieval. The naming is predictable and makes the purpose of each tool immediately clear.

Tool Count5/5

Five tools is a well-scoped set for this domain. Every tool serves a necessary step in the workflow: discovering niches, cities, and service types, then searching and retrieving provider details, with no redundant tools.

Completeness5/5

The tool set provides a complete lifecycle for working with the provider directory: list_niches → list_cities/list_service_types → search_providers → get_provider. There are no obvious missing operations or dead ends for the stated purpose of accessing verified local service provider data.

Available Tools

5 tools
get_providerAInspect

Get a detailed summary of a specific verified service provider. Returns business description, services, pricing summary, coverage area, service details, and a link to the full profile page. With a valid API key (X-API-Key header): also returns full pricing breakdown and certifications. Without a key: returns pricing_summary and a pro_available flag. Contact details (phone, email, address) are available on the listing page via listing_url.

ParametersJSON Schema
NameRequiredDescriptionDefault
niche_idYesNiche ID (e.g. "coated-local"). Must match the niche used in search_providers.
provider_slugYesProvider URL slug from search_providers results (e.g. "abc-coatings")

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description discloses important behavior: responses differ with an API key (full pricing/certifications vs summary/flag), and contact details are only on the listing page via listing_url. It does not mention error/not-found cases, but the auth-dependent behavior and data exclusions are transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences: purpose, return fields, and auth-dependent behavior. Each sentence earns its place, though the field list in sentence two is slightly dense. It is front-loaded with the main verb and object.

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?

The description fully explains return values, API key variations, and where to find contact details, which substitutes for the missing output schema. For a read tool with two parameters, this is a complete self-contained description.

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?

The input schema already describes both parameters with examples and 100% coverage. The description adds no extra parameter semantics, so the baseline score of 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 uses a specific verb ('Get') and resource ('a specific verified service provider'), clearly indicating a single-provider lookup. It distinguishes itself from sibling tools like search_providers by emphasizing specificity and detail.

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 word 'specific' implies this tool is used after identifying a provider (e.g., via search_providers), and the schema reinforces matching niche_id. However, the description does not explicitly name alternatives or state 'use this instead of search_providers', so it is clear 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.

list_citiesAInspect

List available cities and metro areas where verified providers operate for a given niche. Use this to discover valid city slugs before calling search_providers. Cities are grouped by metro area where applicable (e.g. "minneapolis-mn" covers Minneapolis, St. Paul, and surrounding suburbs). Optionally filter by state abbreviation.

ParametersJSON Schema
NameRequiredDescriptionDefault
stateNoTwo-letter state abbreviation to filter by (e.g. "MN", "CO")
niche_idYesNiche ID from list_niches (e.g. "coated-local", "radon-local")

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses key behavioral traits: cities are grouped by metro area (e.g., 'minneapolis-mn' covers suburbs), and the list is limited to areas where verified providers operate. It does not cover output format or pagination, but the grouping and verification details add value beyond the schema.

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, each with a clear purpose: state the operation, indicate usage, and explain grouping/filtering. It is front-loaded with the main purpose and contains no filler.

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 simple list tool with 2 parameters and no output schema, the description covers the essential context: what it lists, how to use it (before search_providers), and key output characteristics (city slugs, grouping). It could say more about return format or error handling, but given the low complexity, it is adequately 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?

The input schema already describes both parameters fully (100% coverage), so baseline is 3. The description adds little beyond noting that niche_id comes from list_niches (already in schema) and that state filtering is optional. It provides an example of a city slug in the description, but that's related to output rather than 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?

The description explicitly states the tool's function: 'List available cities and metro areas where verified providers operate for a given niche.' It uses a specific verb ('list') and resource ('cities and metro areas'), and differentiates from sibling search_providers by stating its role in discovering valid city slugs before that call.

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?

Provides clear context: 'Use this to discover valid city slugs before calling search_providers.' This tells the agent when to use the tool relative to a sibling. It does not explicitly mention when not to use or list alternatives, so it lacks full exclusion guidance, but the direction is explicit.

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

list_nichesAInspect

List all available service directories in the LocalPro network. This is the starting point for discovering what categories of verified local service providers are available. Categories include water damage restoration, foundation repair, crawl space repair, basement waterproofing, mold/asbestos/lead remediation, radon mitigation, septic services, commercial electrical, floor coating, and laundry pickup & delivery. Returns niche IDs needed for all other tools.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that the tool lists all available directories, lists example categories, and returns niche IDs. While it does not explicitly state 'read-only,' the verb 'list' implies a safe read operation. It adds value by explaining the output's purpose, though it omits details like pagination or exact response structure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized, with a clear opening sentence followed by useful context. The list of categories is lengthy but provides concrete examples, making it informative rather than wasteful. It is well-structured and front-loaded.

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 simple list tool with no parameters and no output schema, the description is complete: it states the purpose, gives examples of content, and mentions the return value (niche IDs). It could be more precise about the return format, but given the simplicity, it adequately covers what the agent needs to know.

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 tool has zero parameters, and the schema is empty, so there are no parameter semantics to document. Per the baseline for 0 parameters, a score of 4 is appropriate; the description adds context about what the IDs are for, which indirectly aids understanding of the (absent) parameters.

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 the tool's function with a specific verb and resource: 'List all available service directories in the LocalPro network.' It also explains its role as the starting point and enumerates specific categories, which distinguishes it from sibling tools like list_cities and search_providers.

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?

Explicit usage guidance is provided: 'This is the starting point for discovering what categories... are available' and 'Returns niche IDs needed for all other tools.' This tells the agent when to use this tool versus others and establishes it as a prerequisite.

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

list_service_typesAInspect

List the valid service type categories for a given niche directory. Use this before calling search_providers with a service_type filter to ensure you pass a valid value. Each niche has its own taxonomy — for example, "coated-local" has epoxy, polyaspartic, metallic_epoxy, etc., while "radon-local" has radon_testing, radon_mitigation, ssd_installation, etc.

ParametersJSON Schema
NameRequiredDescriptionDefault
niche_idYesNiche ID (e.g. "coated-local", "radon-local"). Get options from list_niches.

TDQS

A4.6/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden. It discloses that each niche has its own taxonomy and provides concrete examples of niches and their service types, which adds behavioral context beyond just the action. However, it doesn't specify behavior for invalid niche IDs or return format, a minor gap.

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?

Exactly three sentences: purpose, usage context, and examples. Front-loaded with the main action, no filler.

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 simple one-parameter listing tool with no output schema, the description covers purpose, usage guidance, and taxonomy variation. It references sibling tools appropriately. The only missing detail is the exact return format (e.g., array of strings), but that is implied.

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 schema already documents niche_id with examples and references list_niches (100% coverage). The tool description adds context by explaining the parameter's purpose in validating service_type filters and giving taxonomy examples, enhancing the schema 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 verb ('List') and resource ('valid service type categories for a given niche directory'), clearly distinguishing it from siblings like list_niches (niches) and search_providers (providers). It also mentions 'service type categories' which is unique to this tool.

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 instructs to use before search_providers with a service_type filter to ensure valid values. This provides a clear when-to-use and ties to the sibling tool, and implies it is not for general provider search.

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

search_providersAInspect

Search for verified local service providers across 10 trade categories: water damage restoration, foundation/slab repair, crawl space repair, basement waterproofing, mold/asbestos/lead remediation, radon mitigation, septic services, commercial electrical, floor coating (epoxy/polyaspartic), and laundry pickup & delivery. Returns provider name, LocalPro Rating, services offered, pricing summary, years in business, and a link to the full profile with contact details. Covers major US metro areas. Use list_niches first to get valid niche IDs, and list_service_types for valid service_type values.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity or metro area slug (e.g. "denver-co", "minneapolis-mn"). Get options from list_cities.
limitNoMax results to return (default 10)
niche_idYesNiche ID (e.g. "coated-local", "radon-local"). Get options from list_niches.
service_typeNoService type slug to filter by (e.g. "epoxy", "radon_testing"). Get valid values from list_service_types.

TDQS

A4.1/5.0
Behavior3/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It does disclose return fields and geographic coverage, but it does not explicitly state that this is a read-only operation, how results behave when city is omitted, or any error/limit conditions. This is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the action and resource, then efficiently packs categories, return fields, coverage, and prerequisites into four sentences. The category list is lengthy but necessary because it defines what niche_id values are valid.

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 search tool with four parameters and no output schema, the description covers required inputs, sources for valid values, result fields, and geographic scope. It could more explicitly state when to use get_provider for full profile/contact details, but the profile link implies that next step.

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 already documents all four parameters with examples and defaults, so the baseline is 3. The description adds value by listing the trade categories and explicitly directing the agent to list_niches and list_service_types for valid values, going beyond the schema's descriptions.

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 uses a specific verb ('Search') with a clear resource ('verified local service providers') and enumerates 10 trade categories. This clearly distinguishes it from sibling tools like get_provider, which fetches a single provider, and list_niches/list_service_types, which return reference data.

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 instructs the agent to use list_niches first for valid niche IDs and list_service_types for valid service_type values, giving clear prerequisite guidance. It also notes coverage of major US metro areas, but it does not explicitly say when to prefer get_provider over search_providers or state exclusions.

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. 5 tool updates
    • First observedget_provider
    • First observedlist_cities
    • First observedlist_niches
    • First observedlist_service_types
    • First observedsearch_providers

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    F
    maintenance
    The owner-verified local business data + service & menu-price layer for AI agents. Owner-authored business profiles where every response carries provenance — verification level, completeness score, freshness timestamps, and upstream sources. * Search & profiles — find businesses by name, category, city, or geo-radius; full profiles with contacts, hours, media, ratings. * Price layer
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Access ServiceGraph — a structured catalog of 100k+ US professional-services firms (law, marketing, consulting, accounting, IT services, architecture, engineering, HR, PR, design) with filters for industry, services offered, location, size, ratings, and third-party listing presence.
    62
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Retrieves vetted Local Services Ads businesses (Google Guaranteed or Screened) as clean JSON for any service and US city, enabling lead generation, local SEO monitoring, and competitor tracking.
    -
  • A
    license
    A
    quality
    B
    maintenance
    Country-agnostic MCP-callable directory for AI agents to find local SMBs — realtors, insurance agents, medical practitioners — by category, location, or natural-language query. Returns business catalog data and UTM-tagged booking URLs (zero PII).
    5
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.