{"name":"text_truncate_ellipsis","title":"Text Truncate with Ellipsis","category":"developer","description":"Shorten text to at most max_length characters, replacing the cut tail with an ellipsis marker (optionally at a word boundary).","price_usd":0.001,"input_schema":{"type":"object","properties":{"text":{"type":"string","description":"Text to truncate"},"max_length":{"type":"integer","description":"Maximum output length in characters"},"ellipsis":{"type":"string","description":"Ellipsis marker (default the single-char U+2026 '…')"},"word_boundary":{"type":"boolean","description":"Cut at the last whitespace before the limit instead of mid-word (default false)"}},"additionalProperties":false,"required":["text","max_length"]}}