# Json To Product Card — MCP tool `findutils:json_to_product_card`

Generate an e-commerce product card from JSON such as {"name","price","originalPrice","currency","rating","reviews","badges"} in one of 6 templates. Returns the card three ways: inline-style HTML, Tailwind CSS markup, and a React JSX component.

- Category: data
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/json-to-product-card/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/mcp/json-to-product-card/
- Same tool on the other surface: https://findutils.com/api/json-to-product-card/

## Connect

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "json_to_product_card",
      "arguments": {
        "json": "{\"name\":\"Premium Wireless Headphones\",\"price\":149.99,\"originalPrice\":199.99,\"currency\":\"$\",\"rating\":4.5,\"reviews\":1284,\"badges\":[\"Best Seller\"],\"inStock\":true}"
      }
    }
  }'
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `json` | string | yes | Product JSON: {"name": string, "price": number, "originalPrice"?: number, "currency"?: string, "image"?: url, "rating"?: 0-5, "reviews"?: number, "description"?: string, "badges"?: string[], "inStock"?: boolean, "category"?: string}. |
| `template` | string (classic \| modern \| dark \| horizontal \| minimal \| gradient) | no | Card template. Default "classic". Default: `"classic"`. |

Example arguments (verified):

```json
{
  "json": "{\"name\":\"Premium Wireless Headphones\",\"price\":149.99,\"originalPrice\":199.99,\"currency\":\"$\",\"rating\":4.5,\"reviews\":1284,\"badges\":[\"Best Seller\"],\"inStock\":true}"
}
```

Decoded `json` argument (readability only — send it as a string):

```json
{
  "name": "Premium Wireless Headphones",
  "price": 149.99,
  "originalPrice": 199.99,
  "currency": "$",
  "rating": 4.5,
  "reviews": 1284,
  "badges": [
    "Best Seller"
  ],
  "inStock": true
}
```

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/json-to-product-card/execute \
  -H "Content-Type: application/json" \
  -d '{
    "json": "{\"name\":\"Premium Wireless Headphones\",\"price\":149.99,\"originalPrice\":199.99,\"currency\":\"$\",\"rating\":4.5,\"reviews\":1284,\"badges\":[\"Best Seller\"],\"inStock\":true}"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/json-to-product-card
```

Full REST reference: https://findutils.com/api/json-to-product-card/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
