Window Sticker
Monroney-format factory window sticker PDF, branded with the user's dealer profile.
Window Sticker
Monroney-format factory window sticker PDF, branded with the user's dealer profile.
At a glance
| Price | $1.99 per run. |
| Tool name | generate_window_sticker |
| Scope | reports:window-sticker |
| Built for | Small Dealer |
What it does
Generates a Monroney-style factory window sticker as a downloadable PDF (11×17 landscape). Includes Total MSRP breakdown (base + factory options + destination), standard equipment grouped by category, fuel economy badge with city/highway/combined MPG + annual fuel cost, NHTSA 5-star safety ratings, warranty coverage table, and a CODE39 VIN barcode. When the user has configured a brand profile at /account/brand, the sticker uses their dealership logo, name, address, phone, and primary color. Without a brand profile it falls back to neutral Marketcheck branding. Use when the user asks for a window sticker, Monroney label, build sheet, factory sticker, or "what the car came with from the factory" for a specific VIN. NOTE: US-market VINs only. The Marketcheck NeoVIN dataset does not cover UK or other international markets.
Arguments
| Argument | What it is | Example | |
|---|---|---|---|
vin |
Required | 17-character vehicle identification number. | 1FADP3F21FL360821 |
What comes back
- Total MSRP breakdown (base + factory options + destination)
- Standard equipment grouped by category
- Fuel economy with city/highway/combined MPG + annual cost
- NHTSA 5-star safety ratings
- Warranty coverage table
- CODE39 VIN barcode + QR code linking to live valuation page
Asking for it in a chat client
Generate the factory window sticker for VIN 4T3R6RFV7MU015349.
Print a Monroney sticker for VIN 5TDGZRBH6MS105706.
Running it from a backend
Grant an agent the reports:window-sticker scope, then call the tool over MCP:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "generate_window_sticker",
"arguments": {
"vin": "1FADP3F21FL360821"
}
}
}
See Server-side access for the token exchange and how to read the response.