Gradient Generator

Generators REST API MCP

Generate a CSS linear, radial, or conic gradient from colour stops (2 to 10) and an angle, or from a preset (sunset, ocean, forest, fire, purple, cool). Returns the "background: ...;" rule, the bare gradient value, and the sorted colour stops.

This page documents the MCP tool findutils:gradient_generator. See the REST reference →

Call it over MCP

Tool name findutils:gradient_generator · no API keys · 120 requests/min per IP

Claude Code

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

Claude Desktop — claude_desktop_config.json

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

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "gradient_generator",
      "arguments": {
        "type": "linear",
        "angle": 90,
        "color_stops": [
          {
            "color": "#667eea",
            "position": 0
          },
          {
            "color": "#764ba2",
            "position": 100
          }
        ]
      }
    }
  }'

Input schema

Argument Type Required Description
type string (linear | radial | conic) no Gradient type. Default: "linear".
angle number no Angle in degrees (0-360) for linear and conic gradients. Default 90. Default: 90.
color_stops array no Colour stops, 2 to 10 items: { color: "#rrggbb", position: 0-100 }. Default: #667eea at 0%, #764ba2 at 100%.
preset string (sunset | ocean | forest | fire | purple | cool) no Use a preset palette instead of color_stops (evenly spaced stops).
radial_shape string (circle | ellipse) no Radial only: shape. Default: "circle".
radial_position string no Radial only: position keyword or lengths, e.g. "center", "top left", "50% 50%". Default "center". Default: "center".

Example arguments (verified)

{
  "type": "linear",
  "angle": 90,
  "color_stops": [
    {
      "color": "#667eea",
      "position": 0
    },
    {
      "color": "#764ba2",
      "position": 100
    }
  ]
}

Also a REST endpoint

The same tool answers plain HTTP at POST /api/tools/gradient-generator/execute — no key, 60 requests/min.

Open the REST reference for Gradient Generator →

More Generators tools