de_dmv_charger_rebates
Pack: de-dmv · Endpoint: https://gateway.pipeworx.io/de-dmv/mcp
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 the station, its brand, and the city, ZIP code and county it was installed in. Answers “does Delaware pay for a home EV charger”, “how much is the Delaware charging station rebate”, “which charger brands did Delaware rebate”, and “EV charger rebates in New Castle County”. Covers 776 awards for years 2015 onward, and reports the average rebate against the average station cost.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
group_by | string | no | Breakdown dimension: brand (default), county, city, zip, year. |
county | string | no | Delaware county: “New Castle”, “Kent” or “Sussex”. |
brand | string | no | Charging-station brand, matched as a substring, e.g. “Tesla”, “ChargePoint”. |
year | string | no | Four-digit award year, e.g. “2024”. |
limit | number,string | no | Max rows to return (default 25, max 200). |
Example call
Arguments
{
"group_by": "brand",
"limit": 5
}
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_charger_rebates","arguments":{"group_by":"brand","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('de_dmv_charger_rebates', {
"group_by": "brand",
"limit": 5
});
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.