Use Case
Use Case 1: Instantly generate a payment link for a customer
Scenario: A merchant needs to collect ₹100 from a customer for a food delivery order; without logging into the dashboard.
User prompt: "Create a payment link of Rs 100 for food delivery , send to Mr. A at mobile no. 991168xxxx"
What happens
- MCP server calls the create_link tool
- Generates a payment link for ₹100 addressed to the customer
- Returns the live payment link URL and link ID
- Merchant shares the link directly to collect payment
Use Case 2: Fetch details for Payment Links
Scenario: Merchant wants a quick update on their most recent payment links whether customers have paid, amounts collected, and current status.
User prompt: "Share me the payment details of the last 5 payment links that I have created"
What happens:
- MCP server calls fetch_link to retrieve details of the 5 most recent payment links
- Returns each link's status, amount, customer details, and creation date
- Merchant gets a quick snapshot of recent collection activity without opening the dashboard
Use Case 3: Pull recent transaction history in one prompt
Scenario: A merchant needs a quick summary of the last week of successful transactions; for reconciliation or a business health check.
User prompt: "Provide me all the transactions of the last week"
What happens:
- MCP server calls fetch_order_list with a 7-day range filtered for successful transactions
- Returns all matching orders with Order ID, amount, payment mode, and timestamps
- Provides a total record count at the end
- Merchant gets a complete reconciliation view in seconds
Use Case 4: Review recent refund activity
Scenario: A merchant wants to audit all refunds processed in the last 2 weeks to reconcile accounts or flag unusual refund patterns.
User prompt: "Share me the details of all the refunds in last 14 days"
What happens:
- MCP server calls fetch_refund_list with a 14-day time range
- Returns all 4 refunds with Order ID, Refund ID, amount, status, and timestamp
- Provides a summary: total refund count (4) and total amount refunded (₹4.00)
- Merchant gets a complete refund audit trail and can drill into any specific refund for more details