update_listing

write · user-scoped

Update fields on a listing the authenticated user owns. Only the supplied fields change. Sold listings cannot be edited.

Input parameters

ParameterTypeDescription
idrequiredstringListing id to update.
titlestring
taglinestring
descriptionstring
categorystring
askingPricenumber
mrrnumber
annualRevenuenumber
annualProfitnumber
customersnumber
growthRatePctnumber
ageMonthsnumber
monetizationstring
urlstring
techStackarray

Example request

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update_listing",
    "arguments": {
      "id": "lst_pixelforms"
    }
  }
}

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