Pennsylvania DMV (PennDOT)

live EnergyTransport

Quarterly electric, plug-in hybrid and conventional hybrid registrations by county and ZIP, alongside total registered vehicles.

3 tools
0ms auth
free tier 50 calls/day

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/pa-dmv/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("pa_dmv_ev_adoption", {});
ask_pipeworx
// 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");