Data Analysis
Загружает временной ряд в CSV или JSON, находит аномалии по Z-Score и IQR и возвращает отчет с графиком
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/time-series-anomaly-detector' \
-F 'file=@/path/to/dataFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/ru/api/tools/time-series-anomaly-detector' \
-F 'rawInput=timestamp,value
2026-03-01,110
2026-03-02,112
2026-03-03,109
2026-03-04,315
2026-03-05,111' \
-F 'dataFile=/path/to/file.ext' \
-F 'timestampColumn=timestamp' \
-F 'valueColumn=value' \
-F 'detectionMethod=both' \
-F 'zScoreThreshold=2.5' \
-F 'seasonalityWindow=0'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/time-series-anomaly-detector| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| rawInput | textarea | Нет | — |
| dataFile | fileнужна загрузка | Нет | — |
| timestampColumn | text | Нет | — |
| valueColumn | text | Нет | — |
| detectionMethod | select | Нет | — |
| zScoreThreshold | number | Нет | — |
| seasonalityWindow | number | Нет | — |
HTML-результат
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-time-series-anomaly-detector": {
"name": "time-series-anomaly-detector",
"description": "Загружает временной ряд в CSV или JSON, находит аномалии по Z-Score и IQR и возвращает отчет с графиком",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=time-series-anomaly-detector",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "time-series-anomaly-detector",
"arguments": {
"rawInput": "timestamp,value\n2026-03-01,110\n2026-03-02,112\n2026-03-03,109\n2026-03-04,315\n2026-03-05,111",
"dataFile": "https://example.com/file.ext",
"timestampColumn": "timestamp",
"valueColumn": "value",
"detectionMethod": "both",
"zScoreThreshold": 2.5,
"seasonalityWindow": 0
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]