troostwijk_search_lots
Pack: troostwijk · Endpoint: https://gateway.pipeworx.io/troostwijk/mcp
Browse CURRENTLY-OPEN lots in one Troostwijk Auctions category — European industrial equipment, vehicles, real estate and bankruptcy/insolvency liquidations across NL/DE/BE/UK/PL/RO/IT and more. Returns live current bid, bid count, location and close time per lot. Get category_path from troostwijk_categories first. Sourced from troostwijkauctions.com/en/c/{category_path}.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
category_path | string | yes | Category path from troostwijk_categories, e.g. “agricultural/tractors/087e1bb8-5fb8-4e98-b5d8-1a0133422ae0” |
country | string | no | Optional ISO 3166-1 alpha-2 country code to filter by lot location, e.g. “nl”, “de”, “be” |
page | number | no | Result page, starting at 1 (each page holds up to 48 lots) |
Example call
Arguments
{
"category_path": "agricultural/tractors/087e1bb8-5fb8-4e98-b5d8-1a0133422ae0",
"country": "nl"
}
curl
curl -X POST https://gateway.pipeworx.io/troostwijk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"troostwijk_search_lots","arguments":{"category_path":"agricultural/tractors/087e1bb8-5fb8-4e98-b5d8-1a0133422ae0","country":"nl"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('troostwijk_search_lots', {
"category_path": "agricultural/tractors/087e1bb8-5fb8-4e98-b5d8-1a0133422ae0",
"country": "nl"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"troostwijk": {
"url": "https://gateway.pipeworx.io/troostwijk/mcp"
}
}
}
See Getting Started for client-specific install steps.