AI Tools
Corretor ortográfico multilingue avançado com correção gramatical, sugestões contextuais e melhoria de escrita
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/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"}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST https://api.elysiatools.com/pt/api/tools/spell-checker| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| text | textarea | Sim | Enter any text in any supported language for comprehensive spelling and grammar checking |
| inputLanguage | select | Sim | Select the language of the text being checked |
| checkType | select | Sim | Choose the type of checking to perform |
| correctionStyle | select | Sim | Select the style of corrections and suggestions |
| outputLanguage | select | Sim |
Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-spell-checker": {
"name": "spell-checker",
"description": "Corretor ortográfico multilingue avançado com correção gramatical, sugestões contextuais e melhoria de escrita",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=spell-checker",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus parâmetros:
{
"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 | Não | Include suggestions for better writing and expression |
| includeExplanations | checkbox | Não | Include explanations for why corrections are needed |
| exportFormat | select | Não | Choose the format for the analysis output |
Resultado de fluxo
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Dúvidas ou problemas? Contate [email protected]