carsxe_plate_decode
Pack: carsxe · Endpoint: https://gateway.pipeworx.io/carsxe/mcp
Decode a license plate → VIN & vehicle — look up the VIN, year, make and model for a US plate. Example: carsxe_plate_decode({ plate: “7XER187”, state: “CA”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
plate | string | yes | License plate / registration number, e.g. “7XER187” |
state | string | yes | Two-letter US state code, e.g. “CA” (required for US plates) |
country | string | no | Optional ISO 3166-1 alpha-2 country code. Defaults to “US”. |
_apiKey | string | yes | Your CarsXE API key |
Example call
curl -X POST https://gateway.pipeworx.io/carsxe/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"carsxe_plate_decode","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"carsxe": {
"url": "https://gateway.pipeworx.io/carsxe/mcp"
}
}
}
See Getting Started for client-specific install steps.