AI Tools
Correcteur orthographique multilingue avancé avec correction grammaticale, suggestions contextuelles et amélioration d'écriture pour plusieurs langues
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/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"}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/spell-checker| Nom | Type | Requis | Description |
|---|---|---|---|
| text | textarea | Oui | Enter any text in any supported language for comprehensive spelling and grammar checking |
| inputLanguage | select | Oui | Select the language of the text being checked |
| checkType | select | Oui | Choose the type of checking to perform |
| correctionStyle | select | Oui | Select the style of corrections and suggestions |
| outputLanguage | select |
Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-spell-checker": {
"name": "spell-checker",
"description": "Correcteur orthographique multilingue avancé avec correction grammaticale, suggestions contextuelles et amélioration d'écriture pour plusieurs langues",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=spell-checker",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"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 | Non | Include suggestions for better writing and expression |
| includeExplanations | checkbox | Non | Include explanations for why corrections are needed |
| exportFormat | select | Non | Choose the format for the analysis output |
Résultat flux
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Des questions ou un problème ? Contactez [email protected]