Skip to main content
ClaudeWave

Delaware DMV: registrations by fuel type, EV and charger rebates, crash statistics

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/pipeworx-io/mcp-de-dmv
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-de-dmv": {
      "command": "node",
      "args": ["/path/to/mcp-de-dmv/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/pipeworx-io/mcp-de-dmv and follow its README for install instructions.
Use cases

MCP Servers overview

# @pipeworx/de-dmv

Delaware DMV MCP — registered vehicles by fuel type, EV adoption, the state's electric
vehicle and charging-equipment rebate awards, and reported traffic crashes.

## Tools

- `de_dmv_vehicle_registrations(fuel_type?)` — the whole Delaware fleet by fuel type, with a
  statewide total. Answers "how many vehicles are registered in Delaware".
- `de_dmv_ev_adoption()` — battery-electric and plug-in hybrid counts plus their share of
  every registered Delaware vehicle. Answers "what percentage of cars in Delaware are electric".
- `de_dmv_ev_rebates(group_by?, county?, make?, vehicle_type?, purchase_year?, limit?)` —
  Delaware Clean Vehicle Rebate Program awards: amount, county, city, ZIP, purchase date,
  vehicle type, make, model. Answers "does Delaware have an EV rebate and how much is it".
- `de_dmv_charger_rebates(group_by?, county?, brand?, year?, limit?)` — rebates paid toward
  home and workplace charging stations. Answers "does Delaware pay for a home EV charger".
- `de_dmv_crash_stats(group_by?, year?, county?, alcohol_involved?, …, limit?)` — reported
  traffic crashes by year, county, weather, light, road surface, impact or day of week.

## Auth

Keyless.

## `Electric+Gas` means plug-in hybrid

Delaware's fuel-type snapshot uses two labels a reader will misread:

| Published label | What it actually is |
|---|---|
| `Electric` | battery-electric vehicle (BEV) |
| `Electric+Gas` | **plug-in hybrid** — a grid-charged battery plus a petrol engine |

`Electric+Gas` is not flex-fuel and not a conventional hybrid. It is also the *larger* of the
two categories (42,287 vs 17,075), so treating it as anything else moves Delaware's EV numbers
by a factor of three. `de_dmv_ev_adoption` reports both separately and sums them into
`plugin_vehicles`.

Verified live 2026-07-29 (snapshot refreshed 2026-07-01): Gas 798,738 · Other (Or None) 88,899
· Electric+Gas 42,287 · Diesel 36,217 · Electric 17,075 · Propane 627 · Comp. Nat. Gas 68 ·
Liquefied Gas 54 · Convertible 16 · Ethanol 1. Statewide total **983,982**; plug-in share 6.0%.

## Grain

The fuel snapshot is **statewide** — no county or ZIP breakdown exists in it, and the returned
`total_vehicles` genuinely is the whole Delaware fleet. The rebate and crash files *do* carry
county, city and ZIP, so those tools group by them.

## Hand-typed values in the rebate files

Both rebate files were keyed by hand and the pack folds the variants together, because a raw
group-by splits one county across four spellings:

- county: `New Castle` / `new Castle` / `new castle` / `New Caslte`, plus the *city* `Newark`
  and `Rehoboth Beach` sitting in the county column.
- vehicle type: `Electric` / `electric` / `BEV`; `Plug-in Hybrid` / `plug in hybrid`.
- charger brand: `Juicebox` / `JuiceBox` / `Juice Box`.
- a few purchase dates are transcription errors — one reads **1953** — so filter by
  `purchase_year` rather than trusting min/max of the date column.
- two charger-rebate rows carry a corrupted award year of **2081**; real years run 2015 onward.

Charger rebates range from **$18.66** (a home cord) to **$48,816** (a multi-port workplace or
public installation) in the same file, so an average rebate sits far above what a household
receives. The tool reports awards, total dollars, average rebate and average station cost
together for exactly that reason.

## Data sources

- `https://data.delaware.gov/resource/ity3-3688.json` — Registered Vehicles by Fuel Type
  (10 rows, statewide, refreshed monthly; 2026-07-01 at time of writing).
- `https://data.delaware.gov/resource/8z8z-di7f.json` — State Rebates for Alternative Fuel
  Vehicles: 7,758 awards, ~$17.15M paid, 2015 onward.
- `https://data.delaware.gov/resource/a9zd-p6sk.json` — Electric Vehicle Charging Equipment
  Rebates: 778 awards, ~$2.81M paid.
- `https://data.delaware.gov/resource/827n-m6xc.json` — Public Crash Data: ~37,000 reported
  crashes a year, crash years 2009 through 2025, three counties.

**Rejected while building:** `f3pu-7vjx` ("Alternative Vehicle Rebates, by Year, 2014 to
Present") reports the same 7,758-row count as `8z8z-di7f` but publishes **no columns** — every
row comes back as `{}` and its metadata column list is empty. It is an unusable duplicate of
the rebate file, so no tool wraps it.

## Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

```json
{
  "mcpServers": {
    "de-dmv": {
      "url": "https://gateway.pipeworx.io/de-dmv/mcp"
    }
  }
}
```

Or connect to the full Pipeworx gateway for access to all 1392+ data sources:

```json
{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}
```

## Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English:

```
ask_pipeworx({ question: "your question about Delaware DMV data" })
```

The gateway picks the right tool and fills the arguments automatically.

## More

- [All tools and guides](https://github.com/pipeworx-io/examples)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
de-dmvmcpmcp-servermodel-context-protocolpipeworx

What people ask about mcp-de-dmv

What is pipeworx-io/mcp-de-dmv?

+

pipeworx-io/mcp-de-dmv is mcp servers for the Claude AI ecosystem. Delaware DMV: registrations by fuel type, EV and charger rebates, crash statistics It has 0 GitHub stars and was last updated today.

How do I install mcp-de-dmv?

+

You can install mcp-de-dmv by cloning the repository (https://github.com/pipeworx-io/mcp-de-dmv) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is pipeworx-io/mcp-de-dmv safe to use?

+

pipeworx-io/mcp-de-dmv has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains pipeworx-io/mcp-de-dmv?

+

pipeworx-io/mcp-de-dmv is maintained by pipeworx-io. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to mcp-de-dmv?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-de-dmv to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: pipeworx-io/mcp-de-dmv
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-de-dmv)](https://claudewave.com/repo/pipeworx-io-mcp-de-dmv)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-de-dmv"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-de-dmv" alt="Featured on ClaudeWave: pipeworx-io/mcp-de-dmv" width="320" height="64" /></a>

More MCP Servers

mcp-de-dmv alternatives