# Qr Text — REST API endpoint `qr-text`

Render an ASCII-art QR-style grid for a short text input. Visual approximation only — not a standards-compliant QR.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/qr-text/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "hello"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/qr-text
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `text` | string | yes | Text to encode (max 200 chars). |

Example arguments (verified):

```json
{
  "text": "hello"
}
```

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:qr_text`. Full MCP reference: https://findutils.com/mcp/qr-text/

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