AI Tools
Продвинутый многоязычный проверитель орфографии с грамматической коррекцией, контекстными предложениями и улучшением письма
Вызовите этот инструмент из своего кода на трёх языках.
curl -X POST 'https://api.elysiatools.com/ru/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"}'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/spell-checker| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| text | textarea | Да | Enter any text in any supported language for comprehensive spelling and grammar checking |
| inputLanguage | select | Да | Select the language of the text being checked |
| checkType | select | Да | Choose the type of checking to perform |
| correctionStyle | select | Да | Select the style of corrections and suggestions |
| outputLanguage | select | Да |
Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-spell-checker": {
"name": "spell-checker",
"description": "Продвинутый многоязычный проверитель орфографии с грамматической коррекцией, контекстными предложениями и улучшением письма",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=spell-checker",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"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"
}
}
}| Select the language for analysis output |
| includeSuggestions | checkbox | Нет | Include suggestions for better writing and expression |
| includeExplanations | checkbox | Нет | Include explanations for why corrections are needed |
| exportFormat | select | Нет | Choose the format for the analysis output |
Потоковый результат
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Вопросы или проблемы? Свяжитесь с [email protected]