Pennsylvania DMV (PennDOT)
live EnergyTransportQuarterly electric, plug-in hybrid and conventional hybrid registrations by county and ZIP, alongside total registered vehicles.
Tools
pa_dmv_ev_adoption Measure electric-vehicle adoption in Pennsylvania from PennDOT Driver & Vehicle Services registration data: how many battery-electric, plug-in hybrid, hydrogen fuel-cell and conventional hybrid vehicl
No parameters required.
Try it
pa_dmv_vehicle_registrations 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
No parameters required.
Try it
pa_dmv_ev_adoption_by_zip Break Pennsylvania electric-vehicle registrations down to the ZIP code, from PennDOT Driver & Vehicle Services: battery-electric, plug-in hybrid, fuel-cell and conventional hybrid counts for each of r
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/pa-dmv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/pa-dmv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"pa_dmv_ev_adoption","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("pa_dmv_ev_adoption", {}); // Or ask in plain English:
const answer = await px.ask("quarterly electric, plug-in hybrid and conventional hybrid registrations by county and zip, alongside total registered vehicles");