# Worksheet Generator — REST API endpoint `worksheet-generator`

Generate a printable math worksheet of addition, subtraction, multiplication, division, or mixed problems at easy (1–10), medium (1–50), or hard (1–100) difficulty, and return the numbered problems with answers, a plain-text worksheet, and an answer-key text. Subtraction never goes negative and division always divides evenly. Pass a seed for a reproducible sheet.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/worksheet-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "type": "addition",
    "difficulty": "easy",
    "count": 10,
    "seed": 1
  }'

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `type` | string (addition \| subtraction \| multiplication \| division \| mixed) | no | Operation type. Default "addition". Default: `"addition"`. |
| `difficulty` | string (easy \| medium \| hard) | no | Number range: easy 1–10, medium 1–50, hard 1–100. Default "easy". Default: `"easy"`. |
| `count` | integer | no | Number of problems. Default 20. Default: `20`. |
| `title` | string | no | Worksheet title. Default "Math Worksheet". |
| `seed` | integer | no | Random seed. Same seed and options → same problems. |

Example arguments (verified):

```json
{
  "type": "addition",
  "difficulty": "easy",
  "count": 10,
  "seed": 1
}
```

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

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