Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {} },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ElromEvedElElyon/revenue-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server