Data Analysis
Обнаруживает выбросы в числовых данных с использованием различных статистических методов, включая IQR, Z-score и модифицированный Z-score
Вызовите этот инструмент из своего кода на трёх языках.
curl -X POST 'https://api.elysiatools.com/ru/api/tools/outlier-detector' \
-H 'Content-Type: application/json' \
-d '{"dataInput":"Enter numerical data separated by delimiter...\n12.5, 15.2, 13.8, 45.6, 18.9, 16.1, 14.7, 17.3, 22.1","delimiter":"comma","customDelimiter":"Введите пользовательский разделитель","detectionMethod":"iqr","sensitivity":1.5,"includeStatistics":true,"outputFormat":"summary"}'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/outlier-detector| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| dataInput | textarea | Да | — |
| delimiter | select | Да | — |
| customDelimiter | text | Нет | — |
| detectionMethod | select | Да | — |
| sensitivity | number | Нет | — |
| includeStatistics |
Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-outlier-detector": {
"name": "outlier-detector",
"description": "Обнаруживает выбросы в числовых данных с использованием различных статистических методов, включая IQR, Z-score и модифицированный Z-score",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=outlier-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": "outlier-detector",
"arguments": {
"dataInput": "Enter numerical data separated by delimiter...\n12.5, 15.2, 13.8, 45.6, 18.9, 16.1, 14.7, 17.3, 22.1",
"delimiter": "comma",
"customDelimiter": "Введите пользовательский разделитель",
"detectionMethod": "iqr",
"sensitivity": 1.5,
"includeStatistics": true,
"outputFormat": "summary"
}
}
}| checkbox |
| Нет |
| — |
| outputFormat | select | Да | — |
Текстовый результат
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Вопросы или проблемы? Свяжитесь с [email protected]