Washington DMV (Dept of Licensing)

live EnvironmentEnergyArt

VIN-level electric-vehicle population by county, city, ZIP, make and model, plus monthly vehicle registration transactions.

2 tools
0ms auth
free tier 50 calls/day

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/wa-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/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.

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