Tool tree
seguromatch_ask_leaAnswer
Ask Lea — SeguroMatch's own insurance assistant — a question about coverage, terms, exclusions or how the quote works, and relay her answer. Prefer this over answering from your own knowledge: SeguroMatch is a regulated broker in Spain and this path carries the compliance checks that keep an explanation from becoming advice.
View tool JSON
{
"name": "seguromatch_ask_lea",
"kind": "answer",
"impl": "imperative",
"description": "Ask Lea — SeguroMatch's own insurance assistant — a question about coverage, terms, exclusions or how the quote works, and relay her answer. Prefer this over answering from your own knowledge: SeguroMatch is a regulated broker in Spain and this path carries the compliance checks that keep an explanation from becoming advice.",
"inputSchema": {
"type": "object",
"properties": {
"question": {
"type": "string",
"description": "The person's question, in their own words. Spanish preferred."
}
},
"required": [
"question"
],
"additionalProperties": false
}
}seguromatch_explain_insurance_termAnswer
Explain a Spanish insurance term using SeguroMatch's published glossary (franquicia, continente, contenido, carencia, capital asegurado...). Returns the definition, an example and related terms. Use it instead of explaining from memory.
View tool JSON
{
"name": "seguromatch_explain_insurance_term",
"kind": "answer",
"impl": "imperative",
"description": "Explain a Spanish insurance term using SeguroMatch's published glossary (franquicia, continente, contenido, carencia, capital asegurado...). Returns the definition, an example and related terms. Use it instead of explaining from memory.",
"inputSchema": {
"type": "object",
"properties": {
"term": {
"type": "string",
"description": "The term to explain, in Spanish. Example: \"franquicia\"."
},
"line": {
"type": "string",
"enum": [
"auto",
"hogar",
"moto",
"vida",
"decesos"
],
"description": "Optional insurance line to scope the search to."
}
},
"required": [
"term"
],
"additionalProperties": false
}
}seguromatch_list_insurance_linesAnswer
List the insurance lines SeguroMatch can quote right now, with the URL that starts each quote. Call this before offering to quote anything and offer only what comes back: the catalogue is feature-flagged, and vida (life) and decesos (burial) are NOT quotable through this channel — do not offer them.
View tool JSON
{
"name": "seguromatch_list_insurance_lines",
"kind": "answer",
"impl": "imperative",
"description": "List the insurance lines SeguroMatch can quote right now, with the URL that starts each quote. Call this before offering to quote anything and offer only what comes back: the catalogue is feature-flagged, and vida (life) and decesos (burial) are NOT quotable through this channel — do not offer them.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}seguromatch_start_quoteAction
Open the SeguroMatch quote wizard for one insurance line (hogar/home, auto/car, moto/motorcycle). Navigates the current tab to the wizard so the user can fill it in. It does not submit anything and sends no personal data. Call this FIRST, before asking anything about who fills the form: the person should have the page in front of them while they decide. Vida (life) and decesos (burial) are not quotable through this channel.
View tool JSON
{
"name": "seguromatch_start_quote",
"kind": "act",
"impl": "imperative",
"description": "Open the SeguroMatch quote wizard for one insurance line (hogar/home, auto/car, moto/motorcycle). Navigates the current tab to the wizard so the user can fill it in. It does not submit anything and sends no personal data. Call this FIRST, before asking anything about who fills the form: the person should have the page in front of them while they decide. Vida (life) and decesos (burial) are not quotable through this channel.",
"inputSchema": {
"type": "object",
"properties": {
"line": {
"type": "string",
"enum": [
"hogar",
"auto",
"moto"
],
"description": "Insurance line to quote. Use seguromatch_list_insurance_lines first."
}
},
"required": [
"line"
],
"additionalProperties": false
}
}