Format Conversion
Genere cartes KPI, tendances et alertes
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/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}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/xlsx-kpi-dashboard-generator| Nom | Type | Requis | Description |
|---|---|---|---|
| kpisJson | textarea | Oui | — |
| trendsJson | textarea | Oui | — |
| title | text | Non | — |
| warningTolerancePercent | number | Non | — |
| includeConditional | checkbox | Non | — |
Résultat fichier
{
"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)"
}Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-xlsx-kpi-dashboard-generator": {
"name": "xlsx-kpi-dashboard-generator",
"description": "Genere cartes KPI, tendances et alertes",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=xlsx-kpi-dashboard-generator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"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
}
}
}Des questions ou un problème ? Contactez [email protected]