make_offer

write · user-scoped

Submit an offer on an ACTIVE listing as the authenticated buyer. You cannot make an offer on your own listing.

Input parameters

ParameterTypeDescription
listingIdrequiredstringListing to bid on.
amountrequirednumberOffer amount.
messagestringOptional note to the seller (max 2000 chars).

Example request

A JSON-RPC 2.0 tools/call over the StackTrade MCP endpoint.

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "make_offer",
    "arguments": {
      "listingId": "lst_pixelforms",
      "amount": 10
    }
  }
}

Authentication

This is a write tool: it requires a bearer token scoped to an authenticated StackTrade user and acts only within that user's permissions. Get a free MCP token →

Other MCP tools