Maryland MVA

live EnergyTransport

Registered vehicles and electric/plug-in hybrid counts by county and ZIP code, published monthly by the Motor Vehicle Administration.

2 tools
0ms auth
free tier 50 calls/day

Tools

md_dmv_vehicle_registrations

Count vehicles registered in Maryland by county for a given month, from Maryland Motor Vehicle Administration (MVA) data published monthly since 2020. Returns each county's registered-vehicle count pl

No parameters required.

Try it
md_dmv_ev_adoption

Measure electric-vehicle adoption in Maryland from Maryland MVA registration counts: how many battery-electric and plug-in hybrid vehicles are registered in a county or a ZIP code each month, split by

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/md-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/md-dmv/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"md_dmv_vehicle_registrations","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("md_dmv_vehicle_registrations", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("registered vehicles and electric/plug-in hybrid counts by county and zip code, published monthly by the motor vehicle administration");