Mercury
build_quote
Build an itemized CAD quote (motor + installation + propeller + trade-in + HST + financing tier) and return a deep-link URL the customer can open. Optional contact captures a lead in the dealership CRM.
Remote harrisboatworks/mercury-repower
Remote (network-hosted)
Other tools also called build_quote?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"family": {
"type": "string"
},
"contact": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"phone": {
"type": "string"
},
"referrer": {
"type": "string"
}
}
},
"motor_id": {
"type": "string"
},
"trade_in": {
"type": "object"
},
"boat_info": {
"type": "object",
"properties": {
"make": {
"type": "string"
},
"model": {
"type": "string"
}
}
},
"horsepower": {
"type": "number"
},
"purchase_path": {
"enum": [
"installed",
"loose"
],
"type": "string",
"default": "installed"
}
}
}