gunbroker_search_items

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

Search active GunBroker firearms-marketplace listings by keyword (e.g. “Glock 19”, “AR-15 lower”, “Henri 22 rifle”). Returns matching live listings with item IDs, titles, current/buy-now prices, bid counts, and time left. Public — needs only a GunBroker developer key (_apiKey). Supports pagination and sort.

Parameters

NameTypeRequiredDescription
_apiKeystringyesGunBroker developer key (X-DevKey). Required.
KeywordsstringnoSearch keywords for active listings.
PageSizenumbernoResults per page (default 25, max 300).
PageIndexnumbernoPage number, 1-based (default 1).
SortnumbernoGunBroker sort code (e.g. 0=best match, 1=ending soonest, 13=lowest price). Optional.

Example call

Arguments

{
  "_apiKey": "your-gunbroker-api-key",
  "Keywords": "Glock 19"
}

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_search_items","arguments":{"_apiKey":"your-gunbroker-api-key","Keywords":"Glock 19"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gunbroker_search_items', {
  "_apiKey": "your-gunbroker-api-key",
  "Keywords": "Glock 19"
});

More examples

{
  "_apiKey": "your-gunbroker-api-key",
  "Keywords": "AR-15 lower",
  "PageSize": 50,
  "PageIndex": 1,
  "Sort": 1
}

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 31, 2026