Data Analysis
Строит прогноз по CSV или JSON временным рядам и показывает тренд, сезонность и остатки в одном отчете
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/time-series-forecast-seasonality-analyzer' \
-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-forecast-seasonality-analyzer' \
-F 'seriesInput=timestamp,value
2026-01-01,120
2026-01-02,128
2026-01-03,132
2026-01-04,125
2026-01-05,140
2026-01-06,148
2026-01-07,145
2026-01-08,126
2026-01-09,133
2026-01-10,138' \
-F 'dataFile=/path/to/file.ext' \
-F 'timestampColumn=timestamp' \
-F 'valueColumn=value' \
-F 'model=arima' \
-F 'forecastPeriods=8' \
-F 'seasonLength=7' \
-F 'confidenceLevel=0.95' \
-F 'exportFormat=json'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/time-series-forecast-seasonality-analyzer| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| seriesInput | textarea | Нет | — |
| dataFile | fileнужна загрузка | Нет | — |
| timestampColumn | text | Да | — |
| valueColumn | text | Да | — |
| model | select | Нет | — |
| forecastPeriods | number | Нет | — |
| seasonLength | number | Нет | — |
| confidenceLevel | select | Нет | — |
| exportFormat | select | Нет | — |
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-forecast-seasonality-analyzer": {
"name": "time-series-forecast-seasonality-analyzer",
"description": "Строит прогноз по CSV или JSON временным рядам и показывает тренд, сезонность и остатки в одном отчете",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=time-series-forecast-seasonality-analyzer",
"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-forecast-seasonality-analyzer",
"arguments": {
"seriesInput": "timestamp,value\n2026-01-01,120\n2026-01-02,128\n2026-01-03,132\n2026-01-04,125\n2026-01-05,140\n2026-01-06,148\n2026-01-07,145\n2026-01-08,126\n2026-01-09,133\n2026-01-10,138",
"dataFile": "https://example.com/file.ext",
"timestampColumn": "timestamp",
"valueColumn": "value",
"model": "arima",
"forecastPeriods": 8,
"seasonLength": 7,
"confidenceLevel": "0.95",
"exportFormat": "json"
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]