# Signature Generator — REST API endpoint `signature-generator`

Generate a typed signature as an SVG string: the name is set in a handwriting font (cursive, elegant, bold, or casual) in the chosen colour on a 600x200 white canvas. Returns the SVG plus the font family used.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/signature-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Jane Doe",
    "style": "cursive",
    "color": "#000000"
  }'

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `name` | string | yes | The name to sign (1-80 characters). |
| `style` | string (cursive \| elegant \| bold \| casual) | no | Handwriting style. Default "cursive". Default: `"cursive"`. |
| `color` | string | no | Ink colour as #rgb or #rrggbb. Default "#000000". Default: `"#000000"`. |

Example arguments (verified):

```json
{
  "name": "Jane Doe",
  "style": "cursive",
  "color": "#000000"
}
```

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:signature_generator`. Full MCP reference: https://findutils.com/mcp/signature-generator/

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