AI Tools
Erweiterte mehrsprachige Rechtschreibprüfung mit Grammatikkorrektur, kontextbezogenen Vorschlägen und Schreibverbesserung
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/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"}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/spell-checker| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| text | textarea | Ja | Enter any text in any supported language for comprehensive spelling and grammar checking |
| inputLanguage | select | Ja | Select the language of the text being checked |
| checkType | select | Ja | Choose the type of checking to perform |
| correctionStyle | select | Ja | Select the style of corrections and suggestions |
| outputLanguage | select | Ja |
Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-spell-checker": {
"name": "spell-checker",
"description": "Erweiterte mehrsprachige Rechtschreibprüfung mit Grammatikkorrektur, kontextbezogenen Vorschlägen und Schreibverbesserung",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=spell-checker",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"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 | Nein | Include suggestions for better writing and expression |
| includeExplanations | checkbox | Nein | Include explanations for why corrections are needed |
| exportFormat | select | Nein | Choose the format for the analysis output |
Stream-Ergebnis
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Fragen oder Probleme? Kontakt: [email protected]