vibo_answer_question
Answer a section planning question by providing the matching response type—text, selected options, links, photos, or files—and confirm to submit.
Instructions
Answer a section planning question. Provide the field matching the question's type: text for a text question, selectedOptions (array of option _ids from vibo_list_section_questions) for radio/checkbox/select, or link (array of URLs) for a link question. Use otherOptionTitle with the question's "other" option. For photo/file questions, pass local paths (imagePaths/filePaths) when the server can read your disk, or inline base64 bytes (images/files) otherwise. Confirm-gated.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| link | No | URL(s), for a link question. | |
| text | No | Answer for a text question. | |
| files | No | Inline base64 files, for a file-attachment question — use these when the server cannot read your filesystem. | |
| images | No | Inline base64 images, for a photo question — use these when the server cannot read your filesystem. | |
| confirm | No | Must be true to proceed. Without this, the tool returns a preview. | |
| eventId | Yes | Event id. | |
| filePaths | No | Absolute local file paths, for a file-attachment question (local/stdio server only). | |
| sectionId | Yes | Section id. | |
| imagePaths | No | Absolute local image file paths, for a photo question (local/stdio server only). | |
| questionId | Yes | Question _id (from vibo_list_section_questions). | |
| selectedOptions | No | Option _ids to select, for radio/checkbox/select questions. | |
| otherOptionTitle | No | Free-text value when selecting the question's "other" option. |