/google-forms | Type: Application | PCID required: Yes
Form creation and response management
Tools
| Tool | Description |
|---|---|
google-forms_create_form | Create a new Google Form with title and optional description |
google-forms_get_form | Retrieve details of a specific Google Form by ID |
google-forms_add_text_question | Add a text question to a Google Form |
google-forms_add_multiple_choice_question | Add a multiple choice question to a Google Form |
google-forms_get_form_responses | Get responses for a specific Google Form |
google-forms_create_form
Create a new Google Form with title and optional description Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
title | string | Yes | — | Title of form |
description | string | No | — | Description of form |
google-forms_get_form
Retrieve details of a specific Google Form by ID Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
formId | string | Yes | — | Form ID to retrieve |
google-forms_add_text_question
Add a text question to a Google Form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
formId | string | Yes | — | Form ID to add question to |
questionTitle | string | Yes | — | Title of question |
required | boolean | No | false | If true, the question is required. Default is false. |
google-forms_add_multiple_choice_question
Add a multiple choice question to a Google Form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
formId | string | Yes | — | Form ID to add question to |
questionTitle | string | Yes | — | Title of question |
options | string[] | Yes | — | Options for question |
required | boolean | No | false | If true, the question is required. Default is false. |
google-forms_get_form_responses
Get responses for a specific Google Form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
formId | string | Yes | — | Form ID to get responses for |

