shovels_permits_search

Pack: shovels · Endpoint: https://gateway.pipeworx.io/shovels/mcp

Search US building permits scoped to a location. Requires a geo_id (a US state code like “CA”, a ZIP code, or a Shovels geo_id from shovels_address_search) plus a permit date range (permit_from / permit_to, YYYY-MM-DD). Monetary values (job_value, fees, market value) are returned in both cents and dollars. Example: shovels_permits_search({ geo_id: “CA”, permit_from: “2024-01-01”, permit_to: “2024-12-31”, property_type: “residential”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
geo_idstringyesLocation scope: a US state code (“CA”), a ZIP code (“94103”), or a Shovels geo_id from shovels_address_search.
permit_fromstringyesReturn permits that started on or after this date (YYYY-MM-DD).
permit_tostringyesReturn permits that started on or before this date (YYYY-MM-DD).
permit_tagsarraynoFilter by work-type tags (e.g. [“solar”,“roofing”]). Prefix a tag with ”-” to exclude it.
itemsstringno
permit_statusarraynoFilter by status: final, in_review, inactive, active.
itemsstringno
permit_qstringnoFree-text search over permit descriptions (max 50 chars).
property_typestringnoFilter by property type: residential, commercial, industrial, etc.
permit_min_job_valuenumbernoMinimum permit job value, in CENTS (dollars × 100).
contractor_namestringnoFilter permits by contractor name (partial match, min 3 chars).
sizenumbernoResults per page (1-100, default 50).
cursorstringnoPagination cursor from a previous response next_cursor.
include_countbooleannoInclude an approximate total_count on the first page (default false).
_apiKeystringyesShovels API key (X-API-Key). Sign up at ${SIGNUP_URL}

Example call

curl -X POST https://gateway.pipeworx.io/shovels/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"shovels_permits_search","arguments":{}}}'

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "shovels": {
      "url": "https://gateway.pipeworx.io/shovels/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 15, 2026