← WebMCP Directory

Tool tree

vinseeker.com

Commerce
https://vinseeker.com/
Vehicle identification and history information
Explore capabilities

Tools verified

decode_vinAnswer

Decode a US vehicle VIN into specifications: year, make, model, trim, engine, drivetrain, fuel economy and dimensions. Free — does NOT include title, accident, odometer or ownership history.

View tool JSON
{
  "name": "decode_vin",
  "kind": "answer",
  "impl": "imperative",
  "description": "Decode a US vehicle VIN into specifications: year, make, model, trim, engine, drivetrain, fuel economy and dimensions. Free — does NOT include title, accident, odometer or ownership history.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "vin": {
        "type": "string",
        "description": "11–17 character US VIN, e.g. 1HGCM82633A004352."
      }
    },
    "required": [
      "vin"
    ]
  }
}
lookup_vehicleAction

Start a VINSeeker vehicle history report for a VIN — accidents, title checks, mileage and ownership. Opens the report flow on vinseeker.com so the user can complete their purchase.

View tool JSON
{
  "name": "lookup_vehicle",
  "kind": "act",
  "impl": "imperative",
  "description": "Start a VINSeeker vehicle history report for a VIN — accidents, title checks, mileage and ownership. Opens the report flow on vinseeker.com so the user can complete their purchase.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "vin": {
        "type": "string",
        "description": "11–17 character US VIN."
      }
    },
    "required": [
      "vin"
    ]
  }
}