← WebMCP Directory

Tool tree

bestprice.gr

liveCommerce
https://www.bestprice.gr/
bestprice.gr exposes WebMCP tools to AI agents.
Explore capabilities

page: /

search_bestpriceAnswer

Start a BestPrice product search and navigate this browser tab to the results.

View tool JSON
{
  "name": "search_bestprice",
  "kind": "answer",
  "impl": "imperative",
  "description": "Start a BestPrice product search and navigate this browser tab to the results.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "minLength": 2,
        "maxLength": 120,
        "description": "Product, brand, model, or shopping need to search for."
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  },
  "page": "/"
}

page: /cat/6964/sxolika-eidh.html

get_visible_productsAnswer

Return up to eight products currently rendered on this BestPrice search or category page.

View tool JSON
{
  "name": "get_visible_products",
  "kind": "answer",
  "impl": "imperative",
  "description": "Return up to eight products currently rendered on this BestPrice search or category page.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 8,
        "description": "Maximum products to return."
      }
    },
    "additionalProperties": false
  },
  "page": "/cat/6964/sxolika-eidh.html"
}
get_listing_filtersAnswer

Return the selected and available values from filters currently rendered on this listing page.

View tool JSON
{
  "name": "get_listing_filters",
  "kind": "answer",
  "impl": "imperative",
  "description": "Return the selected and available values from filters currently rendered on this listing page.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/cat/6964/sxolika-eidh.html"
}
apply_listing_filterAction

Apply one exact visible filter value using the same in-page navigation as a shopper.

View tool JSON
{
  "name": "apply_listing_filter",
  "kind": "act",
  "impl": "imperative",
  "description": "Apply one exact visible filter value using the same in-page navigation as a shopper.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "filter": {
        "type": "string",
        "minLength": 1,
        "maxLength": 64,
        "description": "Visible filter name or key."
      },
      "value": {
        "type": "string",
        "minLength": 1,
        "maxLength": 72,
        "description": "Exact visible filter value."
      }
    },
    "required": [
      "filter",
      "value"
    ],
    "additionalProperties": false
  },
  "page": "/cat/6964/sxolika-eidh.html"
}
clear_listing_filtersAction

Clear the filters currently applied to this BestPrice search or category page.

View tool JSON
{
  "name": "clear_listing_filters",
  "kind": "act",
  "impl": "imperative",
  "description": "Clear the filters currently applied to this BestPrice search or category page.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/cat/6964/sxolika-eidh.html"
}
get_listing_sort_optionsAnswer

Return the sorting options currently rendered on this BestPrice listing page.

View tool JSON
{
  "name": "get_listing_sort_options",
  "kind": "answer",
  "impl": "imperative",
  "description": "Return the sorting options currently rendered on this BestPrice listing page.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/cat/6964/sxolika-eidh.html"
}
apply_listing_sortAction

Apply one exact sorting option currently rendered on this BestPrice listing page.

View tool JSON
{
  "name": "apply_listing_sort",
  "kind": "act",
  "impl": "imperative",
  "description": "Apply one exact sorting option currently rendered on this BestPrice listing page.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "sort": {
        "type": "string",
        "minLength": 1,
        "maxLength": 72,
        "description": "Exact visible sorting option."
      }
    },
    "required": [
      "sort"
    ],
    "additionalProperties": false
  },
  "page": "/cat/6964/sxolika-eidh.html"
}

page: /item/2164235535/sentio-denim-bows-spiral-tetradio-rige-a4-70-fyllon-2-thematon-galazio-st11173.html

get_page_productAnswer

Return the product, current minimum price, rating, and offer count shown on this BestPrice item page.

View tool JSON
{
  "name": "get_page_product",
  "kind": "answer",
  "impl": "imperative",
  "description": "Return the product, current minimum price, rating, and offer count shown on this BestPrice item page.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/item/2164235535/sentio-denim-bows-spiral-tetradio-rige-a4-70-fyllon-2-thematon-galazio-st11173.html"
}
compare_page_offersAction

Compare up to four currently rendered offers by item price, shipping, delivered price, availability, and merchant rating.

View tool JSON
{
  "name": "compare_page_offers",
  "kind": "act",
  "impl": "imperative",
  "description": "Compare up to four currently rendered offers by item price, shipping, delivered price, availability, and merchant rating.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 4,
        "description": "Number of lowest-delivered-price offers to return, from 1 to 4."
      }
    },
    "additionalProperties": false
  },
  "page": "/item/2164235535/sentio-denim-bows-spiral-tetradio-rige-a4-70-fyllon-2-thematon-galazio-st11173.html"
}
get_product_specificationsAnswer

Return structured specifications for the product on this BestPrice item page, optionally focused on one specification section.

View tool JSON
{
  "name": "get_product_specifications",
  "kind": "answer",
  "impl": "imperative",
  "description": "Return structured specifications for the product on this BestPrice item page, optionally focused on one specification section.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "section": {
        "type": "string",
        "enum": [
          "all",
          "display",
          "processor",
          "memory",
          "storage",
          "battery",
          "camera",
          "connectivity",
          "dimensions",
          "general"
        ],
        "description": "Specification section to return. Use all for a concise overview."
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 16,
        "description": "Maximum number of specification facts to return, from 1 to 16."
      }
    },
    "additionalProperties": false
  },
  "page": "/item/2164235535/sentio-denim-bows-spiral-tetradio-rige-a4-70-fyllon-2-thematon-galazio-st11173.html"
}
summarize_price_historyAnswer

Return the current, lowest, and highest recorded prices plus recent and overall price direction for this BestPrice product.

View tool JSON
{
  "name": "summarize_price_history",
  "kind": "answer",
  "impl": "imperative",
  "description": "Return the current, lowest, and highest recorded prices plus recent and overall price direction for this BestPrice product.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/item/2164235535/sentio-denim-bows-spiral-tetradio-rige-a4-70-fyllon-2-thematon-galazio-st11173.html"
}
show_price_historyAnswer

Open or focus the price-history chart for the product currently shown on the BestPrice item page.

View tool JSON
{
  "name": "show_price_history",
  "kind": "answer",
  "impl": "imperative",
  "description": "Open or focus the price-history chart for the product currently shown on the BestPrice item page.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/item/2164235535/sentio-denim-bows-spiral-tetradio-rige-a4-70-fyllon-2-thematon-galazio-st11173.html"
}