Skip to main content
Glama
mondaycom

monday MCP Server

Official
by mondaycom

Publish Workflow

publish_workflow

Promotes a workflow draft to the live version after validation. Use to activate a workflow, with option to publish without activating.

Instructions

Publishes a workflow draft, promoting it to the live version.

Use this after create_workflow (and optionally update_workflow) to make the workflow active. Before publishing, the workflow is validated — if it has missing or misconfigured steps, publish will fail with a WORKFLOW_VALIDATION_FAILED error that includes structured issue details: which step failed, the issue type, and which inputs are missing. Use those details to guide the user on what to fix before retrying.

Parameters:

  • workflowObjectId and workflowDraftId: returned by create_workflow — they identify which draft to publish.

  • shouldActivate: whether to activate the workflow immediately after publish. Defaults to true — pass false to publish without activating.

Returns:

  • workflowObjectId: the workflow object ID (unchanged)

  • workflowLiveId: the new live version ID — this changes on every publish, so do not cache it

Note: if directing the user to the workflow in the UI, the correct URL path is custom_objects/, not workflows/ — e.g. {account}.monday.com/custom_objects/{workflowObjectId}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workflowObjectIdYesThe workflow object ID returned by create_workflow. Identifies the workflow across all its drafts and live versions.
workflowDraftIdYesThe draft version ID returned by create_workflow. Both workflowObjectId and workflowDraftId are required — together they identify the exact draft to publish.
shouldActivateNoWhether to activate the workflow immediately after publishing so it starts running. Defaults to true — the workflow is activated immediately after publish.
Behavior4/5

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

Annotations indicate readOnlyHint=false and destructiveHint=false, but the description adds important behavioral traits: validation occurs during publish, and failure provides structured error details (step, issue type, missing inputs). It also warns that workflowLiveId changes on every publish, so caching is discouraged. This goes beyond annotations.

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

Conciseness4/5

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

The description is front-loaded with the main action and then provides context and parameter details in a logical order. It is slightly long but each sentence adds value. A more concise version could merge some lines, but it remains clear.

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

Completeness5/5

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

The description thoroughly covers all 3 parameters, explains return values (even though no output schema), describes validation error details, and includes a note about the UI URL path. Given the tool's complexity and lack of output schema, this is complete and well-rounded.

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

Parameters5/5

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

Schema coverage is 100%, but the description adds meaning: it explains that workflowObjectId and workflowDraftId come from create_workflow, that shouldActivate defaults to true, and clarifies that the return value workflowLiveId changes on each publish. This enriches the schema descriptions and helps the agent understand usage.

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 clearly states the action: 'Publishes a workflow draft, promoting it to the live version.' It uses a specific verb and resource, and distinguishes from siblings like create_workflow, update_workflow, and plan_workflow by describing the publishing step in the workflow lifecycle.

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?

It explicitly advises using this after create_workflow (and optionally update_workflow) to activate the workflow. It also describes validation failure behavior and the URL path nuance. However, it does not explicitly state when not to use it or compare with other publish-like tools (if any), which would earn a 5.

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