← WebMCP Directory

Tool tree

tootemaailm.ee

Commerce
https://tootemaailm.ee/
An Estonian online department store with product search and navigation to products and the shopping cart.
Explore capabilities

Tools verified

open_cartAction

Navigate to the shopping cart page.

View tool JSON
{
  "name": "open_cart",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate to the shopping cart page.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
open_productAction

Navigate the browser to a given Tootemaailm product page.

View tool JSON
{
  "name": "open_product",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate the browser to a given Tootemaailm product page.",
  "inputSchema": {
    "type": "object",
    "required": [
      "url"
    ],
    "properties": {
      "url": {
        "type": "string",
        "description": "Full URL of the product page to open"
      }
    }
  }
}
search_productsAnswer

Search products in the Tootemaailm store by keyword with optional pagination.

View tool JSON
{
  "name": "search_products",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search products in the Tootemaailm store by keyword with optional pagination.",
  "inputSchema": {
    "type": "object",
    "required": [
      "query"
    ],
    "properties": {
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "query": {
        "type": "string",
        "description": "Search keyword"
      }
    }
  }
}