troostwijk_lot_detail
Pack: troostwijk · Endpoint: https://gateway.pipeworx.io/troostwijk/mcp
Full detail for one Troostwijk lot within its auction: auction description, current/final bid, sale outcome, bid count, location. auction_slug comes from a search/sold-comps result url (the part after /en/a/); pass display_id to pick a specific lot out of a multi-lot auction (omit for a single-lot auction). Sourced from troostwijkauctions.com/en/a/{auction_slug}.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
auction_slug | string | yes | Auction URL slug, e.g. “afhaalveiling-pvc-laminaat-en-parket-vloeren-A1-46249” |
display_id | string | no | Optional specific lot display id within a multi-lot auction, e.g. “A1-46249-6” (from a search result’s display_id field) |
Example call
Arguments
{
"auction_slug": "afhaalveiling-pvc-laminaat-en-parket-vloeren-A1-46249",
"display_id": "A1-46249-6"
}
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_lot_detail","arguments":{"auction_slug":"afhaalveiling-pvc-laminaat-en-parket-vloeren-A1-46249","display_id":"A1-46249-6"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('troostwijk_lot_detail', {
"auction_slug": "afhaalveiling-pvc-laminaat-en-parket-vloeren-A1-46249",
"display_id": "A1-46249-6"
});
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.