nc_dmv_wait_times

Pack: nc-dmv · Endpoint: https://gateway.pipeworx.io/nc-dmv/mcp

Live wait times at North Carolina DMV offices, published by NCDMV itself and refreshed continuously: the current average wait in minutes, the longest wait anyone in line is seeing, and whether each office is open right now. Covers all 148 NCDMV driver license offices statewide plus the vehicle services and license plate agency units, so it answers “how long is the wait at the Raleigh DMV”, “is the Charlotte DMV open right now”, “which DMV near Greensboro has the shortest line”, or “shortest DMV wait in North Carolina today”. North Carolina is one of only two states whose DMV publishes a live queue feed. Outside posted business hours the agency reports every office closed with a zero wait, which is an idle queue rather than a measurement, and the response says so.

Parameters

NameTypeRequiredDescription
officestringnoCase-insensitive office-name substring, e.g. “Raleigh”, “Charlotte”, “Wilmington”.
servicestringno”driver” for driver license offices (default, 148 offices) or “vehicle” for vehicle services / license plate agency units.
open_onlyboolean,stringnoWhen true, keep only offices the feed currently reports as open.
sortstringno”wait” ranks shortest average wait first (open offices first); “name” (default) keeps the agency’s own order.
limitnumber,stringnoMax offices to return (default 200, max 400).

Example call

Arguments

{
  "office": "Raleigh"
}

curl

curl -X POST https://gateway.pipeworx.io/nc-dmv/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nc_dmv_wait_times","arguments":{"office":"Raleigh"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('nc_dmv_wait_times', {
  "office": "Raleigh"
});

More examples

{
  "service": "vehicle"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "nc-dmv": {
      "url": "https://gateway.pipeworx.io/nc-dmv/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 31, 2026