shopgoodwill_item

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

Full detail for one ShopGoodwill auction lot by item id: description, current/minimum bid, bid history (bidder names masked by the site), buy-now price, seller Goodwill organization, shipping and handling, image URLs and end time. Item ids come from shopgoodwill_search or shopgoodwill_sold_search. Sourced from the shopgoodwill.com item API.

Parameters

NameTypeRequiredDescription
item_idnumberyesShopGoodwill item id, e.g. 275778141

Example call

Arguments

{
  "item_id": 275778141
}

curl

curl -X POST https://gateway.pipeworx.io/shopgoodwill/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"shopgoodwill_item","arguments":{"item_id":275778141}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('shopgoodwill_item', {
  "item_id": 275778141
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 5, 2026