# Password Generate — REST API endpoint `password-generate`

Generate cryptographically-strong passwords. Guarantees at least one char from each enabled class.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/password-generate/execute \
  -H "Content-Type: application/json" \
  -d '{
    "length": 16
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/password-generate
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `length` | integer | no | Password length (4-128). Defaults to 16. Default: `16`. |
| `count` | integer | no | How many passwords to generate (1-20). Default: `1`. |
| `uppercase` | boolean | no | Include A-Z. Defaults to true. Default: `true`. |
| `lowercase` | boolean | no | Include a-z. Defaults to true. Default: `true`. |
| `numbers` | boolean | no | Include 0-9. Defaults to true. Default: `true`. |
| `symbols` | boolean | no | Include symbols. Defaults to true. Default: `true`. |

Example arguments (verified):

```json
{
  "length": 16
}
```

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:password_generate`. Full MCP reference: https://findutils.com/mcp/password-generate/

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