Utilities
Collez les lignes de votre facture : classification et explication du fixed customer charge, de la demande, des prix heures pleines/creuses, des riders transport/distribution, fonds renouvelables, découplage, capacity tag ; conversion kWh↔Btu↔therm↔Ccf↔m³↔tonne-heure aux facteurs EIA ; détection des frais fixes cachés et projections d'économies.
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'http://127.0.0.1:3003/fr/api/tools/csr-cfl-cfl-mhc-hfa-btu-ton-hours-utility-bill-line-item-validator-and-rgp-peak-explainer' \
-H 'Content-Type: application/json' \
-d '{"billLines":"Customer Charge; 14.75; 1; $/mo\nOff-Peak Energy Charge; 79.17; 2100; kWh @ 0.0377\nOn-Peak Energy Charge; 245.10; 1140; kWh @ 0.215\nDemand Charge; 285.20; 12.4; kW @ 23.00\nTransmission Service Rider; 25.92; 3240; kWh\nRenewable Portfolio Standard (RPS); 8.10; 3240; kWh\nDecoupling Rider; 4.60; 1; $/mo\nGrid Access Charge; 2.50; 1; $/mo\nMunicipal Franchise Fee; 20.15; 1; 6.5% of base\nState Sales Tax; 11.83; 1; 1.9%","serviceType":"electric","billingDays":30,"usageKwh":3240,"demandKw":12.4,"onPeakKwh":1140,"offPeakKwh":2100,"gasUsageCcf":0,"waterUsageCcf":0,"taxRatePct":0}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST http://127.0.0.1:3003/fr/api/tools/csr-cfl-cfl-mhc-hfa-btu-ton-hours-utility-bill-line-item-validator-and-rgp-peak-explainer| Nom | Type | Requis | Description |
|---|---|---|---|
| billLines | textarea | Oui | — |
| serviceType | select | Non | — |
| billingDays | number | Non | — |
| usageKwh | number | Non | — |
| demandKw | number | Non | — |
| onPeakKwh | number | Non | — |
| offPeakKwh | number | Non | — |
| gasUsageCcf | number | Non | — |
| waterUsageCcf | number | Non | — |
| taxRatePct | number | Non | — |
Résultat HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}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-csr-cfl-cfl-mhc-hfa-btu-ton-hours-utility-bill-line-item-validator-and-rgp-peak-explainer": {
"name": "csr-cfl-cfl-mhc-hfa-btu-ton-hours-utility-bill-line-item-validator-and-rgp-peak-explainer",
"description": "Collez les lignes de votre facture : classification et explication du fixed customer charge, de la demande, des prix heures pleines/creuses, des riders transport/distribution, fonds renouvelables, découplage, capacity tag ; conversion kWh↔Btu↔therm↔Ccf↔m³↔tonne-heure aux facteurs EIA ; détection des frais fixes cachés et projections d'économies.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=csr-cfl-cfl-mhc-hfa-btu-ton-hours-utility-bill-line-item-validator-and-rgp-peak-explainer",
"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": "csr-cfl-cfl-mhc-hfa-btu-ton-hours-utility-bill-line-item-validator-and-rgp-peak-explainer",
"arguments": {
"billLines": "Customer Charge; 14.75; 1; $/mo\nOff-Peak Energy Charge; 79.17; 2100; kWh @ 0.0377\nOn-Peak Energy Charge; 245.10; 1140; kWh @ 0.215\nDemand Charge; 285.20; 12.4; kW @ 23.00\nTransmission Service Rider; 25.92; 3240; kWh\nRenewable Portfolio Standard (RPS); 8.10; 3240; kWh\nDecoupling Rider; 4.60; 1; $/mo\nGrid Access Charge; 2.50; 1; $/mo\nMunicipal Franchise Fee; 20.15; 1; 6.5% of base\nState Sales Tax; 11.83; 1; 1.9%",
"serviceType": "electric",
"billingDays": 30,
"usageKwh": 3240,
"demandKw": 12.4,
"onPeakKwh": 1140,
"offPeakKwh": 2100,
"gasUsageCcf": 0,
"waterUsageCcf": 0,
"taxRatePct": 0
}
}
}Des questions ou un problème ? Contactez [email protected]