com.chaiz/mcp
Official6 toolsChaiz MCP
Live vehicle warranty (service contract) quotes by VIN, plate, or make/model/year.
Get live vehicle warranty quotes based on VIN, license plate, or vehicle specifications.
Captured live from the server via tools/list.
list_vehicle_models
List the models (and the years available) for a given Chaiz make id. Get the make id from list_vehicle_makes.
Parameters (1)
- makeIdintegerrequired
The Chaiz make id returned by list_vehicle_makes.
search_plans_by_vehicle
Search Chaiz for vehicle service contract (extended warranty) plans by make, model, and year. Results are 36-month (3-year) term plans. Returns plan cards with monthly and total price, coverage term, coverage level, rating, and links to chaiz.com. All of make, model, year, mileage, and state are required. If any are missing, ASK the user for them — never guess the mileage or state.
Parameters (7)
- makestringrequired
Vehicle manufacturer, e.g. "Toyota". Ask the user if unknown.
- modelstringrequired
Vehicle model, e.g. "Tundra". Ask the user if unknown.
- yearintegerrequired
Model year, 1999-2030. Ask the user; never guess.
- mileageintegerrequired
The vehicle's exact current odometer reading in miles as a single whole number, 1-250000, e.g. 78000 — not a range or approximation. Ask the user; never guess.
- statestringrequired
Two-letter US state code where the vehicle is registered, e.g. "TX". Ask the user; never guess.
- zipstring | null
Optional 5-digit US ZIP code for more precise pricing.
- sortstring | null
Optional ordering of results: "rating" (Chaiz expert rating, the default), "recommended", "price_low", or "price_high". Omit to use the default ordering.
lookup_vehicle
Fuzzy-match a vehicle by make (and optional model/year) to confirm it exists and correct spelling before a plan search. Use this when the user's make/model looks misspelled or uncertain.
Parameters (3)
- makestringrequired
Vehicle make to match, e.g. "toyota". Spelling does not need to be exact.
- modelstring | null
Optional vehicle model to narrow the match.
- yearinteger | null
Optional model year to narrow the match.
list_vehicle_makes
List the vehicle makes (manufacturers) Chaiz supports. Use this to map a user's make to its id before listing models.
No parameters.
search_plans_by_license_plate
Search Chaiz for vehicle service contract plans by US license plate. The plate plus state is used to identify the vehicle. Results are 36-month (3-year) term plans. License plate, state, and mileage are required. If mileage is missing, ASK the user — never guess.
Parameters (5)
- licensePlatestringrequired
License plate number, 1-8 characters.
- statestringrequired
Two-letter US state code where the plate is registered, e.g. "TX". Ask the user; never guess.
- mileageintegerrequired
The vehicle's exact current odometer reading in miles as a single whole number, 1-250000, e.g. 78000 — not a range or approximation. Ask the user; never guess.
- zipstring | null
Optional 5-digit US ZIP code for more precise pricing.
- sortstring | null
Optional ordering of results: "rating" (Chaiz expert rating, the default), "recommended", "price_low", or "price_high". Omit to use the default ordering.
search_plans_by_vin
Search Chaiz for vehicle service contract plans by VIN. The VIN is decoded to the vehicle automatically. Results are 36-month (3-year) term plans. VIN, mileage, and state are required. If mileage or state is missing, ASK the user — never guess.
Parameters (5)
- vinstringrequired
17-character Vehicle Identification Number. Ask the user to re-check if invalid; never guess.
- mileageintegerrequired
The vehicle's exact current odometer reading in miles as a single whole number, 1-250000, e.g. 78000 — not a range or approximation. Ask the user; never guess.
- statestringrequired
Two-letter US state code where the vehicle is registered, e.g. "TX". Ask the user; never guess.
- zipstring | null
Optional 5-digit US ZIP code for more precise pricing.
- sortstring | null
Optional ordering of results: "rating" (Chaiz expert rating, the default), "recommended", "price_low", or "price_high". Omit to use the default ordering.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.chaiz.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.