@trustrails/mcp-server 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,9 +86,9 @@ Search 26,000+ UK electronics products. Returns summary data (title, price, avai
|
|
|
86
86
|
- `brand` (string, optional) - Filter by brand, exact match (e.g., "Sony", "HP", "Apple")
|
|
87
87
|
- `category` (string, optional) - Filter by category: Laptops, Desktops, Tablets, Phones, TVs, Monitors, Headphones, Speakers, Cameras, Keyboards, Mice, Printers, Networking, Storage, Gaming, Wearables, Drones, Audio, Cables & Chargers.
|
|
88
88
|
- `lite` (boolean, optional) - Return trimmed product objects (reduces payload by ~80%). Always use for LLM integrations.
|
|
89
|
-
- `limit` (number, optional) - Maximum products to return (default
|
|
89
|
+
- `limit` (number, optional) - Maximum products to return (default 50, max 100)
|
|
90
90
|
|
|
91
|
-
**Returns:** Up to
|
|
91
|
+
**Returns:** Up to 50 products with summary data. With `lite: true`, returns only essential fields (id, title, brand, price, availability, image_url, purchase_url).
|
|
92
92
|
|
|
93
93
|
### `get_product`
|
|
94
94
|
|
package/dist/index.js
CHANGED
|
@@ -132,7 +132,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
132
132
|
},
|
|
133
133
|
limit: {
|
|
134
134
|
type: "number",
|
|
135
|
-
description: "Maximum number of products to return (default
|
|
135
|
+
description: "Maximum number of products to return (default 50, max 100)",
|
|
136
136
|
},
|
|
137
137
|
},
|
|
138
138
|
},
|