US State DMV

live GovernmentTransport

State motor-vehicle agency data: vehicle and EV registrations by county or ZIP, DMV office locators with per-office services, and live field-office wait times.

6 tools
0ms auth
free tier 50 calls/day

Tools

dmv_vehicle_registrations

Registered vehicle counts from state DMV/motor-vehicle-agency data: how many vehicles are registered in a county, ZIP code or whole state, broken down by fuel type, make, model year or vehicle class.

No parameters required.

Try it
dmv_ev_adoption

Electric-vehicle adoption from state DMV registration records: how many battery-electric and plug-in hybrid vehicles are registered in a place, which makes and models people actually own there, and wh

No parameters required.

Try it
dmv_wait_times

Live wait times at state DMV field offices, published by the agency itself: current average wait, longest wait, how many customers are queued, and whether each office is open right now. Available for

No parameters required.

Try it
dmv_offices

Find state DMV, BMV, MVA or driver-license offices with addresses, hours, phone numbers, coordinates and which services each location actually performs. Covers California (187 field offices with per-o

No parameters required.

Try it
dmv_ca_forms

Search the official California DMV forms catalog by topic and get the form name, its REG/DL form number and the page to download it from. Answers "which California DMV form transfers a title", "CA DMV

No parameters required.

Try it
dmv_ca_insurance_lookup

Look up an auto insurance company's NAIC code from the California DMV insurance-carrier list, matching on company name. Returns each matching insurer with its five-digit NAIC number, which California

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/us-dmv/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/us-dmv/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"dmv_vehicle_registrations","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("dmv_vehicle_registrations", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("state motor-vehicle agency data: vehicle and ev registrations by county or zip, dmv office locators with per-office services, and live field-office wait times");