gunbroker_get_item

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

Get full details for a single GunBroker listing by item ID — title, description, prices, seller, shipping, condition, category, and time remaining. Public — needs only a GunBroker developer key (_apiKey).

Parameters

NameTypeRequiredDescription
_apiKeystringyesGunBroker developer key (X-DevKey). Required.
itemIDstringyesGunBroker numeric item ID.

Example call

Arguments

{
  "_apiKey": "your-gunbroker-api-key",
  "itemID": "123456789"
}

curl

curl -X POST https://gateway.pipeworx.io/gunbroker/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gunbroker_get_item","arguments":{"_apiKey":"your-gunbroker-api-key","itemID":"123456789"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gunbroker_get_item', {
  "_apiKey": "your-gunbroker-api-key",
  "itemID": "123456789"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 30, 2026