Skip to main content
Glama
mondaycom

monday MCP Server

Official
by mondaycom

Update Column

update_column

Update a monday.com column's title, description, or settings with optimistic concurrency control. Use the revision field to avoid overwriting concurrent changes.

Instructions

Update properties of an existing monday.com column (title, description, settings). Uses optimistic concurrency control via the revision field — fetch the current revision via get_board_schema first, then call this tool. If the update fails because the revision is stale, re-fetch and try again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardIdYesThe id of the board containing the column
columnIdYesThe id of the column to update
columnTypeYesThe type of the column being updated. Must match the existing column type.
revisionYesThe current revision of the column, obtained from get_board_schema. Used for optimistic concurrency control: if the column changed since you read it, the request will fail and you should re-fetch the latest revision before retrying.
columnTitleNoThe new title of the column. If omitted, the title is unchanged.
columnDescriptionNoThe new description of the column. If omitted, the description is unchanged.
columnSettingsNoType-specific configuration as a JSON string. Use get_column_type_info with fetchMode "schema" for the JSON schema for the given column type. If omitted, settings are unchanged.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Adds important behavioral detail about optimistic concurrency control and the revision field, which is not captured by annotations. Annotations indicate readOnlyHint=false and destructiveHint=false, consistent with an update operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: first states purpose, second provides critical workflow. No unnecessary words. Well-structured and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers core concept and the revision pattern. Mentions get_column_type_info for settings schema. Lacks explicit success return value, but overall adequate for a mutation tool with no output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so parameters are fully documented structurally. The description adds a high-level summary and context for the revision field but does not add significant semantic meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the verb 'Update' and the resource 'existing monday.com column', listing specific properties (title, description, settings). It distinguishes from sibling tools like create_column and delete_column.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit guidance on the prerequisite step ('fetch the current revision via get_board_schema first') and retry logic on failure. Does not explicitly state when not to use it, but the context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mondaycom/mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server