> ## 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 — Business Travel

> Query business travel records and emissions with the Manglai MCP

## Available Tools

| Tool                             | Endpoint                                 | Description                            |
| -------------------------------- | ---------------------------------------- | -------------------------------------- |
| `get_business_travels`           | `GET /api/v1/business-travels`           | Business travel records with emissions |
| `get_business_travels_dashboard` | `GET /api/v1/business-travels/dashboard` | Business travel dashboard              |

## Transport Types

* `plane` — Airplane
* `train` — Train
* `car` — Car
* `bus` — Bus
* `ship` — Ship

## Usage Examples

```
"How many flights have we logged this year?"
→ get_business_travels({ companyId: "uuid", transportType: "plane", startDate: "2024-01-01", endDate: "2024-12-31" })

"Give me an emissions summary by transport type"
→ get_business_travels_dashboard({ companyId: "uuid", startDate: "2024-01-01", endDate: "2024-12-31" })
```

## Common Parameters

### `get_business_travels`

| Parameter       | Type      | Description                                                                |
| --------------- | --------- | -------------------------------------------------------------------------- |
| `companyId`     | string    | Company ID (required)                                                      |
| `transportType` | string    | Transport type                                                             |
| `startDate`     | string    | Start date (ISO 8601)                                                      |
| `endDate`       | string    | End date (ISO 8601)                                                        |
| `employeeId`    | string    | Filter by employee                                                         |
| `buildingIds`   | string\[] | Filter by buildings                                                        |
| `page`          | integer   | Page number                                                                |
| `limit`         | integer   | Results per page (max 200 recommended; use pagination for larger datasets) |
