dc_dmv_offices
Pack: dc-dmv · Endpoint: https://gateway.pipeworx.io/dc-dmv/mcp
Find a Washington DC DMV location — the District of Columbia Department of Motor Vehicles service centers where residents renew a license, register a vehicle or get a REAL ID, plus the Half Street inspection station, the two self-service emissions-inspection kiosks, the Deanwood road-test and CDL center, and Adjudication Services for ticket hearings. Returns street address, coordinates and the DMV website. Answers “DC DMV near Georgetown”, “where is the DC vehicle inspection station”, “DC DMV road test location”, and “how many DMV service centers does Washington DC have”. Covers all 9 published DMV locations.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Location-name substring, e.g. “Georgetown”, “Benning”, “Inspection”, “Adjudication”. |
office_type | string | no | Category substring: “service center”, “inspection station”, “kiosk”, “road test”, “adjudication”. |
limit | number,string | no | Max locations to return (default 25, max 50). |
Example call
Arguments
{
"name": "Georgetown"
}
curl
curl -X POST https://gateway.pipeworx.io/dc-dmv/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dc_dmv_offices","arguments":{"name":"Georgetown"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dc_dmv_offices', {
"name": "Georgetown"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dc-dmv": {
"url": "https://gateway.pipeworx.io/dc-dmv/mcp"
}
}
}
See Getting Started for client-specific install steps.