Categories

Word Separator

Split text into individual words, with each word on a new line

Number each word for easy reference

Sort words by length (longest first)

Preserve URLs, emails, and other special text patterns

Keep original letter casing (upper/lower case)

Keep empty lines in the output

API Documentation

Request Endpoint

POST /en/api/tools/word-separator

Request Parameters

Parameter Name Type Required Description
textInput textarea Yes -
addLineNumbers checkbox No Number each word for easy reference
sortByLength checkbox No Sort words by length (longest first)
handleSpecialChars checkbox No Preserve URLs, emails, and other special text patterns
preserveOriginalCase checkbox No Keep original letter casing (upper/lower case)
includeEmptyLines checkbox No Keep empty lines in the output

Response Format

{
  "result": "Processed text content",
  "error": "Error message (optional)",
  "message": "Notification message (optional)",
  "metadata": {
    "key": "value"
  }
}
Text: Text

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-word-separator": {
      "name": "word-separator",
      "description": "Split text into individual words, with each word on a new line",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=word-separator",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]