Business profile and recipes
WriteWhat it covers#
The agent keeps a short business profile: what the business does, what it sells, where it sells, what its charges look like and what it wants to improve. From that profile it builds the automation recipes it proposes to the merchant, and it knows which question is still pending (the questionnaire is four questions at most).
The profile is saved field by field: whatever is not sent is preserved. Recipes change with the modules the user has enabled: banking recipes only appear when the banking API is enabled.
These tools do not call the Tilopay API: they work on the MCP server's own data.
Tools#
View business profile
Read onlytilopay_get_business_profile
Returns the merchant's business profile (business type, products, channels, charge pattern and goal) and the next pending onboarding question (up to 4).
Parameters
No parameters.
Returns
{ profile, next_question, total_questions, is_complete }
profile = the saved business profile (or null if there is none); next_question = the next pending onboarding question; total_questions = how many questions the questionnaire has; is_complete = whether the profile is already complete.
Save business profile
Writetilopay_save_business_profile
Saves or completes the business profile with what the merchant answered. It can save one field at a time; fields that are not sent are kept.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
business_type | string | — | What the business does |
main_products | string | — | Main products or services |
sales_channels | string | — | Sales channels: in-store, online, social media, WhatsApp |
ticket_pattern | string | — | What the charges look like: amounts, frequency, currency |
goals | string | — | What the merchant wants to improve |
notes | string | — | Additional useful details |
Returns
{ profile, next_question, is_complete }
profile = the already updated profile (fields that are not sent are kept); next_question = the next pending question; is_complete = whether the profile became complete with this save.
Recipes and automations
Read onlytilopay_recommend_automations
Returns suggested recipes and automations for the merchant based on their business profile and the active MCP modules.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | — | How many recipes to return (5 by default) |
Returns
{ profile_complete, next_question, recipes }
recipes = suggested recipes and automations based on the business profile and active modules (includes banking ones only when the user has BaaS enabled); profile_complete and next_question indicate whether the profile still needs completing.
Last verified: 2026-09-14 · Owner: equipo-integraciones