readability
Pack: textstats · Endpoint: https://gateway.pipeworx.io/textstats/mcp
Compute readability scores (keyless, offline): Flesch Reading Ease (0-100, higher = easier) and Flesch-Kincaid Grade Level, with the underlying word/sentence/syllable counts. Uses a syllable-estimation heuristic.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
text | string | yes | The text to score. |
Example call
Arguments
{
"text": "The cat sat on the mat. It was a sunny day."
}
curl
curl -X POST https://gateway.pipeworx.io/textstats/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"readability","arguments":{"text":"The cat sat on the mat. It was a sunny day."}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('readability', {
"text": "The cat sat on the mat. It was a sunny day."
});
More examples
{
"text": "The implementation of sophisticated algorithms necessitates comprehensive understanding of advanced mathematical principles and computational methodologies."
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"textstats": {
"url": "https://gateway.pipeworx.io/textstats/mcp"
}
}
}
See Getting Started for client-specific install steps.