create_listing

write · user-scoped

Create a SaaS listing on behalf of the authenticated user (the seller). The listing is submitted for review (status PENDING_REVIEW) before going live.

Input parameters

ParameterTypeDescription
titlerequiredstringBusiness name (max 80 chars).
taglinerequiredstringOne-line pitch (max 140 chars).
descriptionrequiredstringFull description (max 4000 chars).
categoryrequiredstring
askingPricerequirednumberAsking price.
mrrrequirednumberMonthly recurring revenue.
annualRevenuenumberAnnual revenue (defaults to mrr*12).
annualProfitnumberAnnual profit.
customersnumberCustomer count.
growthRatePctnumberMoM/YoY growth rate (percent).
ageMonthsnumberAge of the business in months.
monetizationstringMonetization model (e.g. Subscriptions).
urlstringProduct website.
techStackarrayTechnologies used.

Example request

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "create_listing",
    "arguments": {
      "title": "example",
      "tagline": "example",
      "description": "example",
      "category": "Developer Tools",
      "askingPrice": 50000,
      "mrr": 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