en un clic
monday-docs-management
Create, read, and append content to Monday Docs; manage version history and doc structure within workspaces.
Menu
Create, read, and append content to Monday Docs; manage version history and doc structure within workspaces.
Navigate the Monday.com GraphQL API with schema introspection, query building, pagination patterns, complexity budgets, and the all_monday_api escape hatch.
Aggregate, filter, and analyze Monday.com board data for reporting, summaries, and decision-making.
Create, configure, manage, duplicate, archive, and delete Monday.com boards including columns, groups, views, and permissions.
Render pie charts, bar charts, battery/progress widgets, and interactive tables from Monday.com board data.
Deep reference for all Monday.com column types including value formats, creation settings, and common patterns for status, timeline, people, formula, mirror, and more.
Create dashboards, add widgets, configure chart types, and connect boards to build reporting views in Monday.com.
| name | monday-docs-management |
| description | Create, read, and append content to Monday Docs; manage version history and doc structure within workspaces. |
| standards-version | 1.10.0 |
search to find an existing doc by name, or workspace_info to list docs in a workspace.create_doc with a title and optional workspace or item attachment.read_docs with the doc ID to get content and metadata.add_content_to_doc with the doc ID and Markdown-formatted content.read_docs with version history options to see past revisions.User: Create a meeting notes doc in the "Product" workspace and add today's agenda.
Agent:
1. list_workspaces() to find "Product" workspace ID
2. create_doc(title: "Meeting Notes -- 2026-03-30", workspaceId: "...")
3. add_content_to_doc(docId: "...", content: "## Agenda\n\n- Review sprint progress\n- Discuss Q2 goals\n- Action items")
User: What's in our design spec doc?
Agent:
1. search(searchTerm: "design spec", searchType: "DOC")
2. read_docs(docId: "...")
3. Present doc content summary
| Tool | When to use |
|---|---|
create_doc | Create a new doc in a workspace or attached to an item |
read_docs | Read doc content or version history |
add_content_to_doc | Append Markdown content to an existing doc |
search | Find docs by name |
workspace_info | List all docs in a workspace |
all_monday_api | Delete docs, update doc settings |
GraphQL recipes for gap operations:
Delete a doc:
mutation { delete_doc(doc_id: 1234567890) { id } }
List docs for a workspace:
query { docs(workspace_ids: [123], limit: 25) { id title created_at created_by { name } } }
add_content_to_doc appends content -- it does not replace existing content