# Glassmorphism Generator — REST API endpoint `glassmorphism-generator`

Generate the CSS for a glassmorphism (frosted glass) card: semi-transparent background, backdrop-filter blur and saturation (with the -webkit- prefix), border radius, and a lighter border. Returns the multi-line CSS block, each property, and the resolved settings. Presets: subtle, frosted, bold, dark.

- Category: generators
- 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/glassmorphism-generator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/glassmorphism-generator/
- Same tool on the other surface: https://findutils.com/mcp/glassmorphism-generator/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/glassmorphism-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "preset": "frosted"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/glassmorphism-generator
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `preset` | string (subtle \| frosted \| bold \| dark) | no | Start from a preset. Any other argument overrides the preset value. |
| `blur` | number | no | Backdrop blur in px (0 to 100). Default 10. Default: `10`. |
| `transparency` | number | no | Background opacity in percent (0 to 100). Default 20. Default: `20`. |
| `saturation` | number | no | Backdrop saturation in percent (0 to 300). Default 100. Default: `100`. |
| `border_radius` | number | no | Border radius in px (0 to 200). Default 16. Default: `16`. |
| `border_width` | number | no | Border width in px (0 to 20). Default 1. Default: `1`. |
| `color` | string | no | Glass tint as a hex colour (#rrggbb or #rgb). Default #ffffff. Default: `"#ffffff"`. |

Example arguments (verified):

```json
{
  "preset": "frosted"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

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

Then ask the client to call `findutils:glassmorphism_generator`. Full MCP reference: https://findutils.com/mcp/glassmorphism-generator/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
