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

> Query reduction goals, tasks and scenarios with the Manglai MCP

## Available Tools

| Tool            | Endpoint                      | Description              |
| --------------- | ----------------------------- | ------------------------ |
| `get_goals`     | `GET /api/v1/goals`           | Emission reduction goals |
| `get_tasks`     | `GET /api/v1/goals/tasks`     | Tasks linked to goals    |
| `get_scenarios` | `GET /api/v1/goals/scenarios` | Projection scenarios     |

## Usage Examples

```
"What are my carbon reduction goals?"
→ get_goals({ companyId: "uuid" })

"What pending tasks do I have to meet my goals?"
→ get_tasks({ companyId: "uuid" })

"Show me the available projection scenarios"
→ get_scenarios({ companyId: "uuid" })
```

## Common Parameters

### `get_goals`

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

### `get_tasks`

| Parameter   | Type    | Description                                                                |
| ----------- | ------- | -------------------------------------------------------------------------- |
| `companyId` | string  | Company ID (required)                                                      |
| `goalId`    | string  | Filter by goal                                                             |
| `page`      | integer | Page number                                                                |
| `limit`     | integer | Results per page (max 200 recommended; use pagination for larger datasets) |
