product_catalog
List all products and track their monetization status to identify revenue opportunities and monitor deadlines.
Instructions
List all products and their monetization status
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:532-549 (handler)Handler implementation for the product_catalog tool, which returns a static list of products and their details.
case "product_catalog": { const products = [ { name: "claw-mcp-toolkit", type: "Open Source MCP", price: "Free (MIT)", status: "LIVE", url: "github.com/ElromEvedElElyon/claw-mcp-toolkit", revenue: "Sponsorship / Consulting" }, { name: "ClawChat Pro v1.0", type: "AI Chat SaaS", price: "$9.99/mo", status: "LIVE on sintex.ai", revenue: "Stripe subscription" }, { name: "SintexOS", type: "AI Operating System", price: "$29.99", status: "LIVE on sintex.ai", revenue: "One-time purchase" }, { name: "Zero to $1M Book", type: "Digital Book", price: "$9.99", status: "WRITTEN (175K words)", revenue: "Gumroad / Amazon KDP" }, { name: "FLASH Payment System", type: "Payment Infrastructure", price: "Enterprise", status: "BUILT (99 tests)", revenue: "Licensing / SaaS" }, { name: "bUSD1 (BITCOIN•USD•ONE)", type: "Runes Stablecoin", price: "Peg: $1.00", status: "ETCHED (0 mints)", revenue: "Mint fees + DeFi" }, { name: "STBTCx", type: "Solana Token", price: "Market", status: "LAUNCHED (not graduated)", revenue: "Trading / LP" }, { name: "revenue-mcp", type: "Revenue Intelligence MCP", price: "Free (MIT)", status: "NEW", revenue: "Consulting / Premium features" }, ]; return { content: [{ type: "text", text: `PRODUCT CATALOG (${products.length} products):\n\n${products.map((p) => `${p.name}\n Type: ${p.type} | Price: ${p.price}\n Status: ${p.status}\n Revenue: ${p.revenue}`).join("\n\n")}`, }], }; } - src/index.ts:358-362 (registration)Registration of the product_catalog tool within the server tool definition array.
{ name: "product_catalog", description: "List all products and their monetization status", inputSchema: { type: "object" as const, properties: {} }, },