Format Conversion
Erstellt eine Mappe mit Uebersicht, Details, Anomalien und Dictionary
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/xlsx-multi-tab-report-pack' \
-H 'Content-Type: application/json' \
-d '{"packTitle":"Risk Review Report Pack","overviewJson":"{\n \"owner\": \"Data Governance\",\n \"period\": \"2026-03\",\n \"source\": \"ERP\"\n}","detailJson":"[\n {\n \"id\": 1,\n \"account\": \"A-100\",\n \"amount\": 1200,\n \"status\": \"ok\"\n },\n {\n \"id\": 2,\n \"account\": \"A-200\",\n \"amount\": -20,\n \"status\": \"refund\"\n },\n {\n \"id\": 3,\n \"account\": \"A-300\",\n \"amount\": 550000,\n \"status\": \"check\"\n }\n]","anomalyRulesJson":"{\n \"amount\": {\n \"min\": 0,\n \"max\": 100000\n }\n}","includeAutoAnomaly":true,"autoExtremeThreshold":200000,"dictionaryJson":"[\n { \"field\": \"amount\", \"type\": \"number\", \"description\": \"Order amount\", \"example\": \"1200\" }\n]"}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/xlsx-multi-tab-report-pack| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| packTitle | text | Nein | — |
| overviewJson | textarea | Ja | — |
| detailJson | textarea | Ja | — |
| anomalyRulesJson | textarea | Nein | — |
| includeAutoAnomaly | checkbox | Nein | — |
| autoExtremeThreshold | number | Nein | — |
| dictionaryJson | textarea | Nein | — |
Dateiergebnis
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}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-xlsx-multi-tab-report-pack": {
"name": "xlsx-multi-tab-report-pack",
"description": "Erstellt eine Mappe mit Uebersicht, Details, Anomalien und Dictionary",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=xlsx-multi-tab-report-pack",
"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": "xlsx-multi-tab-report-pack",
"arguments": {
"packTitle": "Risk Review Report Pack",
"overviewJson": "{\n \"owner\": \"Data Governance\",\n \"period\": \"2026-03\",\n \"source\": \"ERP\"\n}",
"detailJson": "[\n {\n \"id\": 1,\n \"account\": \"A-100\",\n \"amount\": 1200,\n \"status\": \"ok\"\n },\n {\n \"id\": 2,\n \"account\": \"A-200\",\n \"amount\": -20,\n \"status\": \"refund\"\n },\n {\n \"id\": 3,\n \"account\": \"A-300\",\n \"amount\": 550000,\n \"status\": \"check\"\n }\n]",
"anomalyRulesJson": "{\n \"amount\": {\n \"min\": 0,\n \"max\": 100000\n }\n}",
"includeAutoAnomaly": true,
"autoExtremeThreshold": 200000,
"dictionaryJson": "[\n { \"field\": \"amount\", \"type\": \"number\", \"description\": \"Order amount\", \"example\": \"1200\" }\n]"
}
}
}Fragen oder Probleme? Kontakt: [email protected]