pa_dmv_ev_adoption_by_zip

Pack: pa-dmv · Endpoint: https://gateway.pipeworx.io/pa-dmv/mcp

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 roughly 1,830 Pennsylvania ZIP codes, with that ZIP code’s total registered vehicles and plug-in share. Answers “how many EVs are registered in ZIP 19103”, “which Pennsylvania ZIP code has the most electric vehicles”, “EV share in ZIP 15213”, and neighbourhood-level adoption questions that a county figure averages away. Supply zip for one ZIP code, or omit it to rank them. For county figures and the statewide Pennsylvania total use pa_dmv_ev_adoption.

Parameters

NameTypeRequiredDescription
zipstringnoFive-digit Pennsylvania ZIP code, e.g. “19103”, “15213”.
yearstringnoRegistration year, one of ${YEARS.slice().sort().join(’, ’)}. Defaults to ${LATEST_YEAR}.
quarterstringnoQuarter of that registration year: “Q1”, “Q2”, “Q3” or “Q4”. Defaults to the latest quarter PennDOT has actually filed for that year.
limitnumber,stringnoMax ZIP codes to return (default 30, max 500).

Example call

Arguments

{
  "zip": "19103",
  "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_ev_adoption_by_zip","arguments":{"zip":"19103","year":"2026"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('pa_dmv_ev_adoption_by_zip', {
  "zip": "19103",
  "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.

Regenerated from source · build July 31, 2026