Monday.com
Monday.com is a versatile work operating system designed to streamline project management, task tracking, and workflow automation. It empowers teams to collaborate efficiently and boost productivity.
Features
- Customizable workflows tailored to any team or project.
- Visual project tracking with boards, timelines, and calendars.
- Collaboration tools including comments, file sharing, and notifications.
- Automation of repetitive tasks to save time and reduce errors.
- Integration with popular apps like Slack, Google Drive, and Microsoft Teams.
Benefits
- Enhances team collaboration and communication in real time.
- Improves project visibility and transparency for all stakeholders.
- Saves time by automating routine processes and tasks.
- Boosts productivity through centralized task and workflow management.
- Supports scalability and adaptation to various industry needs.
Available tools
16 actions available as tools
Get board items by name
Get items by board id and term
Create item
Create a new item in a monday.com board
Create update
Create a new update in a monday.com board
Get board activity
Get board activity logs for a specified time range (defaults to last 30 days)
Get board info
Get comprehensive board information including metadata, structure, owners, and configuration
Get users by name
Get users, can be filtered by name or partial name
Create board
Create a monday.com board
Create column
Create a new column in a monday.com board
All monday api
Execute any Monday.com API operation by generating GraphQL queries and mutations dynamically. Make sure you ask only for the fields you need and nothing more. When providing the query/mutation - use get_graphql_schema and get_type_details tools first to understand the schema before crafting your query.
Get graphql schema
Fetch the Monday.com GraphQL schema structure including query and mutation definitions. This tool returns available query fields, mutation fields, and a list of GraphQL types in the schema. You can filter results by operation type (read/write) to focus on either queries or mutations.
Get column type info
Retrieves comprehensive information about a specific column type, including JSON schema definition and other metadata. Use this before creating columns with the create_column tool to understand the structure, validation rules, and available properties for column settings.
Get type details
Get detailed information about a specific GraphQL type from the Monday.com API schema
Read docs
Get a collection of monday.com documents with their content as markdown. PAGINATION: - Default limit is 25 documents per page - Use 'page' parameter to get additional pages (starts at 1) - Check response for 'has_more_pages' to know if you should continue paginating - If user asks for "all documents" and you get exactly 25 results, continue with page 2, 3, etc. FILTERING: Provide an ID filter object with: - type: 'ids' for specific document IDs - type: 'object_ids' for specific document object IDs - type: 'workspace_ids' for all docs in specific workspaces - values: array of ID strings (at least 1 required) Examples: - { type: 'ids', values: ['123', '456'] } - { type: 'object_ids', values: ['123'] } - { type: 'workspace_ids', values: ['ws_101'] } USAGE PATTERNS: - For specific documents: use type 'ids' or 'object_ids' (A monday doc has two unique identifiers) - For workspace exploration: use type 'workspace_ids' with pagination - For large searches: start with page 1, then paginate if has_more_pages=true
Workspace info
This tool returns the boards, docs and folders in a workspace and which folder they are in. It returns up to 100 of each object type, if you receive 100 assume there are additional objects of that type in the workspace.
List workspaces
List all workspaces available to the user. Returns up to 500 workspaces with their ID, name, and description.
Create doc
Create a new monday.com doc either inside a workspace or attached to an item (via a doc column). After creation, the provided markdown will be appended to the document. LOCATION TYPES: - workspace: Creates a document in a workspace (requires workspace_id, optional doc_kind, optional folder_id) - item: Creates a document attached to an item (requires item_id, optional column_id) USAGE EXAMPLES: - Workspace doc: { location: { type: "workspace", workspace_id: 123, doc_kind: "private" }, markdown: "..." } - Workspace doc in folder: { location: { type: "workspace", workspace_id: 123, folder_id: 17264196 }, markdown: "..." } - Item doc: { location: { type: "item", item_id: 456, column_id: "doc_col_1" }, markdown: "..." }