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

NameTypeRequiredDescription
citystringnoCity name, matched as a substring, e.g. “Columbia”, “Springfield”, “Kansas City”.
namestringnoOffice-name substring, e.g. “Columbia South”, “Potosi”.
zipstringnoFive-digit Missouri ZIP code, or a prefix, e.g. “63101” or “631”.
limitnumber,stringnoMax 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.

Regenerated from source · build July 31, 2026