troostwijk_sold_comps

Pack: troostwijk · Endpoint: https://gateway.pipeworx.io/troostwijk/mcp

Realized sale-price comps from Troostwijk Auctions’ recently-closed auctions. VERIFIED: closed lots with saleTerm CLOSED_RESERVE_PRICE_ALLOCATED or GUARANTEED_SALE_CLOSED carry a real hammer price in current_bid, and this tool returns ONLY those (outcome:“sold”) — reserve-not-met, declined and still-pending lots are filtered out, never reported as a price. Scans recently-closed auctions (bounded by max_auctions) and optionally filters by a keyword in the lot title and/or country. Sourced from troostwijkauctions.com/en/auctions?auctionBiddingStatuses=BIDDING_CLOSED plus each matching auction’s lot list.

Parameters

NameTypeRequiredDescription
querystringnoOptional keyword to match against lot titles, e.g. “generator”, “tractor” (case-insensitive substring; seller-written titles may be in the source country’s language)
countrystringnoOptional ISO 3166-1 alpha-2 country code to filter closed auctions by location, e.g. “nl”, “de”, “be”
max_auctionsnumbernoHow many recently-closed auctions to scan for sold lots, 1-10 (default 5). Higher finds more matches but costs more upstream requests per call.

Example call

Arguments

{
  "max_auctions": 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_sold_comps","arguments":{"max_auctions":6}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('troostwijk_sold_comps', {
  "max_auctions": 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.

Regenerated from source · build September 13, 2026