Search (user-initiated only)
ws_check_rim_fitment_for_vehicleCheck if specific rims (bolt pattern, diameter, width, offset) fit a given vehicle make, model, and year. Returns documented fitments or confirms no match for wheel compatibility decisions.
Instructions
Check whether specific rims fit a specific vehicle (make + model, optionally year).
Answers "will 5x114.3 17x7 ET40 rims fit my 2020 Honda Civic?" in one call: returns the vehicle's modifications (trims) where this rim appears as a documented fitment. An EMPTY result means no documented fitment for that combination — the rim is likely incompatible or undocumented.
The API has no year parameter, so 'year' is filtered MCP-side against each modification's production range (start_year/end_year); each row echoes its range so near-misses can be explained.
Prefer this over ws_search_by_rim + ws_search_by_vehicle comparison when the user names a specific vehicle.
IMPORTANT: This is a Search method — only call when a user explicitly requests a fitment check. Do not call in autonomous loops.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cb | No | Centre bore in mm (e.g. 64.1) | |
| make | Yes | Make slug (e.g. 'honda'). Use ws_list_makes to find valid slugs. | |
| mode | No | Axle mode | |
| year | No | Model year — filters to modifications in production that year | |
| limit | No | Results per page | |
| model | Yes | Model slug (e.g. 'civic'). Use ws_list_models to find valid slugs. | |
| offset | No | Pagination offset | |
| region | No | Region slug(s) (e.g. ['usdm'] or ['eudm', 'audm']). | |
| rim_width | Yes | Rim width in inches (e.g. 7) | |
| rim_offset | No | Rim offset ET in mm (e.g. 40) | |
| bolt_pattern | Yes | Bolt pattern of the rim (e.g. '5x114.3') | |
| rim_diameter | Yes | Rim diameter in inches (e.g. 17) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||