AI Tools
Advanced AI text polisher that improves grammar, enhances expression, and refines writing style for better readability and impact
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/text-polisher' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter the text you want to polish and improve...","inputLanguage":"en","polishType":"comprehensive","styleTarget":"neutral","outputLanguage":"en","improvementLevel":"moderate","includeAnalysis":true,"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-polisher| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | Enter any text that needs improvement - essays, emails, articles, reports, or creative writing |
| inputLanguage | select | Yes | Select the language of your original text |
| polishType | select | Yes | Choose the type of polishing you need |
| styleTarget | select | Yes | Select the desired writing style |
| 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-polisher": {
"name": "text-polisher",
"description": "Advanced AI text polisher that improves grammar, enhances expression, and refines writing style for better readability and impact",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-polisher",
"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-polisher",
"arguments": {
"text": "Enter the text you want to polish and improve...",
"inputLanguage": "en",
"polishType": "comprehensive",
"styleTarget": "neutral",
"outputLanguage": "en",
"improvementLevel": "moderate",
"includeAnalysis": true,
"exportFormat": "readable"
}
}
}Questions or issues? Contact [email protected]
| Select the language for polished output |
| improvementLevel | select | Yes | Select how much you want the text to be improved |
| includeAnalysis | checkbox | No | Include in-depth analysis of improvements and writing suggestions |
| exportFormat | select | No | Choose the format for the polished output |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}