# Text Statistics — REST API endpoint `text-statistics`

Compute detailed text statistics: characters (with and without spaces), words, sentences, paragraphs, averages, plus Flesch Reading Ease (0-100) and Flesch-Kincaid Grade Level.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/text-statistics/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Hello world. It works."
  }'

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `text` | string | yes | The text to analyse. |

Example arguments (verified):

```json
{
  "text": "Hello world. It works."
}
```

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

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