docs: expose unstable mode in mcp tools

This commit is contained in:
2026-04-28 19:03:42 -04:00
parent b6456047a6
commit 49e90d45f8
3 changed files with 120 additions and 0 deletions

View File

@@ -57,6 +57,11 @@ export const tools = [
description:
"Optional: Kijiji session cookies to bypass bot detection (JSON array or 'name1=value1; name2=value2')",
},
unstableFilter: {
type: "boolean",
description:
"optional: when enabled, listings priced more than 20% below the median are moved into an `unstableResults` bucket. Changes the response shape from a plain list to an object with `results` and `unstableResults`.",
},
},
required: ["query"],
},
@@ -81,6 +86,11 @@ export const tools = [
description: "Maximum number of items to return",
default: 5,
},
unstableFilter: {
type: "boolean",
description:
"optional: when enabled, listings priced more than 20% below the median are moved into an `unstableResults` bucket. Changes the response shape from a plain list to an object with `results` and `unstableResults`.",
},
},
required: ["query"],
},
@@ -134,6 +144,11 @@ export const tools = [
description: "Maximum number of items to return",
default: 5,
},
unstableFilter: {
type: "boolean",
description:
"optional: when enabled, listings priced more than 20% below the median are moved into an `unstableResults` bucket. Changes the response shape from a plain list to an object with `results` and `unstableResults`.",
},
},
required: ["query"],
},