dmv_ca_insurance_lookup
Pack: us-dmv · Endpoint: https://gateway.pipeworx.io/us-dmv/mcp
Look up an auto insurance company’s NAIC code from the California DMV insurance-carrier list, matching on company name. Returns each matching insurer with its five-digit NAIC number, which California requires when reporting insurance for a registered vehicle. Answers “NAIC code for State Farm”, “what is Geico’s NAIC number”, or “find insurer codes matching Progressive”. California DMV list; the NAIC codes themselves are national.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
insurer | string | yes | Insurance company name or fragment, e.g. “State Farm”, “Geico”, “Progressive”. |
Example call
Arguments
{
"insurer": "State Farm"
}
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_insurance_lookup","arguments":{"insurer":"State Farm"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dmv_ca_insurance_lookup', {
"insurer": "State Farm"
});
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.