pa-dmv
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pa-dmvEV adoption in Allegheny County?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/pa-dmv
Pennsylvania DMV MCP — registered vehicles and electric-vehicle adoption by county and by ZIP code, from PennDOT Driver & Vehicle Services.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
Tools
pa_dmv_ev_adoption(county?, year?, quarter?, limit?)— battery-electric, plug-in hybrid, fuel-cell and conventional hybrid registrations for each of Pennsylvania's 67 counties in one quarter, with plug-in share and a genuine statewide total. Answers "how many EVs are registered in Pennsylvania", "EV share in Allegheny County", "which Pennsylvania county has the most electric vehicles".pa_dmv_vehicle_registrations(county?, year?, quarter?, limit?)— the whole registered fleet of every fuel type by county, with a statewide total and each county's share. Rides on the same layer, which carriesTOTAL_REGalongside the EV columns.pa_dmv_ev_adoption_by_zip(zip?, year?, quarter?, limit?)— the same drivetrain breakdown for ~1,830 Pennsylvania ZIP codes. Answers "how many EVs are registered in ZIP 19103", "which Pennsylvania ZIP code has the most electric vehicles".
Related MCP server: ca-dmv
Auth
Keyless.
Data sources
https://gis.penndot.pa.gov/gis/rest/services/opendata/evregistrationscounty/MapServer/0 — 67 counties × registration years 2023–2026. Attributes:
COUNTY_NAME,COUNTY_NUMBER,FIPS_COUNTY_CODE,DISTRICT_NO,PLANNING_PARTNER,REGISTRATION_YEAR, then per-quarterHEV_Q*,PHEV_Q*,BEV_Q*,FUEL_CELL_Q*,TOTAL_EV_Q*,TOTAL_REG_Q*,PCT_EV_Q*.https://gis.penndot.pa.gov/gis/rest/services/opendata/evregistrationszip/MapServer/0 — 7,328 records total, ~1,832 per registration year. Same quarter columns keyed on
ZIP.
Both layers have maxRecordCount 2000, so a full year fits in a single request and no
paging is needed. Latest published quarter as of 2026-07-29 is 2026 Q2.
Gotcha: quarters are COLUMNS, not rows
Each feature is one county (or ZIP) for one REGISTRATION_YEAR, carrying all four
quarters side by side as separate column groups. Quarters PennDOT has yet to file are
present as null columns. There is no row to filter on and no date field to sort by, so
"the latest data" means walking Q4 → Q1 looking for a quarter that actually carries
values.
pickQuarter() does that walk once for the whole result set, not per row. Picking a
quarter per row looks harmless on a single-county lookup and is a correctness bug on a
ranking: you end up comparing one county's Q2 against another's Q1 and summing the mix
into a "statewide total". A quarter is accepted only if at least half as many rows carry
it as carry the best-covered quarter, so one early-reporting straggler cannot drag the
whole answer forward.
Gotcha: hybrids sit outside TOTAL_EV
PennDOT's TOTAL_EV = BEV + PHEV + FUEL_CELL. Conventional hybrids (HEV) are reported
separately and are deliberately excluded — a Prius appears in hybrid_gasoline and
never in plug_in_vehicles. Verified across all 67 counties × both 2026 quarters: zero
mismatches between TOTAL_EV and BEV + PHEV + FUEL_CELL.
Gotcha: the ZIP layer's 2026 Q1 columns are wrong upstream
In the ZIP layer only, and in the 2026 Q1 column group only, PennDOT's own derived columns are broken two ways:
TOTAL_EV_Q1folds conventional hybrids in. ZIP 19103 publishesTOTAL_EV_Q11291 againstBEV_Q1314 +PHEV_Q1136 +HEV_Q1841 = 1291.PCT_EV_Q1is written as a fraction of that inflated number rather than a percent. ZIP 19103 publishes 0.14 where the plug-in share is 4.85%.
Every other year, quarter and layer is internally consistent. So this pack computes
plug_in_vehicles and ev_share_pct from the component columns everywhere rather than
reading TOTAL_EV / PCT_EV — which reproduces PennDOT's published values exactly
wherever those are sound (Montgomery County 2026 Q1 → 22,606 and 2.87, matching), and
quietly repairs them where they are not.
Gotcha: the ZIP file undercounts the state by ~0.5%
Summing every ZIP code gives 12,039,085 registered vehicles for 2026 Q2 against the county
layer's 12,098,320 — a few registrations carry no usable ZIP code. pa_dmv_ev_adoption
(county layer) is the authoritative statewide number; the ZIP tool labels its own sums
zip_file_total_vehicles rather than claiming a state total.
Verified figures (checked 2026-07-29)
Query | Result |
| BEV 16,243 · PHEV 6,363 · plug-in 22,606 · HEV 45,763 · total 788,762 · share 2.87% |
| plug-in 19,350 · total 965,589 |
| statewide 171,670 plug-in of 12,098,320 registered, 1.42% |
| BEV 337 · PHEV 131 · plug-in 468 · total 9,322 · share 5.02% |
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"pa-dmv": {
"url": "https://gateway.pipeworx.io/pa-dmv/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/pa-dmv/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Pa Dmv data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Washington DMV/DOL: VIN-level EV population and monthly vehicle registration transactions
Maryland MVA: registered vehicles and EV/plug-in hybrid counts by county and ZIP, monthly
California DMV: vehicle and EV registrations by ZIP, field offices, forms, insurer NAIC codes
Connecticut DMV: vehicle-level electric vehicle registrations by town, make and model
Related MCP Servers
AlicenseNot gradedqualityFmaintenanceAccess US state DMV data including vehicle registrations, EV adoption, DMV office locations and services, live wait times, and California forms and insurer lookups. Supports multiple states with per-state quirks documented.3MIT- AlicenseNot gradedqualityCmaintenanceAccess California DMV data on vehicle registrations, EV adoption, field offices, forms, insurer NAIC codes, and driver licenses by county.14MIT
- AlicenseNot gradedqualityCmaintenanceAccess Washington State Department of Licensing (DOL) data including electric vehicle population counts and monthly vehicle registration transactions. Queries public Socrata datasets without authentication.10MIT
- AlicenseNot gradedqualityCmaintenanceProvides Maryland DMV monthly vehicle registration counts and electric/plug-in hybrid adoption by county and ZIP code, with accurate totals and flexible querying.9MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pipeworx-io/mcp-pa-dmv'
If you have feedback or need assistance with the MCP directory API, please join our Discord server