pa_dmv_vehicle_registrations
Pack: pa-dmv · Endpoint: https://gateway.pipeworx.io/pa-dmv/mcp
Count all vehicles registered in Pennsylvania by county for a given quarter, from PennDOT Driver & Vehicle Services. Covers the entire registered fleet of every fuel type, returns a genuine statewide Pennsylvania total plus each county’s share of it, and carries the plug-in count alongside for context. Answers “how many vehicles are registered in Pennsylvania”, “how many cars are registered in Allegheny County”, “which Pennsylvania county has the most registered vehicles”, and quarterly trend questions via the year and quarter arguments (2023 onward). For the electric and hybrid breakdown by drivetrain use pa_dmv_ev_adoption.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
county | string | no | Pennsylvania county name, matched as a substring, e.g. “Allegheny”, “Montgomery”, “Philadelphia”. |
year | string | no | Registration year, one of ${YEARS.slice().sort().join(’, ’)}. Defaults to ${LATEST_YEAR}. |
quarter | string | no | Quarter of that registration year: “Q1”, “Q2”, “Q3” or “Q4”. Defaults to the latest quarter PennDOT has actually filed for that year. |
limit | number,string | no | Max counties to return (default 30, max 70). Pennsylvania has 67 counties. |
Example call
Arguments
{
"county": "Allegheny",
"year": "2026"
}
curl
curl -X POST https://gateway.pipeworx.io/pa-dmv/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pa_dmv_vehicle_registrations","arguments":{"county":"Allegheny","year":"2026"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pa_dmv_vehicle_registrations', {
"county": "Allegheny",
"year": "2026"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pa-dmv": {
"url": "https://gateway.pipeworx.io/pa-dmv/mcp"
}
}
}
See Getting Started for client-specific install steps.