ca_dmv_insurance_lookup
Pack: ca-dmv · Endpoint: https://gateway.pipeworx.io/ca-dmv/mcp
Look up an auto insurer’s five-digit NAIC code from the California DMV insurance-carrier list by company name. California requires the NAIC number when reporting insurance for a registered vehicle, so this answers “NAIC code for State Farm”, “what is Geico’s NAIC number”, or “insurer codes matching Progressive”. The list is California’s; 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/ca-dmv/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ca_dmv_insurance_lookup","arguments":{"insurer":"State Farm"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ca_dmv_insurance_lookup', {
"insurer": "State Farm"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ca-dmv": {
"url": "https://gateway.pipeworx.io/ca-dmv/mcp"
}
}
}
See Getting Started for client-specific install steps.