AI Tools
Corrector ortográfico multilingüe avanzado con corrección gramatical, sugerencias contextuales y mejora de escritura para múltiples idiomas
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/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"}'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/spell-checker| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| text | textarea | Sí | Enter any text in any supported language for comprehensive spelling and grammar checking |
| inputLanguage | select | Sí | Select the language of the text being checked |
| checkType | select | Sí | Choose the type of checking to perform |
| correctionStyle | select | Sí | Select the style of corrections and suggestions |
| outputLanguage | select |
Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-spell-checker": {
"name": "spell-checker",
"description": "Corrector ortográfico multilingüe avanzado con corrección gramatical, sugerencias contextuales y mejora de escritura para múltiples idiomas",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=spell-checker",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus 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 | 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 |
Resultado de flujo
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}¿Dudas o problemas? Contacta con [email protected]