> ## 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 — Employees

> Query employees and commuting data with the Manglai MCP

## Available Tools

| Tool            | Endpoint                     | Description     |
| --------------- | ---------------------------- | --------------- |
| `get_employees` | `GET /api/v1/employees`      | Employee list   |
| `get_employee`  | `GET /api/v1/employees/{id}` | Single employee |

## Usage Examples

```
"How many employees does my company have?"
→ get_employees({ companyId: "uuid" })

"Give me the details of employee ID X"
→ get_employee({ id: "employee-uuid" })
```

## Common Parameters

### `get_employees`

| Parameter   | Type    | Description           |
| ----------- | ------- | --------------------- |
| `companyId` | string  | Company ID (required) |
| `page`      | integer | Page number           |
| `limit`     | integer | Results per page      |
