MCP PROMPT · LOYALTY

/add-loyalty-points

Credit loyalty points to a customer and confirm the new balance.

01 · The flow

What the agent does, in order.

  1. 01 Call search_members to find the accountId by name/phone/email.
  2. 02 Call get_loyalty_balance with accountId to show the current balance.
  3. 03 Call earn_loyalty_points with accountId + amount + reason. Reason can be free-form ("manual top-up", "compensation", "promo participation").
  4. 04 Re-call get_loyalty_balance to confirm the new total. Echo it back to the user.
02 · Tools called

3 typed tools in sequence.

  • search_members
  • get_loyalty_balance
  • earn_loyalty_points

Every tool ships with MCP annotations (title, readOnlyHint, destructiveHint, openWorldHint, idempotentHint). Clients can gate destructive calls before invoking. Full catalog: /server-card.json.

Try this in your agent.

Connect FavCRM to Cursor, Claude, ChatGPT, or any MCP client. Type /add-loyalty-points in chat. Agent runs the steps in order.

Verified .