Delaware DMV
live LegalEnergyTransportRegistered vehicles by fuel type, electric-vehicle and charger rebate awards, and statewide crash statistics.
Tools
de_dmv_vehicle_registrations Count vehicles registered in Delaware by fuel type from the Delaware DMV's own statewide snapshot: petrol, diesel, battery-electric, plug-in hybrid, propane, compressed natural gas, ethanol and the re
No parameters required.
Try it
de_dmv_ev_adoption Measure electric-vehicle adoption in Delaware from DMV registration counts: how many battery-electric and plug-in hybrid vehicles are registered statewide and what share of every registered Delaware v
No parameters required.
Try it
de_dmv_ev_rebates Look up Delaware Clean Vehicle Rebate Program awards: the cash rebates Delaware paid residents and businesses for buying an electric, plug-in hybrid, propane or natural-gas vehicle, with the award amo
No parameters required.
Try it
de_dmv_charger_rebates Look up Delaware EV charging-equipment rebate awards: the rebates Delaware paid toward buying and installing a home or workplace electric-vehicle charging station, with the rebate amount, the cost of
No parameters required.
Try it
de_dmv_crash_stats Count reported traffic crashes in Delaware from the state's Public Crash Data file, broken down by year, county, weather, light condition, road surface, impact type or day of week, with filters for al
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/de-dmv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/de-dmv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"de_dmv_vehicle_registrations","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("de_dmv_vehicle_registrations", {}); // Or ask in plain English:
const answer = await px.ask("registered vehicles by fuel type, electric-vehicle and charger rebate awards, and statewide crash statistics");