mo_dmv_license_offices
Pack: mo-dmv · Endpoint: https://gateway.pipeworx.io/mo-dmv/mcp
Find a Missouri license office — the Department of Revenue counters Missourians use as the DMV, for driver licenses, ID cards, license plates, titles and registration renewal. Returns street address, phone, the days and hours each office is open, coordinates, the contract agent and office manager who run it, and the upcoming dates it will be closed. Missouri refreshes this file daily, so it answers “is the Columbia license office closed next week”, “DMV office in Springfield MO”, “license office hours in ZIP 63101”, and “who runs the license bureau in Potosi”. Covers all 176 offices statewide.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
city | string | no | City name, matched as a substring, e.g. “Columbia”, “Springfield”, “Kansas City”. |
name | string | no | Office-name substring, e.g. “Columbia South”, “Potosi”. |
zip | string | no | Five-digit Missouri ZIP code, or a prefix, e.g. “63101” or “631”. |
limit | number,string | no | Max offices to return (default 50, max 200). |
Example call
Arguments
{
"city": "Columbia"
}
curl
curl -X POST https://gateway.pipeworx.io/mo-dmv/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mo_dmv_license_offices","arguments":{"city":"Columbia"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mo_dmv_license_offices', {
"city": "Columbia"
});
More examples
{
"zip": "63033"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mo-dmv": {
"url": "https://gateway.pipeworx.io/mo-dmv/mcp"
}
}
}
See Getting Started for client-specific install steps.