AI Tools
Advanced multilingual spell checker with grammar correction, contextual suggestions, and writing improvement support for multiple languages
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/spell-checker' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter the text you want to check for spelling and grammar...","inputLanguage":"en","checkType":"comprehensive","correctionStyle":"moderate","outputLanguage":"en","includeSuggestions":true,"includeExplanations":false,"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/spell-checker| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | Enter any text in any supported language for comprehensive spelling and grammar checking |
| inputLanguage | select | Yes | Select the language of the text being checked |
| checkType | select | Yes | Choose the type of checking to perform |
| correctionStyle | select | Yes | Select the style of corrections and suggestions |
| 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-spell-checker": {
"name": "spell-checker",
"description": "Advanced multilingual spell checker with grammar correction, contextual suggestions, and writing improvement support for multiple languages",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=spell-checker",
"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": "spell-checker",
"arguments": {
"text": "Enter the text you want to check for spelling and grammar...",
"inputLanguage": "en",
"checkType": "comprehensive",
"correctionStyle": "moderate",
"outputLanguage": "en",
"includeSuggestions": true,
"includeExplanations": false,
"exportFormat": "readable"
}
}
}Questions or issues? Contact [email protected]
| Select the language for analysis output |
| includeSuggestions | checkbox | No | Include suggestions for better writing and expression |
| includeExplanations | checkbox | No | Include explanations for why corrections are needed |
| exportFormat | select | No | Choose the format for the analysis output |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}