AI Tools
Intelligently convert text between different writing styles. Perfect for emails, articles, reports, and various content types
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/text-style-converter' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter the text you want to convert...","fromStyle":"auto","toStyle":"casual","targetAudience":"general","context":"Describe the usage scenario (optional)...","language":"en"}'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-style-converter| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | Any text content that needs style conversion - emails, articles, reports, messages, etc. |
| fromStyle | select | No | — |
| toStyle | select | Yes | — |
| targetAudience | select | No | — |
| context | textarea | No | E.g., "business email to clients", "social media post", "academic paper", "marketing copy" |
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-style-converter": {
"name": "text-style-converter",
"description": "Intelligently convert text between different writing styles. Perfect for emails, articles, reports, and various content types",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-style-converter",
"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-style-converter",
"arguments": {
"text": "Enter the text you want to convert...",
"fromStyle": "auto",
"toStyle": "casual",
"targetAudience": "general",
"context": "Describe the usage scenario (optional)...",
"language": "en"
}
}
}Questions or issues? Contact [email protected]
| language | select | No | — |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}