de_dmv_vehicle_registrations
Pack: de-dmv · Endpoint: https://gateway.pipeworx.io/de-dmv/mcp
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 residual “Other (Or None)” category, with a statewide total of every registered vehicle. Answers “how many vehicles are registered in Delaware”, “how many diesel vehicles are registered in Delaware”, and “how many electric cars are in Delaware”. Delaware publishes this as one statewide row per fuel type, refreshed monthly, so the returned total is the whole Delaware fleet. Delaware writes plug-in hybrids as “Electric+Gas”. For EV share of the fleet use de_dmv_ev_adoption; for Delaware rebate awards use de_dmv_ev_rebates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
fuel_type | string | no | Fuel or drivetrain to filter to; plain words map to Delaware’s labels, e.g. “electric”, “diesel”, “gas”, “plug-in hybrid”, “propane”, “cng”. |
Example call
Arguments
{
"fuel_type": "diesel"
}
curl
curl -X POST https://gateway.pipeworx.io/de-dmv/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"de_dmv_vehicle_registrations","arguments":{"fuel_type":"diesel"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('de_dmv_vehicle_registrations', {
"fuel_type": "diesel"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"de-dmv": {
"url": "https://gateway.pipeworx.io/de-dmv/mcp"
}
}
}
See Getting Started for client-specific install steps.