AI Tools
Advanced AI text expander that transforms brief content into comprehensive, detailed, and engaging text with multiple expansion strategies
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/text-expander' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter the brief text you want to expand...","inputLanguage":"en","expansionType":"detailed","targetLength":"medium","outputLanguage":"en","expansionStyle":"neutral","exportFormat":"readable"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/text-expander| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | Enter any brief text that needs expansion - outlines, summaries, short paragraphs, or ideas |
| inputLanguage | select | Yes | Select the language of your original text |
| expansionType | select | Yes | Choose the type of expansion you need |
| targetLength | select | Yes | Select how much you want the text to be expanded |
| outputLanguage | select | Yes |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-text-expander": {
"name": "text-expander",
"description": "Advanced AI text expander that transforms brief content into comprehensive, detailed, and engaging text with multiple expansion strategies",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-expander",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "text-expander",
"arguments": {
"text": "Enter the brief text you want to expand...",
"inputLanguage": "en",
"expansionType": "detailed",
"targetLength": "medium",
"outputLanguage": "en",
"expansionStyle": "neutral",
"exportFormat": "readable"
}
}
}Questions or issues? Contact [email protected]
| Select the language for expanded output |
| expansionStyle | select | Yes | Select the writing style for expansion |
| exportFormat | select | No | Choose the format for the expanded output |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}