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

> Surveys and answers with the Manglai MCP

## Available Tools

| Tool                  | Kind   | Description                   |
| --------------------- | ------ | ----------------------------- |
| `list_surveys`        | Data   | Company surveys               |
| `get_survey`          | Data   | Survey schema by id           |
| `list_survey_answers` | Data   | Answers for a survey          |
| `create_survey`       | Action | Create a survey               |
| `add_survey_answer`   | Action | Add or update a survey answer |

Call `get_survey` before `add_survey_answer` so response keys match the question schema. Action tools require `userConfirmed`.

## Usage Examples

```
"List my commuting surveys"
→ list_surveys()

"Show the questions for survey {surveyId}"
→ get_survey({ surveyId: "uuid" })
```
