Skip to main content
Glama
sakce

Monday.com MCP Server

by sakce

monday-create-update

Add comments to Monday.com Items or Sub-items by providing the item ID and update text, enabling clear communication and task tracking in boards.

Instructions

Create an update (comment) on a Monday.com Item or Sub-item.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemIdYes
updateTextYesContent to update the Item or Sub-item with.

Implementation Reference

  • Core implementation of the tool logic: calls monday_client.updates.create_update to add an update (comment) to the specified item.
    async def handle_monday_create_update_on_item(
        itemId: str,
        updateText: str,
        monday_client: MondayClient,
    ) -> list[types.TextContent]:
        monday_client.updates.create_update(item_id=itemId, update_value=updateText)
        return [
            types.TextContent(
                type="text", text=f"Created new update on Monday.com item: {updateText}"
            )
        ]
  • MCP tool registration for 'monday_create_update' (maps to 'monday-create-update'), includes input schema via type hints and docstring, wraps and calls the core handler.
    @mcp.tool()
    async def monday_create_update(itemId: str, updateText: str) -> str:
        """Create an update (comment) on a Monday.com Item or Sub-item.
    
        Args:
            itemId: Monday.com Item ID to create the update on.
            updateText: Content to update the Item or Sub-item with.
        """
        try:
            client = get_monday_client()
            result = await handle_monday_create_update_on_item(itemId, updateText, client)
            return result[0].text
        except Exception as e:
            return f"Error creating update: {e}"
  • Input schema documentation for the tool parameters.
    """Create an update (comment) on a Monday.com Item or Sub-item.
    
    Args:
        itemId: Monday.com Item ID to create the update on.
        updateText: Content to update the Item or Sub-item with.
    """

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/sakce/mcp-server-monday'

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