get_order_status
unverifiedv0.1Search orders in a given timeframe. Returns order number, shipping status, and location.
Updated 6/6/2026 · Created 6/6/2026
Input Schema
{
"type": "object",
"required": [
"timeframe"
],
"properties": {
"timeframe": {
"enum": [
"today",
"yesterday",
"last_7_days",
"last_30_days",
"last_6_months"
],
"type": "string",
"description": "Timeframe for the order lookup"
}
}
}Full Contract
{
"name": "get_order_status",
"description": "Search orders in a given timeframe. Returns order number, shipping status, and location.",
"inputSchema": {
"type": "object",
"required": [
"timeframe"
],
"properties": {
"timeframe": {
"enum": [
"today",
"yesterday",
"last_7_days",
"last_30_days",
"last_6_months"
],
"type": "string",
"description": "Timeframe for the order lookup"
}
}
}
}GET /api/tool/googlechromelabs.github.io/webmcp-tools/demos/order-tracking/get_order_status