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
| Name | Type | Required | Description |
|---|---|---|---|
county | string | no | County name, matched as a substring, e.g. “Los Angeles”, “Alameda”. |
year | string | no | Four-digit year between 2008 and 2024, e.g. “2024”. Defaults to the most recent published. |
limit | number,string | no | Max 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.