de_dmv_ev_rebates
Pack: de-dmv · Endpoint: https://gateway.pipeworx.io/de-dmv/mcp
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 amount, county, city, ZIP code, purchase date, vehicle type, make, model and model year. Answers “does Delaware have an EV rebate and how much is it”, “how much has Delaware paid in EV rebates”, “which EV models got the most Delaware rebates”, and “EV rebates in Sussex County”. Covers 7,758 awards from 2015 onward totalling about $17.2M. Group by county, city, ZIP, vehicle type, make, model, model year or purchase year.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
group_by | string | no | Breakdown dimension: vehicle_type (default), county, city, zip, make, model, model_year, purchase_year. |
county | string | no | Delaware county: “New Castle”, “Kent” or “Sussex”. |
make | string | no | Vehicle make, matched as a substring, e.g. “Tesla”, “Ford”. |
vehicle_type | string | no | Rebated vehicle type, e.g. “Electric”, “Plug-in Hybrid”, “Propane”. |
purchase_year | string | no | Four-digit year of purchase, e.g. “2024”. |
limit | number,string | no | Max rows to return (default 25, max 200). |
Example call
Arguments
{
"group_by": "county"
}
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_ev_rebates","arguments":{"group_by":"county"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('de_dmv_ev_rebates', {
"group_by": "county"
});
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.