O

order-tracking

Chrome Labs order tracking & returns demo

1read
https://googlechromelabs.github.io/webmcp-tools/demos/order-tracking/

demo · Commerce · JSON · API for agents

Tools 1 tool

get_order_statusread

Search orders in a given timeframe. Returns order number, shipping status and location

View tool JSON
{
  "name": "get_order_status",
  "kind": "read",
  "impl": "declarative",
  "description": "Search orders in a given timeframe. Returns order number, shipping status and location",
  "inputSchema": {
    "type": "object",
    "properties": {
      "timeframe": {
        "type": "string",
        "enum": [
          "today",
          "yesterday",
          "last_7_days",
          "last_30_days",
          "last_6_months"
        ]
      }
    },
    "required": [
      "timeframe"
    ]
  }
}