> ## Documentation Index
> Fetch the complete documentation index at: https://developers.manglai.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Tools — Logística GLEC

> Consulta la huella de servicio logístico alineada con GLEC con el MCP de Manglai

## Tools disponibles

| Tool                                   | Endpoint                                       | Descripción                    |
| -------------------------------------- | ---------------------------------------------- | ------------------------------ |
| `get_service_footprint_glec`           | `GET /api/v1/service-footprint/glec`           | Lista de huella logística GLEC |
| `get_service_footprint_glec_dashboard` | `GET /api/v1/service-footprint/glec/dashboard` | Dashboard GLEC                 |

## ¿Qué es GLEC?

El **GLEC Framework** (Global Logistics Emissions Council) es el estándar internacional para calcular y reportar las emisiones de la cadena de suministro logística. Manglai calcula la huella de servicio de transporte siguiendo esta metodología.

## Ejemplos de uso

```
"¿Cuántas tCO₂e ha generado mi logística este año?"
→ get_service_footprint_glec_dashboard({ companyId: "uuid", startDate: "2024-01-01", endDate: "2024-12-31" })

"Lista los registros de huella GLEC del último trimestre"
→ get_service_footprint_glec({ companyId: "uuid", startDate: "2024-10-01", endDate: "2024-12-31" })
```

## Parámetros comunes

### `get_service_footprint_glec`

| Parámetro   | Tipo    | Descripción               |
| ----------- | ------- | ------------------------- |
| `companyId` | string  | ID de empresa (requerido) |
| `startDate` | string  | Fecha inicio (ISO 8601)   |
| `endDate`   | string  | Fecha fin (ISO 8601)      |
| `page`      | integer | Número de página          |
| `limit`     | integer | Resultados por página     |
