一键导入
monday-column-types-guide
Deep reference for all Monday.com column types including value formats, creation settings, and common patterns for status, timeline, people, formula, mirror, and more.
菜单
Deep reference for all Monday.com column types including value formats, creation settings, and common patterns for status, timeline, people, formula, mirror, and more.
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.
Create dashboards, add widgets, configure chart types, and connect boards to build reporting views in Monday.com.
Create, read, and append content to Monday Docs; manage version history and doc structure within workspaces.
| name | monday-column-types-guide |
| description | Deep reference for all Monday.com column types including value formats, creation settings, and common patterns for status, timeline, people, formula, mirror, and more. |
| standards-version | 1.10.0 |
create_item or change_item_column_valuesstatus, timeline, people, date)get_column_type_info with the column type to see its schema, settings, and value format.get_board_info to see current columns and their IDs.create_column to add a new column with the correct type and optional settings.User: What's the correct JSON format for setting a timeline column value?
Agent: Timeline columns use start and end dates:
{"timeline": {"from": "2026-03-01", "to": "2026-03-31"}}
| Tool | When to use |
|---|---|
get_column_type_info | Get schema, settings, and value format for any column type |
get_board_info | See existing columns on a board with their IDs and types |
create_column | Create a new column on a board |
change_item_column_values | Set column values on items |
| Column Type | JSON Format | Example |
|---|---|---|
status | {"label": "..."} | {"status": {"label": "Done"}} |
date | {"date": "YYYY-MM-DD"} | {"date4": {"date": "2026-03-30"}} |
timeline | {"from": "...", "to": "..."} | {"timeline": {"from": "2026-03-01", "to": "2026-03-31"}} |
people | {"personsAndTeams": [...]} | {"people": {"personsAndTeams": [{"id": 123, "kind": "person"}]}} |
numbers | Numeric value | {"numbers": "42"} |
text | String value | {"text0": "Hello"} |
long_text | {"text": "..."} | {"long_text": {"text": "Detailed description"}} |
checkbox | {"checked": "true"} | {"checkbox": {"checked": "true"}} |
dropdown | {"labels": [...]} | {"dropdown": {"labels": ["Option A"]}} |
email | {"email": "...", "text": "..."} | {"email": {"email": "a@b.com", "text": "Contact"}} |
link | {"url": "...", "text": "..."} | {"link": {"url": "https://...", "text": "Link"}} |
rating | Rating value 1-5 | {"rating": {"rating": 4}} |
hour | {"hour": N, "minute": N} | {"hour": {"hour": 14, "minute": 30}} |
get_board_info firstid and kind ("person" or "team")