carsxe_market_value

Pack: carsxe · Endpoint: https://gateway.pipeworx.io/carsxe/mcp

Used-car market value for a VIN (by mileage/condition) — retail, trade-in, loan and wholesale values. Example: carsxe_market_value({ vin: “WBAFR7C57CC811956”, state: “CA”, mileage: 55000, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
vinstringyes17-character Vehicle Identification Number
statestringnoOptional two-letter US state code for regional pricing, e.g. “CA”
mileagenumbernoOptional odometer reading to adjust the valuation, e.g. 55000
conditionstringnoOptional condition: “excellent”, “clean”, “average”, or “rough”
_apiKeystringyesYour CarsXE API key

Example call

Arguments

{
  "vin": "WBAFR7C57CC811956",
  "state": "CA",
  "mileage": 55000,
  "condition": "clean",
  "_apiKey": "your-carsxe-api-key"
}

curl

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_market_value","arguments":{"vin":"WBAFR7C57CC811956","state":"CA","mileage":55000,"condition":"clean","_apiKey":"your-carsxe-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('carsxe_market_value', {
  "vin": "WBAFR7C57CC811956",
  "state": "CA",
  "mileage": 55000,
  "condition": "clean",
  "_apiKey": "your-carsxe-api-key"
});

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.

Regenerated from source · build August 22, 2026