원클릭으로
monday-form-builder
Create Monday.com forms with questions, conditional logic, and response boards for data collection and intake workflows.
메뉴
Create Monday.com forms with questions, conditional logic, and response boards for data collection and intake workflows.
| name | monday-form-builder |
| description | Create Monday.com forms with questions, conditional logic, and response boards for data collection and intake workflows. |
| standards-version | 1.10.0 |
get_board_info to check if a response board exists, or use create_board to create one.create_form with the form name, description, and linked board ID.form_questions_editor to add questions -- map each question to a board column.update_form to configure form settings (appearance, submission message, redirect URL).form_questions_editor with condition rules on question visibility.get_form to retrieve the form URL and verify the configuration.User: Create a bug report form that feeds into our "Bug Tracker" board.
Agent:
1. search(searchTerm: "Bug Tracker", searchType: "BOARD") to find board ID
2. get_board_info(boardId: "...") to see existing columns
3. create_form(name: "Bug Report", boardId: "...", description: "Submit a bug report")
4. form_questions_editor(formToken: "...", action: "create", questions: [
{title: "Bug Title", type: "text", required: true, columnId: "name"},
{title: "Severity", type: "dropdown", required: true, columnId: "status"},
{title: "Steps to Reproduce", type: "long_text", required: true, columnId: "long_text"},
{title: "Screenshot", type: "file", required: false, columnId: "files"}
])
5. get_form(formToken: "...") to retrieve shareable URL
User: Add a conditional question: if severity is "Critical", ask for a workaround.
Agent:
1. form_questions_editor(formToken: "...", action: "create", questions: [
{title: "Available Workaround?", type: "text", columnId: "text0",
condition: {questionId: "severity_q", value: "Critical"}}
])
| Tool | When to use |
|---|---|
create_form | Create a new form linked to a board |
get_form | Retrieve form details, URL, and configuration |
update_form | Update form settings, appearance, submission messages |
form_questions_editor | Add, update, or delete individual form questions |
get_board_info | Check board columns for question-to-column mapping |
create_board | Create a response board if one doesn't exist |
create_column | Add columns to the response board for new question types |
Navigate the Monday.com GraphQL API with schema introspection, query building, pagination patterns, complexity budgets, and the all_monday_api escape hatch.
Aggregate, filter, and analyze Monday.com board data for reporting, summaries, and decision-making.
Create, configure, manage, duplicate, archive, and delete Monday.com boards including columns, groups, views, and permissions.
Render pie charts, bar charts, battery/progress widgets, and interactive tables from Monday.com board data.
Deep reference for all Monday.com column types including value formats, creation settings, and common patterns for status, timeline, people, formula, mirror, and more.
Create dashboards, add widgets, configure chart types, and connect boards to build reporting views in Monday.com.