> ## 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 — GLEC Logistics

> Query logistics service footprint aligned with GLEC using the Manglai MCP

## Available Tools

| Tool                                   | Endpoint                                       | Description                   |
| -------------------------------------- | ---------------------------------------------- | ----------------------------- |
| `get_service_footprint_glec`           | `GET /api/v1/service-footprint/glec`           | GLEC logistics footprint list |
| `get_service_footprint_glec_dashboard` | `GET /api/v1/service-footprint/glec/dashboard` | GLEC dashboard                |

## What is GLEC?

The **GLEC Framework** (Global Logistics Emissions Council) is the international standard for calculating and reporting supply chain logistics emissions. Manglai calculates transport service footprint following this methodology.

## Usage Examples

```
"How many tCO₂e has our logistics generated this year?"
→ get_service_footprint_glec_dashboard({ companyId: "uuid", startDate: "2024-01-01", endDate: "2024-12-31" })

"List GLEC footprint records for the last quarter"
→ get_service_footprint_glec({ companyId: "uuid", startDate: "2024-10-01", endDate: "2024-12-31" })
```

## Common Parameters

### `get_service_footprint_glec`

| Parameter   | Type    | Description                                                                |
| ----------- | ------- | -------------------------------------------------------------------------- |
| `companyId` | string  | Company ID (required)                                                      |
| `startDate` | string  | Start date (ISO 8601)                                                      |
| `endDate`   | string  | End date (ISO 8601)                                                        |
| `page`      | integer | Page number                                                                |
| `limit`     | integer | Results per page (max 200 recommended; use pagination for larger datasets) |
