ca_dmv_driver_licenses

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

Count valid California driver licenses and identification cards held by residents of each county, as an annual series from 2008 onward. Answers “how many licensed drivers are in Los Angeles County”, “which California county has the most driver licenses”, or how a county’s licensed-driver count has changed over time. Counts people holding a license or ID card, which is a different question from how many vehicles are registered — for that use ca_dmv_vehicle_registrations.

Parameters

NameTypeRequiredDescription
countystringnoCounty name, matched as a substring, e.g. “Los Angeles”, “Alameda”.
yearstringnoFour-digit year between 2008 and 2024, e.g. “2024”. Defaults to the most recent published.
limitnumber,stringnoMax counties to return (default 30, max 60).

Example call

Arguments

{
  "county": "Los Angeles"
}

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_driver_licenses","arguments":{"county":"Los Angeles"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ca_dmv_driver_licenses', {
  "county": "Los Angeles"
});

More examples

{
  "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