list_products
Retrieve available Padrao Bitcoin products for purchase through the claw-mcp-toolkit server.
Instructions
List all Padrao Bitcoin products available for purchase
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/modules/finance.ts:112-114 (handler)The handler function for the 'list_products' tool, which returns a formatted Markdown string listing available products from Padrao Bitcoin.
server.tool("list_products", "List all Padrao Bitcoin products available for purchase", {}, async () => { return { content: [{ type: "text", text: `# Padrao Bitcoin Products\n\n| Product | Price | Type |\n|---------|-------|------|\n| **STBTCx Token** | ~$1/token | Solana memecoin |\n| **ClawChat Pro** | $4.99/mo | AI subscription |\n| **ClawChat Ultra** | $19.99/mo | AI subscription |\n| **Zero to $1M Book** | R$29.90 | Digital book |\n| **SintexOS License** | $9.99 | Software |\n| **claw-mcp-toolkit** | FREE (MIT) | Open source |\n\n## How to Buy\n- **STBTCx**: Use \`buy_stbtcx\` tool or visit pump.fun\n- **Subscriptions**: Visit https://sintex.ai/clawchat.html\n- **Book**: Coming on Hotmart\n- **SintexOS**: Visit https://sintex.ai/os.html\n\n*Company: Padrao Bitcoin (CNPJ 51.148.891/0001-69)*` }] }; });