bigiron_search

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

Search active US ag/construction/livestock/transportation equipment auctions on bigiron.com — a national online timed-auction platform. Returns live listings with current bid, Buy-It-Now asking price (if offered — NOT a sold price), make/model/year, seller, location and auction close time. Sourced from bigiron.com/Search.

Parameters

NameTypeRequiredDescription
querystringyesSearch keywords, e.g. “tractor”, “skid steer”, “Angus bred heifers”
pagenumbernoResult page, starting at 1 (each page holds 20 lots)
limitnumbernoMax lots to return, 1-20 (default 20)

Example call

Arguments

{
  "query": "tractor",
  "limit": 3
}

curl

curl -X POST https://gateway.pipeworx.io/bigiron/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bigiron_search","arguments":{"query":"tractor","limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('bigiron_search', {
  "query": "tractor",
  "limit": 3
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "bigiron": {
      "url": "https://gateway.pipeworx.io/bigiron/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 13, 2026