hi_dmv_ev_registrations
Pack: hi-dmv · Endpoint: https://gateway.pipeworx.io/hi-dmv/mcp
Count electric and hybrid vehicles registered in Hawaii as an annual time series from 1999 to the present, with battery-electric and hybrid vehicles counted separately plus a combined total, and the year-over-year change and growth rate for each year. Answers “how many electric vehicles are in Hawaii”, “how many EVs were registered in Hawaii in 2020”, “EV adoption trend in Hawaii”, “how fast is EV adoption growing in Hawaii”, and “how many hybrid cars are in Hawaii”. Figures are cumulative registered counts compiled statewide by Hawaii DBEDT; registration itself is administered by the four counties (Honolulu, Hawaii, Maui, Kauai), so this series is published at the state level.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
year | string | no | Four-digit calendar year, 1999 onward, e.g. “2024”. Omit for the whole series, newest first. |
limit | number,string | no | Max years to return, newest first (default 30, max 60). |
Example call
Arguments
{
"year": "2024"
}
curl
curl -X POST https://gateway.pipeworx.io/hi-dmv/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hi_dmv_ev_registrations","arguments":{"year":"2024"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hi_dmv_ev_registrations', {
"year": "2024"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hi-dmv": {
"url": "https://gateway.pipeworx.io/hi-dmv/mcp"
}
}
}
See Getting Started for client-specific install steps.