monday-get-doc-content
Retrieve the content of a specific Monday.com document by its unique ID using the MCP server, enabling efficient access to board-related information.
Instructions
Get the content of a specific document by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes | ID of the Monday.com document to retrieve. |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"description": "ID of the Monday.com document to retrieve.",
"type": "string"
}
},
"required": [
"doc_id"
],
"type": "object"
}