Format Conversion
Создает KPI-карточки, тренды и предупреждения
Вызовите этот инструмент из своего кода на трёх языках.
curl -X POST 'https://api.elysiatools.com/ru/api/tools/xlsx-kpi-dashboard-generator' \
-H 'Content-Type: application/json' \
-d '{"kpisJson":"[\n {\n \"name\": \"Revenue\",\n \"value\": 122000,\n \"target\": 110000,\n \"direction\": \"higher\",\n \"unit\": \"$\"\n },\n {\n \"name\": \"Gross Margin\",\n \"value\": 34,\n \"target\": 38,\n \"direction\": \"higher\",\n \"unit\": \"%\"\n },\n {\n \"name\": \"CAC\",\n \"value\": 54,\n \"target\": 48,\n \"direction\": \"lower\",\n \"unit\": \"$\"\n },\n {\n \"name\": \"Churn\",\n \"value\": 2.1,\n \"target\": 2.5,\n \"direction\": \"lower\",\n \"unit\": \"%\"\n }\n]","trendsJson":"[\n {\n \"period\": \"2026-01\",\n \"Revenue\": 98000,\n \"Gross Margin\": 33,\n \"CAC\": 50,\n \"Churn\": 2.9\n },\n {\n \"period\": \"2026-02\",\n \"Revenue\": 105000,\n \"Gross Margin\": 35,\n \"CAC\": 52,\n \"Churn\": 2.5\n },\n {\n \"period\": \"2026-03\",\n \"Revenue\": 122000,\n \"Gross Margin\": 34,\n \"CAC\": 54,\n \"Churn\": 2.1\n }\n]","title":"Monthly KPI Dashboard","warningTolerancePercent":10,"includeConditional":true}'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/xlsx-kpi-dashboard-generator| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| kpisJson | textarea | Да | — |
| trendsJson | textarea | Да | — |
| title | text | Нет | — |
| warningTolerancePercent | number | Нет | — |
| includeConditional | checkbox | Нет | — |
Файловый результат
{
"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)"
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-xlsx-kpi-dashboard-generator": {
"name": "xlsx-kpi-dashboard-generator",
"description": "Создает KPI-карточки, тренды и предупреждения",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=xlsx-kpi-dashboard-generator",
"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": "xlsx-kpi-dashboard-generator",
"arguments": {
"kpisJson": "[\n {\n \"name\": \"Revenue\",\n \"value\": 122000,\n \"target\": 110000,\n \"direction\": \"higher\",\n \"unit\": \"$\"\n },\n {\n \"name\": \"Gross Margin\",\n \"value\": 34,\n \"target\": 38,\n \"direction\": \"higher\",\n \"unit\": \"%\"\n },\n {\n \"name\": \"CAC\",\n \"value\": 54,\n \"target\": 48,\n \"direction\": \"lower\",\n \"unit\": \"$\"\n },\n {\n \"name\": \"Churn\",\n \"value\": 2.1,\n \"target\": 2.5,\n \"direction\": \"lower\",\n \"unit\": \"%\"\n }\n]",
"trendsJson": "[\n {\n \"period\": \"2026-01\",\n \"Revenue\": 98000,\n \"Gross Margin\": 33,\n \"CAC\": 50,\n \"Churn\": 2.9\n },\n {\n \"period\": \"2026-02\",\n \"Revenue\": 105000,\n \"Gross Margin\": 35,\n \"CAC\": 52,\n \"Churn\": 2.5\n },\n {\n \"period\": \"2026-03\",\n \"Revenue\": 122000,\n \"Gross Margin\": 34,\n \"CAC\": 54,\n \"Churn\": 2.1\n }\n]",
"title": "Monthly KPI Dashboard",
"warningTolerancePercent": 10,
"includeConditional": true
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]