Shorten text to at most max_length characters, replacing the cut tail with an ellipsis marker (optionally at a word boundary).
Free tier eligible — 500 calls/month with a free key from /pricing; x402 pay-per-call above quota.
| Parameter | Type | Required | Description |
|---|---|---|---|
text | string | required | Text to truncate |
max_length | integer | required | Maximum output length in characters |
ellipsis | string | optional | Ellipsis marker (default the single-char U+2026 '…') |
word_boundary | boolean | optional | Cut at the last whitespace before the limit instead of mid-word (default false) |
curl -s https://wingmanprotocol.com/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "text_truncate_ellipsis", "arguments": {"text": "hello from an agent", "max_length": 20}}}'curl -s https://wingmanprotocol.com/tools/text_truncate_ellipsis \
-H 'Content-Type: application/json' \
-d '{"text": "hello from an agent", "max_length": 20}'Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/text_truncate_ellipsis from your browser.
X-Payment header, or get a free key at /pricing (500 calls/month, no card, no crypto).