← WebMCP Directory

Tool tree

refunder.se

Commerce
https://www.refunder.se/
Cashback offers and participating stores in Sweden
Explore capabilities

Tools verified

refunder_resolve_cashback_deeplinkAnswer

Given a merchant URL or domain, return a Refunder cashback deeplink if Refunder partners with that store. The shopper must open the deeplink while logged in to Refunder to earn.

View tool JSON
{
  "name": "refunder_resolve_cashback_deeplink",
  "kind": "answer",
  "impl": "imperative",
  "description": "Given a merchant URL or domain, return a Refunder cashback deeplink if Refunder partners with that store. The shopper must open the deeplink while logged in to Refunder to earn.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "url": {
        "type": "string",
        "description": "Merchant URL or domain, e.g. https://www.zalando.se"
      }
    },
    "required": [
      "url"
    ]
  }
}
refunder_search_storesAnswer

Search Refunder partner stores and their cashback rates. Each result includes a deeplink the shopper opens (while logged in to Refunder) to shop with cashback.

View tool JSON
{
  "name": "refunder_search_stores",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search Refunder partner stores and their cashback rates. Each result includes a deeplink the shopper opens (while logged in to Refunder) to shop with cashback.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Store name or keyword."
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 50,
        "default": 10
      }
    },
    "required": [
      "query"
    ]
  }
}