dmv_ca_forms

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

Search the official California DMV forms catalog by topic and get the form name, its REG/DL form number and the page to download it from. Answers “which California DMV form transfers a title”, “CA DMV form for a duplicate registration”, or “what is REG 227”. Returns the forms California DMV publishes, ranked by the site’s own relevance order. California only.

Parameters

NameTypeRequiredDescription
querystringyesWhat the form is for, e.g. “title transfer”, “duplicate registration”, “change of address”, or a form number like “REG 227”.
limitnumber,stringnoMax forms to return (default 10, max 50).

Example call

Arguments

{
  "query": "title transfer",
  "limit": 5
}

curl

curl -X POST https://gateway.pipeworx.io/us-dmv/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dmv_ca_forms","arguments":{"query":"title transfer","limit":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dmv_ca_forms', {
  "query": "title transfer",
  "limit": 5
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 30, 2026