AI Tools
Intelligent AI-powered text completion tool that continues your text naturally based on context, style, and intended direction
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/text-continuator' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter the text fragment you want to continue...","language":"en","continuationStyle":"natural","targetLength":"medium","tone":"neutral","maintainContext":true,"creativeLevel":"medium"}'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-continuator| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | Enter any text fragment that needs continuation - paragraphs, sentences, or partial thoughts |
| language | select | Yes | Select the language of your text |
| continuationStyle | select | Yes | Choose how you want the text to be continued |
| targetLength | select | Yes | Select how much continuation text you want |
| tone | 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-continuator": {
"name": "text-continuator",
"description": "Intelligent AI-powered text completion tool that continues your text naturally based on context, style, and intended direction",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-continuator",
"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-continuator",
"arguments": {
"text": "Enter the text fragment you want to continue...",
"language": "en",
"continuationStyle": "natural",
"targetLength": "medium",
"tone": "neutral",
"maintainContext": true,
"creativeLevel": "medium"
}
}
}Questions or issues? Contact [email protected]
| Select the tone for the continued text |
| maintainContext | checkbox | No | Whether to maintain complete context and coherence with original text |
| creativeLevel | select | Yes | Select the level of creativity in continuation |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}