Code Assist MCP for Monday

Build 25.0.9539

BoardDocs

Fetches a collection of documents associated with boards. Requires specifying an Id or ObjectId filter to identify the desired documents.

Table-Specific Information

SELECT

The server uses the Monday API to process some of the filters. The server processes other filters client-side within the server.

  • Id supports the '=','IN' comparison operators.
  • ObjectId supports the '=','IN' comparison operators.

For example, the following queries are processed server-side:

  SELECT * FROM BoardDocs WHERE Id = 'Val1'
  SELECT * FROM BoardDocs WHERE ObjectId = 'Val1'

INSERT

The following column can be used to create a new record:

The following pseudo-columns can be used to create a new record:

ItemId, ColumnId

Columns

Name Type ReadOnly References Description
Id [KEY] String True

A unique identifier for the document within the system, ensuring each document is distinctly recognized.

ObjectId String True

The unique identifier of the object associated with this document, linking the document to its parent entity.

WorkspaceId String True

Workspaces.Id

The unique identifier of the workspace where the document resides. A null value indicates it belongs to the main workspace.

CreatedById String True

Users.Id

The unique identifier of the user who created the document, allowing for tracking of document ownership.

DocKind String True

Specifies the document's visibility or access type, such as public, private, or shared.

The allowed values are public, private, share.

Name String True

The name assigned to the document, used for identification and display purposes.

RelativeUrl String True

The relative URL of the document, specifying its location within the application's directory structure.

Settings String True

A JSON or serialized string containing configuration and settings specific to the document.

Url String True

The direct URL link to access the document, typically used for navigation.

CreatedAt Date True

The date and time when the document was created, stored in the system's standard date format.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
ItemId String

The unique identifier for the item associated with this document, linking it to its specific row or record.

ColumnId String

The unique identifier for the column associated with this document, representing its specific attribute or field.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 25.0.9539