MCP server exposing 3 tools for shovels.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/shovels/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
shovels_address_search — Resolve a US address to Shovels records, each carrying a `geo_id` — the geolocation ID you pass to shovels_permits_search / shovels_contractors_search to scope those queries. Results are ordered by relevance in USPS notation. Example: shovels_address_search({ q: "1600 Pennsylvania Ave NW, Washington DC", _apiKey: "your-key" })shovels_permits_search — 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" })shovels_contractors_search — Search US construction contractors scoped to a location, with license, work history and aggregate job value. Requires a `geo_id` (state code, ZIP, or Shovels geo_id from shovels_address_search) plus a permit date range (permit_from / permit_to, YYYY-MM-DD). Job-value fields are returned in both cents and dollars. Example: shovels_contractors_search({ geo_id: "94103", permit_from: "2023-01-01", permit_to: "2024-12-31", contractor_name: "solar", _apiKey: "your-key" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/shovels/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io