Washington DMV (Dept of Licensing)
live EnvironmentEnergyArtVIN-level electric-vehicle population by county, city, ZIP, make and model, plus monthly vehicle registration transactions.
Tools
wa_dmv_ev_population Count electric vehicles currently registered in Washington State, from the Department of Licensing (Washington DMV) VIN-level Electric Vehicle Population file — one row per registered vehicle, so thes
No parameters required.
Try it
wa_dmv_registration_transactions Count Washington State vehicle registration transactions — original registrations and renewals processed by the Department of Licensing (Washington DMV) — for one fiscal year or one calendar month, br
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/wa-dmv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/wa-dmv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"wa_dmv_ev_population","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("wa_dmv_ev_population", {}); // Or ask in plain English:
const answer = await px.ask("vin-level electric-vehicle population by county, city, zip, make and model, plus monthly vehicle registration transactions");