ca_dmv_vehicle_registrations

Pack: ca-dmv · Endpoint: https://gateway.pipeworx.io/ca-dmv/mcp

Count vehicles registered in California from official DMV data, broken down by ZIP code, make, model year, fuel type or light/heavy duty. Each row is a count of registered vehicles from the California DMV “Vehicle Fuel Type Count by Zip Code” file, with annual snapshots back to 2019, so it answers “how many vehicles are registered in ZIP 90210”, “how many Toyotas are registered in California”, or “how many 2024-model-year vehicles are on California roads”. For electric-vehicle share of the fleet use ca_dmv_ev_adoption; for a DMV office address use ca_dmv_offices.

Parameters

NameTypeRequiredDescription
zipstringnoFive-digit California ZIP code, e.g. “90210”.
fuel_typestringnoFuel/drivetrain; plain words are mapped to California’s labels, e.g. “electric”, “diesel”, “gas”, “hybrid”, “plug-in hybrid”, “hydrogen”.
makestringnoVehicle make, matched as a substring, e.g. “TESLA”, “FORD”.
model_yearstringnoFour-digit model year, e.g. “2024”.
dutystringnoVehicle weight class: “Light”, “Heavy” or “Unk”.
yearstringnoSnapshot year, ${AVAILABLE_YEARS[0]}–${LATEST_YEAR}. Defaults to ${LATEST_YEAR} (the most recent).
group_bystringnoBreakdown dimension: fuel (default), zip, make, model_year, duty.
limitnumber,stringnoMax rows to return (default 25, max 200).

Example call

Arguments

{
  "zip": "94002"
}

curl

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

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ca_dmv_vehicle_registrations', {
  "zip": "94002"
});

More examples

{
  "group_by": "make",
  "limit": 10
}

Connect

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

{
  "mcpServers": {
    "ca-dmv": {
      "url": "https://gateway.pipeworx.io/ca-dmv/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 31, 2026