AI Tools
Analysieren Sie Text-Simentiment und emotionalen Ton mit detaillierter Aufschlüsselung von positiven, negativen und neutralen Emotionen
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/text-sentiment-analyzer' \
-H 'Content-Type: application/json' \
-d '{"text":"Enter the text you want to analyze for sentiment and emotions...","analysisDepth":"detailed","emotionType":"general","language":"en","includeSuggestions":true,"includeStatistics":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/text-sentiment-analyzer| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| text | textarea | Ja | Enter any text - reviews, comments, messages, articles, or personal writing for sentiment analysis |
| analysisDepth | select | Ja | Choose the depth of sentiment analysis |
| emotionType | select | Ja | Select the type of emotions to focus on in the analysis |
| language | select | Ja | Select the language of the text being analyzed |
| includeSuggestions | checkbox |
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-text-sentiment-analyzer": {
"name": "text-sentiment-analyzer",
"description": "Analysieren Sie Text-Simentiment und emotionalen Ton mit detaillierter Aufschlüsselung von positiven, negativen und neutralen Emotionen",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-sentiment-analyzer",
"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": "text-sentiment-analyzer",
"arguments": {
"text": "Enter the text you want to analyze for sentiment and emotions...",
"analysisDepth": "detailed",
"emotionType": "general",
"language": "en",
"includeSuggestions": true,
"includeStatistics": false,
"exportFormat": "readable"
}
}
}| Include suggestions for better emotional understanding and communication |
| includeStatistics | checkbox | Nein | Include emotion statistics, percentages, and data visualization |
| 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]