# Worksheet Generator — MCP tool `findutils: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/mcp/worksheet-generator/
- Same tool on the other surface: https://findutils.com/api/worksheet-generator/

## 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": "worksheet_generator",
      "arguments": {
        "type": "addition",
        "difficulty": "easy",
        "count": 10,
        "seed": 1
      }
    }
  }'
```

## 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
}
```

## Also a REST endpoint

```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
```

Full REST reference: https://findutils.com/api/worksheet-generator/ · 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
