Manage boards, items, updates, activity logs, and docs on Monday.com — directly from your AI workflows.
A Model Context Protocol (MCP) server that exposes Monday.com's GraphQL API (via the official monday-api-python-sdk) for managing boards, items, column values, updates, activity logs, and documents.
The Monday.com MCP Server provides programmatic access to a Monday.com account:
- Query and inspect boards, columns, groups, and items — with pagination and date-range filtering
- Create, update, and manage items and subitems: column values, group moves, file uploads, archiving, and deletion
- Post and fetch updates (comments), review board activity logs, and read Monday.com docs
Perfect for:
- Automating project and task management workflows from AI agents
- Building assistants that read and update Monday.com boards, items, and comments
- Auditing board activity and syncing Monday.com data into other systems
fetch_boards — Query boards with optional filters
Query boards with optional filters.
Inputs:
- `limit` (integer, optional, default: 50) — Number of boards to return.
- `page` (integer, optional) — Page number for pagination.
- `ids` (integer[], optional) — Filter by specific board IDs.
- `board_kind` (string enum: `public`, `private`, `share`, optional) — Filter by board type (public, private, share).
- `state` (string enum: `active`, `archived`, `deleted`, `all`, optional) — Filter by state (active, archived, deleted, all).
- `order_by` (string enum: `created_at`, `used_at`, optional) — Sort order (created_at or used_at).
Output data schema:
{
boards: {
id: string | null;
name: string | null;
updated_at: string | null;
groups: {
id: string | null;
title: string | null;
// additional upstream fields may be present
}[] | null;
columns: {
id: string | null;
title: string | null;
type: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}[];
// additional upstream fields may be present
}fetch_boards_by_id — Fetch a single board by ID
Fetch a single board by ID.
Inputs:
- `board_id` (string, required) — Board Id
Output data schema:
{
id: string | null;
name: string | null;
updated_at: string | null;
groups: {
id: string | null;
title: string | null;
// additional upstream fields may be present
}[] | null;
columns: {
id: string | null;
title: string | null;
type: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}fetch_all_items_by_board_id — Fetch all items with automatic pagination
Fetch all items with automatic pagination.
Inputs:
- `board_id` (integer | string, required) — The board ID to fetch items from.
- `query_params` (object, optional) — Query Params for filtering
- `limit` (integer, optional) — Number of items per page
Output data schema:
type Item = {
id: string | null;
state: string | null;
name: string | null;
updated_at: string | null;
group: {
id: string | null;
title: string | null;
// additional upstream fields may be present
} | null;
subitems: Item[] | null;
parent_item: Item | null;
column_values: {
value: string | null;
text: string | null;
type: string | null;
column: {
id: string | null;
title: string | null;
type: string | null;
// additional upstream fields may be present
} | null;
display_value: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
};
{
items: Item[];
// additional upstream fields may be present
}fetch_item_by_board_id_by_update_date — Fetch items modified within a date range
Fetch items modified within a date range.
Inputs:
- `board_id` (integer | string, required) — The board ID to fetch items from.
- `updated_after` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
- `updated_before` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
Output data schema:
type Item = {
id: string | null;
state: string | null;
name: string | null;
updated_at: string | null;
group: {
id: string | null;
title: string | null;
// additional upstream fields may be present
} | null;
subitems: Item[] | null;
parent_item: Item | null;
column_values: {
value: string | null;
text: string | null;
type: string | null;
column: {
id: string | null;
title: string | null;
type: string | null;
// additional upstream fields may be present
} | null;
display_value: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
};
{
items: Item[];
// additional upstream fields may be present
}fetch_columns_by_board_id — Fetch the column definitions for a board
Fetch the column definitions (id, title, type) for a given board.
Inputs:
- `board_id` (string, required) — board id
Output data schema:
{
id: string | null;
name: string | null;
updated_at: string | null;
groups: {
id: string | null;
title: string | null;
// additional upstream fields may be present
}[] | null;
columns: {
id: string | null;
title: string | null;
type: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}create_item — Creating an Item
Creating an Item
Inputs:
- `board_id` (integer | string, required) — The board ID to fetch items from.
- `group_id` (integer | string, required) — The board ID to fetch items from.
- `item_name` (string, required) — Name of Item
- `column_values` (object, optional) — The column values of the new item.
- `create_labels_if_missing` (boolean, optional, default: false) — Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)
Output data schema:
{
id: string | null;
// additional upstream fields may be present
}create_subitem — Create a subitem
Create a subitem
Inputs:
- `parent_item_id` (integer | string, required) — The parent item's unique identifier.
- `subitem_name` (string, required) — The new item's name.
- `column_values` (object, optional) — The column values of the new item.
- `create_labels_if_missing` (boolean, optional, default: false) — Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)
Output data schema:
{
id: string | null;
name: string | null;
column_values: {
id: string | null;
text: string | null;
// additional upstream fields may be present
}[] | null;
board: {
id: string | null;
name: string | null;
// additional upstream fields may be present
} | null;
// additional upstream fields may be present
}change_simple_column_value — Change an item's column to a new simple text value
Changes an item's column to a new simple text value. Only this column is changed — other columns keep their current value. NOTE: this overwrites the current value — the prior value is not preserved by this tool. The response includes the updated item's id.
Inputs:
- `board_id` (integer | string, required) — The board's unique identifier.
- `item_id` (integer | string, required) — The item's unique identifier.
- `column_id` (string, required) — The column's unique identifier.
- `value` (string, required) — The new simple value of the column (pass null to empty the column).
Output data schema:
{
id: string | null;
// additional upstream fields may be present
}change_status_column_value — Set a status column's label
Sets a status column's label. Only this column is changed — other columns keep their current value. NOTE: this overwrites the current label — the prior label is not preserved by this tool. The response includes the item's id, name, and column_values as returned by the Monday.com API.
Inputs:
- `board_id` (integer | string, required) — The board's unique identifier.
- `item_id` (integer | string, required) — The item's unique identifier.
- `column_id` (string, required) — The column's unique identifier.
- `value` (string, required) — The status label to set on the column (the exact label text as configured on the board, e.g. 'Done').
Output data schema:
{
id: string | null;
name: string | null;
column_values: {
id: string | null;
text: string | null;
value: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}change_date_column_value — Set a date column's value
Sets a date column's value (pass a datetime object). Only this column is changed — other columns keep their current value. NOTE: this overwrites the current date — the prior date is not preserved by this tool. The response includes the item's id, name, and column_values as returned by the Monday.com API.
Inputs:
- `board_id` (integer | string, required) — The board's unique identifier.
- `item_id` (integer | string, required) — The item's unique identifier.
- `column_id` (string, required) — The column's unique identifier.
- `timestamp` (string (datetime), required) — The new date value
Output data schema:
{
id: string | null;
name: string | null;
column_values: {
id: string | null;
text: string | null;
value: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}change_custom_column_value — Set any column's value using a JSON dict
Sets any column's value using a JSON dict. Only this column is changed — other columns keep their current value. NOTE: this overwrites the current value — the prior value is not preserved by this tool. The response includes the item's id, name, and column_values as returned by the Monday.com API.
Inputs:
- `board_id` (integer | string, required) — The board's unique identifier.
- `item_id` (integer | string, required) — The item's unique identifier.
- `column_id` (string, required) — The column's unique identifier.
- `value` (object, required) — The new value of the column as a JSON dict (e.g. {'checked': True} for a checkbox).
Output data schema:
{
id: string | null;
name: string | null;
column_values: {
id: string | null;
text: string | null;
value: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}change_multiple_column_values — Set multiple column values at once
Sets multiple column values at once. Only the columns you provide are changed — others keep their current value. NOTE: this overwrites the current values — the prior values are not preserved by this tool. The response includes the item's id, name, and column_values as returned by the Monday.com API.
Inputs:
- `board_id` (integer | string, required) — The board's unique identifier.
- `item_id` (integer | string, required) — The item's unique identifier.
- `column_values` (object, required) — Column values in a json format
- `create_labels_if_missing` (boolean, optional, default: false) — Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)
Output data schema:
{
id: string | null;
name: string | null;
column_values: {
id: string | null;
text: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}move_item_to_group — Move an item to a different group
Moves an item to a different group. Only the item's group is changed — other fields keep their current value. NOTE: this overwrites the current group — the prior group is not preserved by this tool. The response includes the updated item's id.
Inputs:
- `item_id` (integer, required) — The item's unique identifier.
- `group_id` (string, required) — The group's unique identifier.
Output data schema:
{
id: string | null;
// additional upstream fields may be present
}archive_item_by_id — Archive an item (reversible)
Archives an item, removing it from active board views. Unlike delete, this is REVERSIBLE — the item can be restored from Monday.com's archive. Confirm with the user before calling, since it changes the item's visibility across the board.
Inputs:
- `item_id` (integer, required) — The item's unique identifier.
Output data schema:
{
id: string | null;
// additional upstream fields may be present
}delete_item_by_id — Permanently delete an item (destructive, requires explicit user confirmation)
DESTRUCTIVE — REQUIRES EXPLICIT USER CONFIRMATION BEFORE CALLING. Permanently deletes the item and all its data (column values, subitems, updates). This action is irreversible — the item and its data cannot be recovered. NEVER call this tool autonomously or as part of an automated flow. You MUST stop, tell the user exactly what will be deleted and that it is permanent, and wait for their explicit written confirmation before proceeding.
Inputs:
- `item_id` (integer, required) — The item's unique identifier.
Output data schema:
{
id: string | null;
// additional upstream fields may be present
}upload_file_to_column — Upload a file to a file column
Upload a file to a file column.
Inputs:
- `item_id` (integer | string, required) — The item's unique identifier.
- `column_id` (string, required) — The column's unique identifier.
- `file_path` (string, required) — The path of the file on the user's system
- `mimetype` (string, optional) — The mimetype of the file getting uploaded for example: application/json
Output data schema:
{
id: string | null;
name: string | null;
url: string | null;
file_extension: string | null;
file_size: number | null;
// additional upstream fields may be present
}fetch_items_by_column_value — Fetch items by column value
Fetch items by column value
Inputs:
- `board_id` (integer | string, required) — Board Id
- `column_id` (string, required) — column header
- `value` (string, required) — Fetch column by this value
- `limit` (integer, optional) — Limit on number of rows to be fetched
Output data schema:
type Item = {
id: string | null;
state: string | null;
name: string | null;
updated_at: string | null;
group: {
id: string | null;
title: string | null;
// additional upstream fields may be present
} | null;
subitems: Item[] | null;
parent_item: Item | null;
column_values: {
value: string | null;
text: string | null;
type: string | null;
column: {
id: string | null;
title: string | null;
type: string | null;
// additional upstream fields may be present
} | null;
display_value: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
};
{
cursor: string | null;
items: Item[];
// additional upstream fields may be present
}fetch_items_by_id — Fetch items by a list of ids
Fetch items by a list of ids
Inputs:
- `ids` ((integer | string)[], required) — list of ids for the items to be fetched
Output data schema:
type Item = {
id: string | null;
state: string | null;
name: string | null;
updated_at: string | null;
group: {
id: string | null;
title: string | null;
// additional upstream fields may be present
} | null;
subitems: Item[] | null;
parent_item: Item | null;
column_values: {
value: string | null;
text: string | null;
type: string | null;
column: {
id: string | null;
title: string | null;
type: string | null;
// additional upstream fields may be present
} | null;
display_value: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
};
{
items: Item[];
// additional upstream fields may be present
}create_update — Create an update (comment) on an item
Create an update (comment) on an item.
Inputs:
- `item_id` (integer, required) — The item's unique identifier.
- `update_value` (string, required) — Comments to be added to the item
Output data schema:
{
id: string | null;
// additional upstream fields may be present
}delete_update — Permanently delete an update (destructive, requires explicit user confirmation)
DESTRUCTIVE — REQUIRES EXPLICIT USER CONFIRMATION BEFORE CALLING. Permanently deletes an update (comment) from an item. This action is irreversible — the update's content cannot be recovered. NEVER call this tool autonomously or as part of an automated flow. You MUST stop, tell the user exactly what will be deleted and that it is permanent, and wait for their explicit written confirmation before proceeding.
Inputs:
- `item_id` (integer, required) — The item's unique identifier.
Output data schema:
{
id: string | null;
// additional upstream fields may be present
}fetch_updates — Fetch updates with pagination
Fetch updates with pagination.
Inputs:
- `limit` (integer, required) — Number of items to get, the default is 25.
- `page` (integer, required) — Page number to get, starting at 1.
Output data schema:
{
updates: {
id: string | null;
body: string | null;
// additional upstream fields may be present
}[];
// additional upstream fields may be present
}fetch_updates_for_item — Fetch updates for a specific item
Fetch updates for a specific item.
Inputs:
- `item_id` (integer, required) — The item's unique identifier.
- `limit` (integer, required) — Number of items to get, the default is 25.
Output data schema:
{
updates: {
id: string | null;
body: string | null;
created_at: string | null;
updated_at: string | null;
creator: {
id: string | null;
name: string | null;
email: string | null;
// additional upstream fields may be present
} | null;
assets: {
id: string | null;
name: string | null;
url: string | null;
file_extension: string | null;
file_size: string | null;
// additional upstream fields may be present
}[] | null;
replies: {
id: string | null;
body: string | null;
creator: {
id: string | null;
name: string | null;
email: string | null;
// additional upstream fields may be present
} | null;
created_at: string | null;
updated_at: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}[];
// additional upstream fields may be present
}fetch_board_updates — Fetch all updates from a board with date filtering
Fetch all updates from a board with date filtering.
Inputs:
- `board_ids` (integer, required) — Board Id
- `updated_after` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
- `updated_before` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
Output data schema:
{
updates: {
id: string | null;
text_body: string | null;
item_id: string | null;
created_at: string | null;
updated_at: string | null;
creator: {
name: string | null;
id: string | null;
// additional upstream fields may be present
} | null;
// additional upstream fields may be present
}[];
// additional upstream fields may be present
}fetch_board_updates_page — Fetch a single page of board updates
Fetch a single page of board updates.
Inputs:
- `board_id` (integer | string, required) — Board Id
- `limit` (integer, required) — Number of items to get, the default is 25.
- `page` (integer, required) — Page number to get, starting at 1.
- `from_date` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
- `to_date` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
Output data schema:
{
updates: {
id: string | null;
text_body: string | null;
item_id: string | null;
created_at: string | null;
updated_at: string | null;
creator: {
name: string | null;
id: string | null;
// additional upstream fields may be present
} | null;
// additional upstream fields may be present
}[];
// additional upstream fields may be present
}fetch_activity_logs_from_board — Fetch a page of activity logs
Fetch a page of activity logs.
Inputs:
- `board_ids` (integer, required) — Board Id
- `page` (integer, required) — Page number to get, starting at 1.
- `limit` (integer, required) — Number of items to get, the default is 25.
- `from_date` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
- `to_date` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
Output data schema:
{
activity_logs: {
id: string;
account_id: string;
created_at: string;
data: string;
entity: string;
event: string;
user_id: string;
// additional upstream fields may be present
}[];
// additional upstream fields may be present
}fetch_all_activity_logs_from_board — Fetch all activity logs with pagination and event filtering
Fetch all activity logs with automatic pagination and optional event filtering.
Inputs:
- `board_ids` (integer, required) — Board Id
- `from_date` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
- `to_date` (string, required) — datetime in the format YYYY-MM-DDTHH:MM:SSZ
- `limit` (integer, required) — Number of items to get, the default is 25.
- `events_filter` (string[], required) — Filter activity logs by specific event types
Output data schema:
{
activity_logs: {
id: string;
account_id: string;
created_at: string;
data: string;
entity: string;
event: string;
user_id: string;
// additional upstream fields may be present
}[];
// additional upstream fields may be present
}get_document_with_blocks — Fetch a document with all blocks (auto-paginates)
Fetch a document with all blocks (auto-paginates).
Inputs:
- `doc_id` (string, required) — doc id
Output data schema:
{
id: string | null;
created_at: string | null;
updated_at: string | null;
created_by: {
id: string | null;
name: string | null;
// additional upstream fields may be present
} | null;
doc_folder_id: string | null;
doc_kind: string | null;
name: string | null;
url: string | null;
workspace: {
name: string | null;
// additional upstream fields may be present
} | null;
workspace_id: string | null;
object_id: string | null;
settings: string | null;
blocks: {
type: string | null;
content: string | null;
position: number | null;
updated_at: string | null;
id: string | null;
parent_block_id: string | null;
// additional upstream fields may be present
}[] | null;
// additional upstream fields may be present
}monday_health_check — Check server readiness and basic connectivity
Check server readiness and basic connectivity.
Inputs:
No inputs.
Output data schema:
{
status: string;
server: string;
type: string;
auth_required: string;
}Response Envelope
Every tool returns the same top-level envelope. Only data varies per tool.
// Success
{
"success": true,
"statusCode": 200,
"retriable": false,
"retry_after_seconds": null,
"error": null,
"data": { ... }
}
// Error
{
"success": false,
"statusCode": 400,
"retriable": false,
"retry_after_seconds": null,
"error": { "code": "VALIDATION_ERROR", "message": "description", "details": {} },
"data": null
}retriable—truewhen it is safe to retry (rate limit, network error, 503).falsefor validation and auth errors.retry_after_seconds— seconds to wait before retrying; present only whenretriableistrueand the upstream specifies a delay.error.code— machine-readable string:VALIDATION_ERROR,AUTH_ERROR,UPSTREAM_ERROR,SERVER_ERROR.
Common Parameters
board_id/board_ids— Monday.com board's unique identifier. Used across board, item, update, and activity log tools.item_id— Item's unique identifier. Used across item and update tools.column_id— Column's unique identifier on a board. Used across item column-value tools.limit/page— Pagination controls used by list/fetch tools (fetch_updates,fetch_board_updates_page,fetch_activity_logs_from_board, etc.).updated_after/updated_before/from_date/to_date— Datetime bounds used to filter items, updates, and activity logs to a date range.
Resource Formats
Board ID:
Numeric string
Example: 1234567890
Item / Column / Update ID:
Integer or numeric string, depending on the tool
Example: 987654321
Datetime:
YYYY-MM-DDTHH:MM:SSZ
Example: 2024-08-13T09:00:00Z
Missing or Invalid Headers
- Cause: API key not provided in request headers or incorrect format
- Solution:
- Verify
Authorization: Bearer YOUR_API_KEYandX-Mewcp-Credential-Id: CREDENTIAL-IDheaders are present - Check API key is active in your MewCP account
- Verify
Insufficient Credits
- Cause: API calls have exceeded your request limits
- Solution:
- Check credit usage in your Curious Layer dashboard
- Upgrade to a paid plan or add credits for higher limits
- Contact support for credit adjustments
Credential Not Connected
- Cause: No Monday.com credential linked to your account
- Solution:
- Go to Credentials in your MewCP dashboard
- Connect your Monday.com account (OAuth)
- Retry the request with the correct
X-Mewcp-Credential-Idheader
Malformed Request Payload
- Cause: JSON payload is invalid or missing required fields
- Solution:
- Validate JSON syntax before sending
- Ensure all required tool parameters are included
- Check parameter types match expected values
Server Not Found
- Cause: Incorrect server name in the API endpoint
- Solution:
- Verify endpoint format:
{server-name}/mcp/{tool-name} - Use correct server name from documentation
- Check available servers in your Curious Layer account
- Verify endpoint format:
Monday.com API Error
- Cause: Upstream Monday.com API returned an error
- Solution:
- Check Monday.com service status at Monday.com Status Page
- Verify your credential has the required permissions
- Review the error message for specific details
Resources
- Monday.com API Documentation — Official API reference
- monday-api-python-sdk — Python SDK wrapped by this server
- FastMCP Docs — FastMCP specification
- FastMCP Credentials — FastMCP Credentials package for credential handling