tx_dmv_vehicle_registrations

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

Count vehicles registered in Texas from the Texas DMV (TxDMV) registration series: total vehicles registered statewide in a fiscal year, split into passenger cars, pickup trucks of one ton or less, and motorcycles, each with its share of the fleet. Answers “how many vehicles are registered in Texas”, “how many motorcycles are registered in Texas”, “how many pickup trucks are registered in Texas”, and growth questions across years such as how the Texas fleet changed from 2001 to 2021. TxDMV publishes this series as one statewide row per fiscal year, covering fiscal years 2001 through 2021, so every response reports its fiscal year and vintage. For a ZIP-code or county breakdown of a registered fleet, ca_dmv_vehicle_registrations covers California at ZIP × make × model-year × fuel grain.

Parameters

NameTypeRequiredDescription
fiscal_yearstringnoTexas state fiscal year, ${FIRST_FISCAL_YEAR}–${LAST_FISCAL_YEAR}, e.g. “2021”. Omit for the most recent years, newest first.
limitnumber,stringnoMax fiscal years to return, newest first (default 10, max 21).

Example call

Arguments

{
  "fiscal_year": "2021"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('tx_dmv_vehicle_registrations', {
  "fiscal_year": "2021"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 31, 2026