@mondaydotcomorg/agent-toolkit 5.46.0 → 5.48.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -115,8 +115,20 @@
115
115
  }
116
116
  }
117
117
  `,qd=Fd`
118
- mutation createItem($boardId: ID!, $itemName: String!, $groupId: String, $columnValues: JSON) {
119
- create_item(board_id: $boardId, item_name: $itemName, group_id: $groupId, column_values: $columnValues) {
118
+ mutation createItem(
119
+ $boardId: ID!
120
+ $itemName: String!
121
+ $groupId: String
122
+ $columnValues: JSON
123
+ $createLabelsIfMissing: Boolean
124
+ ) {
125
+ create_item(
126
+ board_id: $boardId
127
+ item_name: $itemName
128
+ group_id: $groupId
129
+ column_values: $columnValues
130
+ create_labels_if_missing: $createLabelsIfMissing
131
+ ) {
120
132
  id
121
133
  name
122
134
  url
@@ -509,7 +521,7 @@
509
521
  }
510
522
  }
511
523
  }
512
- `;function sp(e,t){const a=e?.response?.errors?.map((e=>{const{code:t,error_data:a}=e.extensions??{},i=Object.fromEntries(Object.entries({code:t,error_data:a}).filter((([,e])=>void 0!==e)));return Object.keys(i).length>0?`${e.message} (details: ${JSON.stringify(i)})`:e.message}))?.join(", ");if(a){const i=new Error(`Failed to ${t}: ${a}`);throw i.response=e.response,i}const i=e instanceof Error?e.message:"Unknown error";throw new Error(`Failed to ${t}: ${i}`)}function dp(e){if(e instanceof Error&&"AbortError"===e.name)throw new Error("Search has timed out, try providing alternative search term")}const pp={query:n.z.string().describe("Custom GraphQL query/mutation. you need to provide the full query / mutation"),variables:n.z.string().describe("JSON string containing the variables for the GraphQL operation")};class lp extends me{constructor(e,t){super(e,t),this.name="all_monday_api",this.type=exports.ToolType.ALL_API,this.annotations=ce({title:"Run Query or Mutation on any monday.com API",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"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."}getInputSchema(){return pp}async loadSchema(e){if(lp.schemaCache[e])return lp.schemaCache[e];try{const t=await this.mondayApi.rawRequest(Zd),{data:a}=t,i=gn(a);return lp.schemaCache[e]=i,i}catch(e){throw new Error(`Failed to load GraphQL schema: ${e instanceof Error?e.message:"Unknown error"}`)}}async validateOperation(e,t){return fn(await this.loadSchema(t),dt(e)).map((e=>e.message))}async executeInternal(e){const{query:t,variables:a}=e;let i={};try{i=JSON.parse(a)}catch(e){throw new Error(`Error parsing variables: ${e instanceof Error?e.message:"Unknown error"}`)}const n=await this.validateOperation(t,this.context?.apiVersion??M);if(n.length>0)throw new Error(n.join(", "));try{return{content:await this.mondayApi.request(t,i)}}catch(e){sp(e,"execute GraphQL operation")}}}lp.schemaCache={};const cp={itemId:n.z.number().describe("The ID of the item to be updated"),columnValues:n.z.string().describe('A string containing the new column values for the item following this structure: {\\"column_id\\": \\"value\\",... you can change multiple columns at once, note that for status column you must use nested value with \'label\' as a key and for date column use \'date\' as key} - example: "{\\"text_column_id\\":\\"New text\\", \\"status_column_id\\":{\\"label\\":\\"Done\\"}, \\"date_column_id\\":{\\"date\\":\\"2023-05-25\\"}, \\"phone_id\\":\\"123-456-7890\\", \\"email_id\\":\\"test@example.com\\"}"'),createLabelsIfMissing:n.z.boolean().optional().describe("If true, create missing Status/Dropdown labels when setting those columns. Requires permission to change board structure. Omit or false to only use existing labels.")},mp={boardId:n.z.number().describe("The ID of the board that contains the item to be updated"),...cp};class up extends me{constructor(){super(...arguments),this.name="change_item_column_values",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Change Item Column Values",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Change the column values of an item in a monday.com board. [REQUIRED PRECONDITION]: For board-relation linking tasks, call link_board_items_workflow before using this tool."}getInputSchema(){return this.context?.boardId?cp:mp}async executeInternal(e){const t={boardId:(this.context?.boardId??e.boardId).toString(),itemId:e.itemId.toString(),columnValues:e.columnValues,...void 0!==e.createLabelsIfMissing&&{createLabelsIfMissing:e.createLabelsIfMissing}};let a;try{a=Object.keys(JSON.parse(e.columnValues))}catch(e){throw new Error(`Invalid columnValues JSON: ${e.message}`)}const i=await this.mondayApi.request(Hd,{...t,columnIds:a}),n=i.change_multiple_column_values?.column_values?.reduce(((e,t)=>(e[t.id]=t.value??null,e)),{});return{content:{message:`Item ${i.change_multiple_column_values?.id} successfully updated`,item_id:i.change_multiple_column_values?.id,item_name:i.change_multiple_column_values?.name,item_url:i.change_multiple_column_values?.url,column_values:n}}}}const hp=Fd`
524
+ `;class sp extends Error{constructor(e,t){super(e),this.name="ToolValidationError",this.code=t}}function dp(e,t){const a=e?.response?.errors?.map((e=>{const{code:t,error_data:a}=e.extensions??{},i=Object.fromEntries(Object.entries({code:t,error_data:a}).filter((([,e])=>void 0!==e)));return Object.keys(i).length>0?`${e.message} (details: ${JSON.stringify(i)})`:e.message}))?.join(", ");if(a){const i=new Error(`Failed to ${t}: ${a}`);throw i.response=e.response,i}const i=e instanceof Error?e.message:"Unknown error";throw new Error(`Failed to ${t}: ${i}`)}function pp(e){if(e instanceof Error&&"AbortError"===e.name)throw new Error("Search has timed out, try providing alternative search term")}const lp={query:n.z.string().describe("Custom GraphQL query/mutation. you need to provide the full query / mutation"),variables:n.z.string().describe("JSON string containing the variables for the GraphQL operation")};class cp extends me{constructor(e,t){super(e,t),this.name="all_monday_api",this.type=exports.ToolType.ALL_API,this.annotations=ce({title:"Run Query or Mutation on any monday.com API",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"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."}getInputSchema(){return lp}async loadSchema(e){if(cp.schemaCache[e])return cp.schemaCache[e];try{const t=await this.mondayApi.rawRequest(Zd),{data:a}=t,i=gn(a);return cp.schemaCache[e]=i,i}catch(e){throw new Error(`Failed to load GraphQL schema: ${e instanceof Error?e.message:"Unknown error"}`)}}async validateOperation(e,t){return fn(await this.loadSchema(t),dt(e)).map((e=>e.message))}async executeInternal(e){const{query:t,variables:a}=e;let i={};try{i=JSON.parse(a)}catch(e){throw new Error(`Error parsing variables: ${e instanceof Error?e.message:"Unknown error"}`)}const n=await this.validateOperation(t,this.context?.apiVersion??M);if(n.length>0)throw new Error(n.join(", "));try{return{content:await this.mondayApi.request(t,i)}}catch(e){dp(e,"execute GraphQL operation")}}}cp.schemaCache={};const mp={itemId:n.z.number().describe("The ID of the item to be updated"),columnValues:n.z.string().describe('A string containing the new column values for the item following this structure: {\\"column_id\\": \\"value\\",... you can change multiple columns at once, note that for status column you must use nested value with \'label\' as a key and for date column use \'date\' as key} - example: "{\\"text_column_id\\":\\"New text\\", \\"status_column_id\\":{\\"label\\":\\"Done\\"}, \\"date_column_id\\":{\\"date\\":\\"2023-05-25\\"}, \\"phone_id\\":\\"123-456-7890\\", \\"email_id\\":\\"test@example.com\\"}"'),createLabelsIfMissing:n.z.boolean().optional().describe("If true, create missing Status/Dropdown labels when setting those columns. Requires permission to change board structure. Omit or false to only use existing labels.")},up={boardId:n.z.number().describe("The ID of the board that contains the item to be updated"),...mp};class hp extends me{constructor(){super(...arguments),this.name="change_item_column_values",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Change Item Column Values",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Change the column values of an item in a monday.com board. [REQUIRED PRECONDITION]: For board-relation linking tasks, call link_board_items_workflow before using this tool."}getInputSchema(){return this.context?.boardId?mp:up}async executeInternal(e){const t={boardId:(this.context?.boardId??e.boardId).toString(),itemId:e.itemId.toString(),columnValues:e.columnValues,...void 0!==e.createLabelsIfMissing&&{createLabelsIfMissing:e.createLabelsIfMissing}};let a;try{a=Object.keys(JSON.parse(e.columnValues))}catch(e){throw new Error(`Invalid columnValues JSON: ${e.message}`)}const i=await this.mondayApi.request(Hd,{...t,columnIds:a}),n=i.change_multiple_column_values?.column_values?.reduce(((e,t)=>(e[t.id]=t.value??null,e)),{});return{content:{message:`Item ${i.change_multiple_column_values?.id} successfully updated`,item_id:i.change_multiple_column_values?.id,item_name:i.change_multiple_column_values?.name,item_url:i.change_multiple_column_values?.url,column_values:n}}}}const fp=Fd`
513
525
  query GetObjectSchemas($ids: [ID!], $names: [String!], $limit: Int, $page: Int, $excludeCreatedByMonday: Boolean) {
514
526
  get_object_schemas(ids: $ids, names: $names, limit: $limit, page: $page, exclude_created_by_monday: $excludeCreatedByMonday) {
515
527
  id
@@ -521,7 +533,7 @@
521
533
  connected_boards_count
522
534
  }
523
535
  }
524
- `,fp={ids:n.z.array(n.z.string()).optional().describe("List of object schema IDs to retrieve. Mutually exclusive with names."),names:n.z.array(n.z.string()).optional().describe("List of object schema names to retrieve. Mutually exclusive with ids."),limit:n.z.number().optional().describe("Number of results per page. Default 25, max 100."),page:n.z.number().optional().describe("1-indexed page number. Default 1."),excludeCreatedByMonday:n.z.boolean().optional().describe("If true, returns only user-created schemas and excludes default monday.com schemas.")};const _p=Fd`
536
+ `,_p={ids:n.z.array(n.z.string()).optional().describe("List of object schema IDs to retrieve. Mutually exclusive with names."),names:n.z.array(n.z.string()).optional().describe("List of object schema names to retrieve. Mutually exclusive with ids."),limit:n.z.number().optional().describe("Number of results per page. Default 25, max 100."),page:n.z.number().optional().describe("1-indexed page number. Default 1."),excludeCreatedByMonday:n.z.boolean().optional().describe("If true, returns only user-created schemas and excludes default monday.com schemas.")};const gp=Fd`
525
537
  mutation CreateObjectSchema($name: String!, $parentId: ID, $description: String) {
526
538
  create_object_schema(name: $name, parent_id: $parentId, description: $description) {
527
539
  id
@@ -531,7 +543,7 @@
531
543
  revision
532
544
  }
533
545
  }
534
- `,gp={name:n.z.string().describe("A unique human-readable name for this object schema. Must be 3-15 characters, contain only lowercase letters, numbers, and underscores, and include at least one letter."),parentId:n.z.string().optional().describe("The ID of the parent object schema."),description:n.z.string().optional().describe("The description for this object schema.")};const bp=Fd`
546
+ `,bp={name:n.z.string().describe("A unique human-readable name for this object schema. Must be 3-15 characters, contain only lowercase letters, numbers, and underscores, and include at least one letter."),parentId:n.z.string().optional().describe("The ID of the parent object schema."),description:n.z.string().optional().describe("The description for this object schema.")};const vp=Fd`
535
547
  mutation UpdateObjectSchema($id: ID!, $revision: Int!, $parentId: ID, $description: String) {
536
548
  update_object_schema(id: $id, revision: $revision, parent_id: $parentId, description: $description) {
537
549
  id
@@ -541,14 +553,14 @@
541
553
  revision
542
554
  }
543
555
  }
544
- `,vp={id:n.z.string().describe("The ID of the object schema to update."),revision:n.z.number().describe("The current revision number for optimistic locking. Retrieve it first via get_object_schemas."),parentId:n.z.string().optional().describe("The ID of the parent object schema."),description:n.z.string().optional().describe("The new description for this object schema.")};const yp=Fd`
556
+ `,yp={id:n.z.string().describe("The ID of the object schema to update."),revision:n.z.number().describe("The current revision number for optimistic locking. Retrieve it first via get_object_schemas."),parentId:n.z.string().optional().describe("The ID of the parent object schema."),description:n.z.string().optional().describe("The new description for this object schema.")};const Ip=Fd`
545
557
  mutation DeleteObjectSchema($id: ID, $name: String) {
546
558
  delete_object_schema(id: $id, name: $name) {
547
559
  id
548
560
  name
549
561
  }
550
562
  }
551
- `,Ip={id:n.z.string().optional().describe("The ID of the object schema to delete. Either id or name must be provided."),name:n.z.string().optional().describe("The name of the object schema to delete. Either id or name must be provided.")};const wp=Fd`
563
+ `,wp={id:n.z.string().optional().describe("The ID of the object schema to delete. Either id or name must be provided."),name:n.z.string().optional().describe("The name of the object schema to delete. Either id or name must be provided.")};const Tp=Fd`
552
564
  mutation DeleteObjectSchemaColumns($objectSchemaId: ID, $objectSchemaName: String, $columnIds: [ID!]!) {
553
565
  delete_object_schema_columns(object_schema_id: $objectSchemaId, object_schema_name: $objectSchemaName, column_ids: $columnIds) {
554
566
  id
@@ -558,14 +570,14 @@
558
570
  revision
559
571
  }
560
572
  }
561
- `,Tp={objectSchemaId:n.z.string().optional().describe("The ID of the object schema to delete columns from. Either objectSchemaId or objectSchemaName must be provided."),objectSchemaName:n.z.string().optional().describe("The name of the object schema to delete columns from. Either objectSchemaId or objectSchemaName must be provided."),columnIds:n.z.array(n.z.string()).describe("IDs of the columns to permanently delete. Only allowed when no boards are connected to the schema.")};const Ep=Fd`
573
+ `,Ep={objectSchemaId:n.z.string().optional().describe("The ID of the object schema to delete columns from. Either objectSchemaId or objectSchemaName must be provided."),objectSchemaName:n.z.string().optional().describe("The name of the object schema to delete columns from. Either objectSchemaId or objectSchemaName must be provided."),columnIds:n.z.array(n.z.string()).describe("IDs of the columns to permanently delete. Only allowed when no boards are connected to the schema.")};const Ap=Fd`
562
574
  mutation ConnectBoardToObjectSchema($boardId: ID!, $objectSchemaId: ID, $objectSchemaName: String) {
563
575
  connect_board_to_object_schema(board_id: $boardId, object_schema_id: $objectSchemaId, object_schema_name: $objectSchemaName) {
564
576
  id
565
577
  object_schema_id
566
578
  }
567
579
  }
568
- `,Ap=Fd`
580
+ `,Sp=Fd`
569
581
  mutation DetachBoardsFromObjectSchema($boardIds: [ID!]!) {
570
582
  detach_boards_from_object_schema(board_ids: $boardIds) {
571
583
  board_id
@@ -573,7 +585,7 @@
573
585
  error
574
586
  }
575
587
  }
576
- `,Sp={action:n.z.enum(["connect","detach"]).describe("The operation to perform. connect: attaches a board to an object schema so it inherits the schema column structure. detach: removes one or more boards from their object schema."),boardId:n.z.string().optional().describe("Required for action=connect. The ID of the board to connect."),boardIds:n.z.array(n.z.string()).optional().describe("Required for action=detach. The IDs of the boards to detach."),objectSchemaId:n.z.string().optional().describe("Required for action=connect. The ID of the object schema. Either objectSchemaId or objectSchemaName must be provided."),objectSchemaName:n.z.string().optional().describe("Required for action=connect. The name of the object schema. Either objectSchemaId or objectSchemaName must be provided.")};var Np;!function(e){e.Schema="schema",e.Guidelines="guidelines"}(Np||(Np={}));const Dp=Fd`
588
+ `,Np={action:n.z.enum(["connect","detach"]).describe("The operation to perform. connect: attaches a board to an object schema so it inherits the schema column structure. detach: removes one or more boards from their object schema."),boardId:n.z.string().optional().describe("Required for action=connect. The ID of the board to connect."),boardIds:n.z.array(n.z.string()).optional().describe("Required for action=detach. The IDs of the boards to detach."),objectSchemaId:n.z.string().optional().describe("Required for action=connect. The ID of the object schema. Either objectSchemaId or objectSchemaName must be provided."),objectSchemaName:n.z.string().optional().describe("Required for action=connect. The name of the object schema. Either objectSchemaId or objectSchemaName must be provided.")};var Dp;!function(e){e.Schema="schema",e.Guidelines="guidelines"}(Dp||(Dp={}));const Op=Fd`
577
589
  mutation CreateObjectSchemaColumns($objectSchemaId: ID, $objectSchemaName: String, $columns: [CreateObjectSchemaColumnInput!]!) {
578
590
  create_object_schema_columns(object_schema_id: $objectSchemaId, object_schema_name: $objectSchemaName, columns: $columns) {
579
591
  id
@@ -583,7 +595,7 @@
583
595
  revision
584
596
  }
585
597
  }
586
- `,Op=Fd`
598
+ `,kp=Fd`
587
599
  mutation UpdateObjectSchemaColumns($objectSchemaId: ID, $objectSchemaName: String, $columns: [UpdateObjectSchemaColumnInput!]!) {
588
600
  update_object_schema_columns(object_schema_id: $objectSchemaId, object_schema_name: $objectSchemaName, columns: $columns) {
589
601
  id
@@ -593,7 +605,7 @@
593
605
  revision
594
606
  }
595
607
  }
596
- `,kp=n.z.object({can_override:n.z.array(n.z.enum(["title","description","settings"])).optional().describe("Fields that boards can override. Allowed values: title, description, settings."),cannot_delete:n.z.boolean().optional().describe("If true, the column cannot be deleted from boards.")}).optional().describe("Controls board-level permissions for this column. If omitted, defaults to: no field overrides allowed, column can be deleted by boards."),Cp=n.z.object({type:n.z.string().describe(`Column type (e.g. text, status, numbers, date, dropdown, people). Call get_column_type_info with fetchMode "${Np.Schema}" for a type's settings schema.`),title:n.z.string().describe("Column title."),description:n.z.string().optional().describe("Column description."),defaults:n.z.record(n.z.unknown()).optional().describe(`Type-specific column settings. Call get_column_type_info with fetchMode "${Np.Schema}" before populating this field to understand the valid structure.`),policy:kp,opt_out_by_default:n.z.boolean().optional().describe("If true, the column will not be automatically added to boards connected to this schema.")}),Rp=n.z.object({column_id:n.z.string().describe("The ID of the column to update."),title:n.z.string().optional().describe("New column title."),description:n.z.string().optional().describe("New column description."),defaults:n.z.record(n.z.unknown()).optional().describe(`Type-specific column settings. Call get_column_type_info with fetchMode "${Np.Schema}" before populating this field.`),opt_out_by_default:n.z.boolean().optional().describe("If true, the column will not be automatically added to boards connected to this schema."),policy:kp}),$p={action:n.z.enum(["create","update"]).describe(`The operation to perform on columns. create: adds new columns to the schema. Each column requires type and title. Call get_column_type_info with fetchMode "${Np.Schema}" first to understand valid defaults per column type. update: modifies existing columns. Each entry must include column_id. Only send the columns you want to modify — other columns are unaffected. Use opt_out_by_default=true to opt a column out (stop auto-adding to boards), or opt_out_by_default=false to opt in (restore auto-adding).`),objectSchemaId:n.z.string().optional().describe("The ID of the object schema. Either objectSchemaId or objectSchemaName must be provided."),objectSchemaName:n.z.string().optional().describe("The name of the object schema. Either objectSchemaId or objectSchemaName must be provided."),columns:n.z.array(n.z.union([Cp,Rp])).describe("Array of columns to create or update.")};const xp=Fd`
608
+ `,Cp=n.z.object({can_override:n.z.array(n.z.enum(["title","description","settings"])).optional().describe("Fields that boards can override. Allowed values: title, description, settings."),cannot_delete:n.z.boolean().optional().describe("If true, the column cannot be deleted from boards.")}).optional().describe("Controls board-level permissions for this column. If omitted, defaults to: no field overrides allowed, column can be deleted by boards."),Rp=n.z.object({type:n.z.string().describe(`Column type (e.g. text, status, numbers, date, dropdown, people). Call get_column_type_info with fetchMode "${Dp.Schema}" for a type's settings schema.`),title:n.z.string().describe("Column title."),description:n.z.string().optional().describe("Column description."),defaults:n.z.record(n.z.unknown()).optional().describe(`Type-specific column settings. Call get_column_type_info with fetchMode "${Dp.Schema}" before populating this field to understand the valid structure.`),policy:Cp,opt_out_by_default:n.z.boolean().optional().describe("If true, the column will not be automatically added to boards connected to this schema.")}),$p=n.z.object({column_id:n.z.string().describe("The ID of the column to update."),title:n.z.string().optional().describe("New column title."),description:n.z.string().optional().describe("New column description."),defaults:n.z.record(n.z.unknown()).optional().describe(`Type-specific column settings. Call get_column_type_info with fetchMode "${Dp.Schema}" before populating this field.`),opt_out_by_default:n.z.boolean().optional().describe("If true, the column will not be automatically added to boards connected to this schema."),policy:Cp}),xp={action:n.z.enum(["create","update"]).describe(`The operation to perform on columns. create: adds new columns to the schema. Each column requires type and title. Call get_column_type_info with fetchMode "${Dp.Schema}" first to understand valid defaults per column type. update: modifies existing columns. Each entry must include column_id. Only send the columns you want to modify — other columns are unaffected. Use opt_out_by_default=true to opt a column out (stop auto-adding to boards), or opt_out_by_default=false to opt in (restore auto-adding).`),objectSchemaId:n.z.string().optional().describe("The ID of the object schema. Either objectSchemaId or objectSchemaName must be provided."),objectSchemaName:n.z.string().optional().describe("The name of the object schema. Either objectSchemaId or objectSchemaName must be provided."),columns:n.z.array(n.z.union([Rp,$p])).describe("Array of columns to create or update.")};const Lp=Fd`
597
609
  mutation SetObjectSchemaColumnActiveState($objectSchemaId: ID, $objectSchemaName: String, $columnId: ID!, $action: ColumnActiveStateAction!) {
598
610
  set_object_schema_column_active_state(object_schema_id: $objectSchemaId, object_schema_name: $objectSchemaName, column_id: $columnId, action: $action) {
599
611
  id
@@ -603,7 +615,7 @@
603
615
  revision
604
616
  }
605
617
  }
606
- `,Lp={action:n.z.enum(["deactivate","reactivate"]).describe("The operation to perform on the column. deactivate: soft-disables the column. It is marked inactive but not deleted. Reversible. reactivate: re-enables a previously deactivated column."),objectSchemaId:n.z.string().optional().describe("The ID of the object schema. Either objectSchemaId or objectSchemaName must be provided."),objectSchemaName:n.z.string().optional().describe("The name of the object schema. Either objectSchemaId or objectSchemaName must be provided."),columnId:n.z.string().describe("The ID of the column to deactivate or reactivate.")};const Up={boardName:n.z.string().describe("The name of the board to create"),boardKind:n.z.nativeEnum(Wn).default(Wn.Public).describe("The kind of board to create"),boardDescription:n.z.string().optional().describe("The description of the board to create"),workspaceId:n.z.string().optional().describe("The ID of the workspace to create the board in"),boardOwnerIds:n.z.array(n.z.string()).optional().describe("Optional list of user IDs to set as board owners")};const Pp={templateId:n.z.coerce.number().int().positive().describe("The template ID to apply."),destinationWorkspaceId:n.z.coerce.number().int().positive().optional().describe("Target workspace ID."),destinationName:n.z.string().optional().describe("Name for the created instance or folder."),boardKind:n.z.nativeEnum(Wn).optional().describe("Visibility applied to all boards created by the template. public = visible to all account members (API default). private = visible only to owner and explicitly added members. share = accessible to guests outside the account via a link. For workspace templates this setting applies to every board in the installation. Omit to use the API default (public).")};const Fp={processId:n.z.string().describe("The process_id returned by use_template.")};const Vp=Fd`
618
+ `,Up={action:n.z.enum(["deactivate","reactivate"]).describe("The operation to perform on the column. deactivate: soft-disables the column. It is marked inactive but not deleted. Reversible. reactivate: re-enables a previously deactivated column."),objectSchemaId:n.z.string().optional().describe("The ID of the object schema. Either objectSchemaId or objectSchemaName must be provided."),objectSchemaName:n.z.string().optional().describe("The name of the object schema. Either objectSchemaId or objectSchemaName must be provided."),columnId:n.z.string().describe("The ID of the column to deactivate or reactivate.")};const Pp={boardName:n.z.string().describe("The name of the board to create"),boardKind:n.z.nativeEnum(Wn).default(Wn.Public).describe("The kind of board to create"),boardDescription:n.z.string().optional().describe("The description of the board to create"),workspaceId:n.z.string().optional().describe("The ID of the workspace to create the board in"),boardOwnerIds:n.z.array(n.z.string()).optional().describe("Optional list of user IDs to set as board owners")};const Fp={templateId:n.z.coerce.number().int().positive().describe("The template ID to apply."),destinationWorkspaceId:n.z.coerce.number().int().positive().optional().describe("Target workspace ID."),destinationName:n.z.string().optional().describe("Name for the created instance or folder."),boardKind:n.z.nativeEnum(Wn).optional().describe("Visibility applied to all boards created by the template. public = visible to all account members (API default). private = visible only to owner and explicitly added members. share = accessible to guests outside the account via a link. For workspace templates this setting applies to every board in the installation. Omit to use the API default (public).")};const Vp={processId:n.z.string().describe("The process_id returned by use_template.")};const Mp=Fd`
607
619
  mutation createView(
608
620
  $boardId: ID!
609
621
  $type: ViewKind!
@@ -625,7 +637,7 @@
625
637
  type
626
638
  }
627
639
  }
628
- `,Mp={boardId:n.z.string().describe("The board ID to create the view on"),type:n.z.nativeEnum(ls).default(ls.Table).describe("The type of board view to create. Use TABLE for standard board views."),name:n.z.string().optional().describe('The name of the view (e.g. "High Priority Items", "My Tasks")'),filter:n.z.object({rules:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to filter by"),compare_value:n.z.any().default([]).describe("The value(s) to compare against"),operator:n.z.nativeEnum(dr).optional().describe("The comparison operator (defaults to any_of)")})).optional().describe("Filter rules"),operator:n.z.nativeEnum(sr).optional().describe("Logical operator between rules (defaults to and)")}).optional().describe("Filter configuration for the view"),sort:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to sort by"),direction:n.z.nativeEnum(rr).optional().describe("Sort direction (defaults to asc)")})).optional().describe("Sort configuration for the view"),settings:n.z.any().optional().describe("Type-specific view settings as a JSON object (e.g. column visibility, group_by for TABLE). The shape varies by view type — call get_view_schema_by_type with the same ViewKind to discover the supported structure. For TABLE views, prefer the dedicated create_view_table tool which exposes a strongly-typed settings field.")};const Bp=Fd`
640
+ `,Bp={boardId:n.z.string().describe("The board ID to create the view on"),type:n.z.nativeEnum(ls).default(ls.Table).describe("The type of board view to create. Use TABLE for standard board views."),name:n.z.string().optional().describe('The name of the view (e.g. "High Priority Items", "My Tasks")'),filter:n.z.object({rules:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to filter by"),compare_value:n.z.any().default([]).describe("The value(s) to compare against"),operator:n.z.nativeEnum(dr).optional().describe("The comparison operator (defaults to any_of)")})).optional().describe("Filter rules"),operator:n.z.nativeEnum(sr).optional().describe("Logical operator between rules (defaults to and)")}).optional().describe("Filter configuration for the view"),sort:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to sort by"),direction:n.z.nativeEnum(rr).optional().describe("Sort direction (defaults to asc)")})).optional().describe("Sort configuration for the view"),settings:n.z.any().optional().describe("Type-specific view settings as a JSON object (e.g. column visibility, group_by for TABLE). The shape varies by view type — call get_view_schema_by_type with the same ViewKind to discover the supported structure. For TABLE views, prefer the dedicated create_view_table tool which exposes a strongly-typed settings field.")};const zp=Fd`
629
641
  mutation updateView(
630
642
  $viewId: ID!
631
643
  $boardId: ID!
@@ -649,7 +661,7 @@
649
661
  type
650
662
  }
651
663
  }
652
- `,zp={viewId:n.z.string().describe("The ID of the view to update"),boardId:n.z.string().describe("The board ID the view belongs to"),type:n.z.nativeEnum(ls).default(ls.Table).describe("The type of the board view being updated. Use TABLE for standard board views."),name:n.z.string().optional().describe("New name for the view (omit to leave unchanged)"),filter:n.z.object({rules:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to filter by"),compare_value:n.z.any().default([]).describe("The value(s) to compare against"),operator:n.z.nativeEnum(dr).optional().describe("The comparison operator (defaults to any_of)")})).optional().describe("Filter rules"),operator:n.z.nativeEnum(sr).optional().describe("Logical operator between rules (defaults to and)")}).optional().describe("Filter configuration to apply to the view"),sort:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to sort by"),direction:n.z.nativeEnum(rr).optional().describe("Sort direction (defaults to asc)")})).optional().describe("Sort configuration for the view"),settings:n.z.any().optional().describe("Type-specific view settings as a JSON object (e.g. column visibility, group_by for TABLE). The shape varies by view type — call get_view_schema_by_type with the same ViewKind to discover the supported structure. For TABLE views, prefer the dedicated update_view_table tool which exposes a strongly-typed settings field.")};const jp=Fd`
664
+ `,jp={viewId:n.z.string().describe("The ID of the view to update"),boardId:n.z.string().describe("The board ID the view belongs to"),type:n.z.nativeEnum(ls).default(ls.Table).describe("The type of the board view being updated. Use TABLE for standard board views."),name:n.z.string().optional().describe("New name for the view (omit to leave unchanged)"),filter:n.z.object({rules:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to filter by"),compare_value:n.z.any().default([]).describe("The value(s) to compare against"),operator:n.z.nativeEnum(dr).optional().describe("The comparison operator (defaults to any_of)")})).optional().describe("Filter rules"),operator:n.z.nativeEnum(sr).optional().describe("Logical operator between rules (defaults to and)")}).optional().describe("Filter configuration to apply to the view"),sort:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to sort by"),direction:n.z.nativeEnum(rr).optional().describe("Sort direction (defaults to asc)")})).optional().describe("Sort configuration for the view"),settings:n.z.any().optional().describe("Type-specific view settings as a JSON object (e.g. column visibility, group_by for TABLE). The shape varies by view type — call get_view_schema_by_type with the same ViewKind to discover the supported structure. For TABLE views, prefer the dedicated update_view_table tool which exposes a strongly-typed settings field.")};const qp=Fd`
653
665
  mutation createViewTable(
654
666
  $boardId: ID!
655
667
  $name: String
@@ -671,7 +683,7 @@
671
683
  type
672
684
  }
673
685
  }
674
- `,qp=n.z.object({column_id:n.z.string().describe("The ID of the column"),visible:n.z.boolean().describe("Whether the column is visible")}),Gp=n.z.object({columns:n.z.object({column_properties:n.z.array(qp).optional().describe("Visibility configuration for main board columns"),subitems_column_properties:n.z.array(qp).optional().describe("Visibility configuration for subitem columns"),floating_columns_count:n.z.number().int().optional().describe("Number of floating columns to display"),column_order:n.z.array(n.z.string()).optional().describe("Ordered list of column IDs")}).optional().describe("Column visibility and order configuration"),group_by:n.z.object({conditions:n.z.array(n.z.object({columnId:n.z.string().describe("ID of the column to group by"),config:n.z.object({sortSettings:n.z.object({direction:n.z.nativeEnum(Ur).describe("Sort direction (ASC or DESC)"),type:n.z.string().optional().describe("Type of sorting to apply")}).optional()}).optional()})).describe("Group-by conditions"),hideEmptyGroups:n.z.boolean().optional().describe("Whether to hide groups with no items")}).optional().describe("Group-by configuration for the table view")}).optional().describe("Table-specific view settings (column visibility/order, group-by)"),Hp={boardId:n.z.string().describe("The board ID to create the table view on"),name:n.z.string().optional().describe('The name of the view (e.g. "High Priority Items", "My Tasks")'),filter:n.z.object({rules:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to filter by"),compare_value:n.z.any().default([]).describe("The value(s) to compare against"),operator:n.z.nativeEnum(dr).optional().describe("The comparison operator (defaults to any_of)")})).optional().describe("Filter rules"),operator:n.z.nativeEnum(sr).optional().describe("Logical operator between rules (defaults to and)")}).optional().describe("Filter configuration for the view"),sort:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to sort by"),direction:n.z.nativeEnum(rr).optional().describe("Sort direction (defaults to asc)")})).optional().describe("Sort configuration for the view"),tags:n.z.array(n.z.string()).optional().describe("Tags to apply to the view"),settings:Gp};const Wp=Fd`
686
+ `,Gp=n.z.object({column_id:n.z.string().describe("The ID of the column"),visible:n.z.boolean().describe("Whether the column is visible")}),Hp=n.z.object({columns:n.z.object({column_properties:n.z.array(Gp).optional().describe("Visibility configuration for main board columns"),subitems_column_properties:n.z.array(Gp).optional().describe("Visibility configuration for subitem columns"),floating_columns_count:n.z.number().int().optional().describe("Number of floating columns to display"),column_order:n.z.array(n.z.string()).optional().describe("Ordered list of column IDs")}).optional().describe("Column visibility and order configuration"),group_by:n.z.object({conditions:n.z.array(n.z.object({columnId:n.z.string().describe("ID of the column to group by"),config:n.z.object({sortSettings:n.z.object({direction:n.z.nativeEnum(Ur).describe("Sort direction (ASC or DESC)"),type:n.z.string().optional().describe("Type of sorting to apply")}).optional()}).optional()})).describe("Group-by conditions"),hideEmptyGroups:n.z.boolean().optional().describe("Whether to hide groups with no items")}).optional().describe("Group-by configuration for the table view")}).optional().describe("Table-specific view settings (column visibility/order, group-by)"),Wp={boardId:n.z.string().describe("The board ID to create the table view on"),name:n.z.string().optional().describe('The name of the view (e.g. "High Priority Items", "My Tasks")'),filter:n.z.object({rules:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to filter by"),compare_value:n.z.any().default([]).describe("The value(s) to compare against"),operator:n.z.nativeEnum(dr).optional().describe("The comparison operator (defaults to any_of)")})).optional().describe("Filter rules"),operator:n.z.nativeEnum(sr).optional().describe("Logical operator between rules (defaults to and)")}).optional().describe("Filter configuration for the view"),sort:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to sort by"),direction:n.z.nativeEnum(rr).optional().describe("Sort direction (defaults to asc)")})).optional().describe("Sort configuration for the view"),tags:n.z.array(n.z.string()).optional().describe("Tags to apply to the view"),settings:Hp};const Yp=Fd`
675
687
  mutation updateViewTable(
676
688
  $viewId: ID!
677
689
  $boardId: ID!
@@ -695,7 +707,7 @@
695
707
  type
696
708
  }
697
709
  }
698
- `,Yp=n.z.object({column_id:n.z.string().describe("The ID of the column"),visible:n.z.boolean().describe("Whether the column is visible")}),Kp=n.z.object({columns:n.z.object({column_properties:n.z.array(Yp).optional().describe("Visibility configuration for main board columns"),subitems_column_properties:n.z.array(Yp).optional().describe("Visibility configuration for subitem columns"),floating_columns_count:n.z.number().int().optional().describe("Number of floating columns to display"),column_order:n.z.array(n.z.string()).optional().describe("Ordered list of column IDs")}).optional().describe("Column visibility and order configuration"),group_by:n.z.object({conditions:n.z.array(n.z.object({columnId:n.z.string().describe("ID of the column to group by"),config:n.z.object({sortSettings:n.z.object({direction:n.z.nativeEnum(Ur).describe("Sort direction (ASC or DESC)"),type:n.z.string().optional().describe("Type of sorting to apply")}).optional()}).optional()})).describe("Group-by conditions"),hideEmptyGroups:n.z.boolean().optional().describe("Whether to hide groups with no items")}).optional().describe("Group-by configuration for the table view")}).optional().describe("Table-specific view settings (column visibility/order, group-by)"),Qp={viewId:n.z.string().describe("The ID of the table view to update"),boardId:n.z.string().describe("The board ID the view belongs to"),name:n.z.string().optional().describe("New name for the view (omit to leave unchanged)"),filter:n.z.object({rules:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to filter by"),compare_value:n.z.any().default([]).describe("The value(s) to compare against"),operator:n.z.nativeEnum(dr).optional().describe("The comparison operator (defaults to any_of)")})).optional().describe("Filter rules"),operator:n.z.nativeEnum(sr).optional().describe("Logical operator between rules (defaults to and)")}).optional().describe("Filter configuration to apply to the view"),sort:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to sort by"),direction:n.z.nativeEnum(rr).optional().describe("Sort direction (defaults to asc)")})).optional().describe("Sort configuration for the view"),tags:n.z.array(n.z.string()).optional().describe("Tags to apply to the view"),settings:Kp};const Jp=Fd`
710
+ `,Kp=n.z.object({column_id:n.z.string().describe("The ID of the column"),visible:n.z.boolean().describe("Whether the column is visible")}),Qp=n.z.object({columns:n.z.object({column_properties:n.z.array(Kp).optional().describe("Visibility configuration for main board columns"),subitems_column_properties:n.z.array(Kp).optional().describe("Visibility configuration for subitem columns"),floating_columns_count:n.z.number().int().optional().describe("Number of floating columns to display"),column_order:n.z.array(n.z.string()).optional().describe("Ordered list of column IDs")}).optional().describe("Column visibility and order configuration"),group_by:n.z.object({conditions:n.z.array(n.z.object({columnId:n.z.string().describe("ID of the column to group by"),config:n.z.object({sortSettings:n.z.object({direction:n.z.nativeEnum(Ur).describe("Sort direction (ASC or DESC)"),type:n.z.string().optional().describe("Type of sorting to apply")}).optional()}).optional()})).describe("Group-by conditions"),hideEmptyGroups:n.z.boolean().optional().describe("Whether to hide groups with no items")}).optional().describe("Group-by configuration for the table view")}).optional().describe("Table-specific view settings (column visibility/order, group-by)"),Jp={viewId:n.z.string().describe("The ID of the table view to update"),boardId:n.z.string().describe("The board ID the view belongs to"),name:n.z.string().optional().describe("New name for the view (omit to leave unchanged)"),filter:n.z.object({rules:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to filter by"),compare_value:n.z.any().default([]).describe("The value(s) to compare against"),operator:n.z.nativeEnum(dr).optional().describe("The comparison operator (defaults to any_of)")})).optional().describe("Filter rules"),operator:n.z.nativeEnum(sr).optional().describe("Logical operator between rules (defaults to and)")}).optional().describe("Filter configuration to apply to the view"),sort:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID to sort by"),direction:n.z.nativeEnum(rr).optional().describe("Sort direction (defaults to asc)")})).optional().describe("Sort configuration for the view"),tags:n.z.array(n.z.string()).optional().describe("Tags to apply to the view"),settings:Qp};const Xp=Fd`
699
711
  fragment QuestionBasic on FormQuestion {
700
712
  id
701
713
  type
@@ -705,7 +717,7 @@
705
717
  required
706
718
  page_block_id
707
719
  }
708
- `,Xp=Fd`
720
+ `,Zp=Fd`
709
721
  fragment QuestionOptions on FormQuestion {
710
722
  options {
711
723
  label
@@ -714,7 +726,7 @@
714
726
  active
715
727
  }
716
728
  }
717
- `,Zp=Fd`
729
+ `,el=Fd`
718
730
  fragment QuestionSettings on FormQuestion {
719
731
  settings {
720
732
  prefill {
@@ -740,17 +752,17 @@
740
752
  default_answer
741
753
  }
742
754
  }
743
- `,el=Fd`
755
+ `,tl=Fd`
744
756
  fragment QuestionComplete on FormQuestion {
745
757
  ...QuestionBasic
746
758
  ...QuestionOptions
747
759
  ...QuestionSettings
748
760
  show_if_rules
749
761
  }
750
- ${Jp}
751
762
  ${Xp}
752
763
  ${Zp}
753
- `,tl=Fd`
764
+ ${el}
765
+ `,al=Fd`
754
766
  fragment FormFeatures on FormFeatures {
755
767
  isInternal
756
768
  reCaptchaChallenge
@@ -806,7 +818,7 @@
806
818
  enabled
807
819
  }
808
820
  }
809
- `,al=Fd`
821
+ `,il=Fd`
810
822
  fragment FormAppearance on FormAppearance {
811
823
  hideBranding
812
824
  showProgressBar
@@ -834,18 +846,18 @@
834
846
  text
835
847
  }
836
848
  }
837
- `,il=Fd`
849
+ `,nl=Fd`
838
850
  fragment FormAccessibility on FormAccessibility {
839
851
  language
840
852
  logoAltText
841
853
  }
842
- `,nl=Fd`
854
+ `,ol=Fd`
843
855
  fragment FormTag on FormTag {
844
856
  id
845
857
  name
846
858
  columnId
847
859
  }
848
- `,ol=Fd`
860
+ `,rl=Fd`
849
861
  mutation createForm(
850
862
  $destination_workspace_id: ID!
851
863
  $destination_folder_id: ID
@@ -872,7 +884,7 @@
872
884
  token
873
885
  }
874
886
  }
875
- `,rl=Fd`
887
+ `,sl=Fd`
876
888
  query getForm($formToken: String!) {
877
889
  form(formToken: $formToken) {
878
890
  id
@@ -901,16 +913,16 @@
901
913
  }
902
914
  }
903
915
  }
904
- ${el}
905
916
  ${tl}
906
917
  ${al}
907
918
  ${il}
908
919
  ${nl}
909
- `,sl=Fd`
920
+ ${ol}
921
+ `,dl=Fd`
910
922
  mutation deleteFormQuestion($formToken: String!, $questionId: String!) {
911
923
  delete_question(formToken: $formToken, questionId: $questionId)
912
924
  }
913
- `,dl=Fd`
925
+ `,pl=Fd`
914
926
  mutation createFormQuestion($formToken: String!, $question: CreateQuestionInput!) {
915
927
  create_form_question(formToken: $formToken, question: $question) {
916
928
  ...QuestionBasic
@@ -918,10 +930,10 @@
918
930
  ...QuestionSettings
919
931
  }
920
932
  }
921
- ${Jp}
922
933
  ${Xp}
923
934
  ${Zp}
924
- `,pl=Fd`
935
+ ${el}
936
+ `,ll=Fd`
925
937
  mutation updateFormQuestion($formToken: String!, $questionId: String!, $question: UpdateQuestionInput!) {
926
938
  update_form_question(formToken: $formToken, questionId: $questionId, question: $question) {
927
939
  ...QuestionBasic
@@ -929,9 +941,9 @@
929
941
  ...QuestionSettings
930
942
  }
931
943
  }
932
- ${Jp}
933
944
  ${Xp}
934
945
  ${Zp}
946
+ ${el}
935
947
  `;Fd`
936
948
  mutation updateForm($formToken: String!, $input: UpdateFormInput!) {
937
949
  update_form(formToken: $formToken, input: $input) {
@@ -956,42 +968,42 @@
956
968
  }
957
969
  }
958
970
  }
959
- ${tl}
960
971
  ${al}
961
972
  ${il}
962
- `;const ll=Fd`
973
+ ${nl}
974
+ `;const cl=Fd`
963
975
  mutation setFormPassword($formToken: String!, $input: SetFormPasswordInput!) {
964
976
  set_form_password(formToken: $formToken, input: $input) {
965
977
  id
966
978
  }
967
979
  }
968
- `,cl=Fd`
980
+ `,ml=Fd`
969
981
  mutation shortenFormUrl($formToken: String!) {
970
982
  shorten_form_url(formToken: $formToken) {
971
983
  enabled
972
984
  url
973
985
  }
974
986
  }
975
- `,ml=Fd`
987
+ `,ul=Fd`
976
988
  mutation deactivateForm($formToken: String!) {
977
989
  deactivate_form(formToken: $formToken)
978
990
  }
979
- `,ul=Fd`
991
+ `,hl=Fd`
980
992
  mutation activateForm($formToken: String!) {
981
993
  activate_form(formToken: $formToken)
982
994
  }
983
- `,hl=Fd`
995
+ `,fl=Fd`
984
996
  mutation deleteFormTag($formToken: String!, $tagId: String!) {
985
997
  delete_form_tag(formToken: $formToken, tagId: $tagId)
986
998
  }
987
- `,fl=Fd`
999
+ `,_l=Fd`
988
1000
  mutation createFormTag($formToken: String!, $tag: CreateFormTagInput!) {
989
1001
  create_form_tag(formToken: $formToken, tag: $tag) {
990
1002
  ...FormTag
991
1003
  }
992
1004
  }
993
- ${nl}
994
- `,_l=Fd`
1005
+ ${ol}
1006
+ `,gl=Fd`
995
1007
  mutation updateFormAppearance($formToken: String!, $appearance: FormAppearanceInput!) {
996
1008
  update_form_settings(formToken: $formToken, settings: { appearance: $appearance }) {
997
1009
  appearance {
@@ -999,8 +1011,8 @@
999
1011
  }
1000
1012
  }
1001
1013
  }
1002
- ${al}
1003
- `,gl=Fd`
1014
+ ${il}
1015
+ `,bl=Fd`
1004
1016
  mutation updateFormAccessibility($formToken: String!, $accessibility: FormAccessibilityInput!) {
1005
1017
  update_form_settings(formToken: $formToken, settings: { accessibility: $accessibility }) {
1006
1018
  accessibility {
@@ -1008,8 +1020,8 @@
1008
1020
  }
1009
1021
  }
1010
1022
  }
1011
- ${il}
1012
- `,bl=Fd`
1023
+ ${nl}
1024
+ `,vl=Fd`
1013
1025
  mutation updateFormFeatures($formToken: String!, $features: FormFeaturesInput!, $is_anonymous: Boolean) {
1014
1026
  update_form_settings(formToken: $formToken, settings: { features: $features, is_anonymous: $is_anonymous }) {
1015
1027
  features {
@@ -1017,8 +1029,8 @@
1017
1029
  }
1018
1030
  }
1019
1031
  }
1020
- ${tl}
1021
- `,vl=Fd`
1032
+ ${al}
1033
+ `,yl=Fd`
1022
1034
  mutation updateFormQuestionOrder($formToken: String!, $questions: [QuestionOrderInput!]!) {
1023
1035
  update_form(formToken: $formToken, input: { questions: $questions }) {
1024
1036
  questions {
@@ -1027,14 +1039,14 @@
1027
1039
  }
1028
1040
  }
1029
1041
  }
1030
- `,yl=Fd`
1042
+ `,Il=Fd`
1031
1043
  mutation updateFormHeader($formToken: String!, $title: String, $description: String) {
1032
1044
  update_form(formToken: $formToken, input: { title: $title, description: $description }) {
1033
1045
  title
1034
1046
  description
1035
1047
  }
1036
1048
  }
1037
- `,Il={questionId:"Question ID. Required for update/delete."},wl={operations:{createForm:"Create a new form with specified configuration. Returns the created form with its unique token.",updateForm:{action:"Action to execute on the form. Each action requires different fields — check field descriptions to know what to include."},activateForm:"Activate a form to make it visible to users and accept new submissions.",deactivateForm:"Deactivate a form to hide it from users and stop accepting submissions. Form data is preserved."},properties:{id:"The unique identifier for the form. Auto-generated upon creation.",token:"The unique token used to access and identify the form. Used in public URLs and API calls.",boardId:"The board ID connected to the form. Used to store form responses as items.",title:"The display title shown to users at the top of the form.",description:"Optional detailed description explaining the form purpose, displayed below the title.",active:"Boolean indicating if the form is currently accepting responses and visible to users.",ownerId:"The ID of the user who created and owns this form. Determines permissions.",createWithAI:"Boolean indicating if this form was initially created using AI assistance.",builtWithAI:"Boolean indicating if this form was built or modified using AI functionality.",questions:"Array of question objects that make up the form content, in display order.",isSuspicious:"Boolean flag indicating if the form has been flagged for review due to suspicious content or activity.",isAnonymous:"Hides submitter identity.",type:"The category or classification of the form for organizational purposes.",features:"Object containing feature toggles and settings like password protection, response limits, etc.",appearance:"Object containing visual styling settings including colors, fonts, layout, and branding.",accessibility:"Object containing accessibility settings such as language, alt text, and reading direction.",tags:{description:"Array of tracking tags for categorization and analytics (e.g., UTM parameters for marketing tracking).",id:"Required for delete. Auto-generated.",name:"Required for create. Cannot be updated.",columnId:"Auto-generated. Cannot be updated."}},inputs:{title:"Required for updateFormHeader.",description:"Required for updateFormHeader.",input:"Complete form configuration object containing properties to create or update.",questions:"All question IDs in order. Must include every existing ID. Required for updateQuestionOrder.",questionId:"Question ID. Required for update/delete.",tag:"Tag to create/delete. Delete: id only. Create: name (id/columnId auto-generated).",form:{describe:"Form data to update (patch semantics).",appearance:"Patch. Required for updateAppearance.",accessibility:"Patch. Required for updateAccessibility.",features:"Patch. Required for updateFeatures.",questionOrder:"Patch. Required for updateQuestionOrder.",formHeader:"Patch. Required for updateFormHeader."}},args:{destinationName:"Board name (stores form responses).",boardSubscriberIds:"User IDs to notify on board activity.",boardSubscriberTeamsIds:"Team IDs to notify on board activity."}},Tl={operations:{updateFormSettings:"Update form configuration including features, appearance, and accessibility options.",setFormPassword:"Required for setFormPassword action.",shortenUrl:"Shorten a URL for a form and store it in the form settings. Returns the shortened link object."},properties:{passwordEnabled:"Can only be set to false. Use setFormPassword to enable.",closeDateValue:"ISO timestamp.",includeNameQuestion:"Adds name column as a form question.",includeUpdateQuestion:"Adds updates/comments field linked to the board item.",syncQuestionAndColumnsTitles:"Syncs question titles with board column names.",allowCreateItem:"Shows 'Create Item' button on the board to open this form.",backgroundValue:"Hex color or image URL (depends on type).",logoSize:"Logo size for the form header.",language:"Form locale, e.g. 'en', 'es', 'fr'."},inputs:{settings:"Complete form settings object containing all configuration options.",features:"Form features configuration including security, limits, and access controls.",appearance:"Visual styling configuration including colors, layout, and branding.",accessibility:"Accessibility configuration including language and reading direction.",password:"Password configuration for the form. Only setting enabled to false is supported. To enable a form to be password protected, please use the set_form_password mutation instead.",passwordValue:"The password to set for the form. Must be at least 1 character long."}},El={actions:{type:"Action to perform on the question of a form. create requires question. update requires questionId and question with type always included. delete requires questionId.",question:"The question to create or update. Always include type, then only the fields you want to set or change."},properties:{title:"Question text. Required when creating.",type:"Question type. Always required. Cannot be changed after creation — always send the existing type when updating.",position:"Integer specifying the display order of the question within the form (zero-based).",description:"Help text shown under the question.",placeholder:"Optional placeholder text shown in input fields to guide user input.",createdAt:"ISO timestamp when the question was created.",updatedAt:"ISO timestamp when the question was last modified.",selectOptions:"Options for select questions. Always include all options — omitting an existing option will delete it. To update safely, call get_form first to retrieve existing option values, then include all options you want to keep with their original value fields.",selectOptionsValue:"Unique identifier for the option. If this option was used in existing submissions, it must keep its original value to preserve data integrity.",blockType:"The kind of block to create. Includes all question types and content block types.",insertAfterQuestionId:"ID to insert after. Omit to append. Null for first position.",pageBlockId:"Page block ID to group this question within. Set to null to remove from page block. Omit to leave unchanged."},showIfRules:"Conditional visibility. All operators must be OR.",showIfConditionBuildingBlockId:"Question ID to evaluate.",showIfConditionValues:"Answer values that satisfy the condition.",inputs:{question:"Complete question object containing all properties for creation or update.",questionData:"Question configuration including type, title, and type-specific settings.",position:"Integer position where the question should be placed in the form sequence."}},Al={properties:{validation:"Validation rules applied to the question response",prefill:"Auto-populates from account data or URL query params.",prefillLookup:"Field name (e.g. 'email') or URL param name.",prefixAutofilled:"Phone only. Auto-detects country prefix.",prefixPredefined:"Phone only. Sets a default country prefix.",prefixPredefinedPrefix:"Country code, e.g. 'US', 'IL'.",checkedByDefault:"Boolean question type only.",defaultCurrentDate:"Date question type only.",includeTime:"Date only. Adds time picker.",display:"SingleSelect/MultiSelect only.",optionsOrder:"SingleSelect/MultiSelect only.",locationAutofilled:"Location only. Auto-fills current location.",limit:"Rating questions only: Maximum rating value that users can select.",skipValidation:"Link only. Skips URL format validation.",labelLimitCount:"MultiSelect only. Max selections. Pair with labelLimitCountEnabled.",labelLimitCountEnabled:"MultiSelect only. Enables selection limit.",defaultAnswer:"ShortText/LongText/Name/Link only. Pre-filled default value."},inputs:{settings:"Question-specific configuration object that varies by question type.",validationRules:"Validation constraints and rules",choiceOptions:"List of available choices for selection questions",fileSettings:"File upload constraints and settings"}},Sl={destination_workspace_id:n.z.string(),destination_folder_id:n.z.string().optional(),destination_folder_name:n.z.string().optional(),board_kind:n.z.nativeEnum(Wn).optional(),destination_name:n.z.string().optional().describe(wl.args.destinationName),board_owner_ids:n.z.array(n.z.string()).optional(),board_owner_team_ids:n.z.array(n.z.string()).optional(),board_subscriber_ids:n.z.array(n.z.string()).optional().describe(wl.args.boardSubscriberIds),board_subscriber_teams_ids:n.z.array(n.z.string()).optional().describe(wl.args.boardSubscriberTeamsIds)};var Nl,Dl,Ol,kl,Cl,Rl,$l,xl,Ll,Ul,Pl,Fl,Vl,Ml,Bl,zl;!function(e){e.Internal="internal",e.InlineInternal="inline_internal",e.Preview="preview",e.Standard="standard",e.EnforcedItemCreationForm="enforced_item_creation_form"}(Nl||(Nl={})),function(e){e.Small="Small",e.Medium="Medium",e.Large="Large",e.ExtraLarge="ExtraLarge"}(Dl||(Dl={})),function(e){e.Auto="Auto",e.Left="Left",e.Center="Center",e.Right="Right"}(Ol||(Ol={})),function(e){e.Image="Image",e.Color="Color",e.None="None"}(kl||(kl={})),function(e){e.LtR="LtR",e.Rtl="Rtl"}(Cl||(Cl={})),function(e){e.OneByOne="OneByOne",e.Classic="Classic"}(Rl||(Rl={})),function(e){e.FullLeft="FullLeft",e.Left="Left",e.Center="Center",e.Right="Right",e.FullRight="FullRight"}($l||($l={})),function(e){e.Small="Small",e.Medium="Medium",e.Large="Large"}(xl||(xl={})),function(e){e.Boolean="Boolean",e.ConnectedBoards="ConnectedBoards",e.Country="Country",e.Date="Date",e.DateRange="DateRange",e.Email="Email",e.File="File",e.Link="Link",e.Location="Location",e.LongText="LongText",e.MultiSelect="MultiSelect",e.Name="Name",e.Number="Number",e.People="People",e.Phone="Phone",e.Rating="Rating",e.ShortText="ShortText",e.Signature="Signature",e.SingleSelect="SingleSelect",e.Subitems="Subitems",e.Updates="Updates"}(Ll||(Ll={})),function(e){e.Account="account",e.QueryParam="queryParam"}(Ul||(Ul={})),function(e){e.Email="email",e.Name="name",e.Title="title",e.Phone="phone",e.FirstName="first_name",e.LastName="last_name",e.Location="location",e.Timezone="time_zone",e.ManagerName="manager_display_name"}(Pl||(Pl={})),(Fl||(Fl={})).Or="OR",function(e){e.Horizontal="horizontal",e.Vertical="vertical",e.Dropdown="dropdown"}(Vl||(Vl={})),function(e){e.Alphabetical="alphabetical",e.Random="random",e.Custom="custom"}(Ml||(Ml={})),function(e){e.MultiSelect="multi-select",e.SingleSelect="single-select",e.People="people",e.Location="location",e.CountryCode="country-code",e.Country="country",e.ConnectedBoards="connected_boards"}(Bl||(Bl={})),function(e){e.Delete="delete",e.Update="update",e.Create="create"}(zl||(zl={}));const jl=n.z.object({type:n.z.nativeEnum(er).describe(El.properties.type),title:n.z.string().describe(El.properties.title).optional(),description:n.z.string().describe(El.properties.description).optional(),visible:n.z.boolean().optional(),required:n.z.boolean().optional(),insert_after_question_id:n.z.string().nullish().describe(El.properties.insertAfterQuestionId),page_block_id:n.z.string().nullish().describe(El.properties.pageBlockId),show_if_rules:n.z.object({operator:n.z.nativeEnum(Io),rules:n.z.array(n.z.object({operator:n.z.nativeEnum(Io),conditions:n.z.array(n.z.object({building_block_id:n.z.string().describe(El.showIfConditionBuildingBlockId),operator:n.z.nativeEnum(Io),values:n.z.array(n.z.string()).describe(El.showIfConditionValues)}))}))}).describe(El.showIfRules).optional(),options:n.z.array(n.z.object({label:n.z.string(),value:n.z.string().optional().describe(El.properties.selectOptionsValue),visible:n.z.boolean().optional()})).describe(El.properties.selectOptions).optional(),settings:n.z.object({checkedByDefault:n.z.boolean().describe(Al.properties.checkedByDefault).optional(),defaultCurrentDate:n.z.boolean().describe(Al.properties.defaultCurrentDate).optional(),display:n.z.nativeEnum(Xo).describe(Al.properties.display).optional(),includeTime:n.z.boolean().describe(Al.properties.includeTime).optional(),locationAutofilled:n.z.boolean().describe(Al.properties.locationAutofilled).optional(),optionsOrder:n.z.nativeEnum(Zo).describe(Al.properties.optionsOrder).optional(),prefixAutofilled:n.z.boolean().describe(Al.properties.prefixAutofilled).optional(),prefixPredefined:n.z.object({enabled:n.z.boolean(),prefix:n.z.string().describe(Al.properties.prefixPredefinedPrefix).optional()}).describe(Al.properties.prefixPredefined).optional(),skipValidation:n.z.boolean().describe(Al.properties.skipValidation).optional(),labelLimitCount:n.z.number().int().describe(Al.properties.labelLimitCount).optional(),label_limit_count_enabled:n.z.boolean().describe(Al.properties.labelLimitCountEnabled).optional(),default_answer:n.z.string().describe(Al.properties.defaultAnswer).optional(),prefill:n.z.object({enabled:n.z.boolean(),lookup:n.z.string().describe(Al.properties.prefillLookup).optional(),source:n.z.nativeEnum(Jo).optional()}).describe(Al.properties.prefill).optional()}).describe("Type-specific question settings. Check each field description to see which question type it applies to.").optional()}),ql={action:n.z.nativeEnum(zl).describe(El.actions.type),formToken:n.z.string(),questionId:n.z.string().describe(Il.questionId).optional(),question:jl.describe(El.actions.question).optional()};class Gl{constructor(e){this.mondayApi=e}async deleteQuestion(e){const t=e.questionId;if(!t)return{content:"Question ID is required when deleting a question."};const a={formToken:e.formToken,questionId:t};return await this.mondayApi.request(sl,a),{content:{message:"Question deleted",question_id:t,action_name:"delete"}}}async updateQuestion(e){const t=e.questionId;if(!t)return{content:"Question ID is required when updating a question."};const a=e.question;if(!a)return{content:"Must provide updated patch props for the question when updating."};const i={formToken:e.formToken,questionId:t,question:a};return await this.mondayApi.request(pl,i),{content:{message:"Question updated",question_id:t,action_name:"update"}}}async createQuestion(e){const t=e.question;if(!t)return{content:"Must provide a full question payload when creating a question."};if(!t.title)return{content:"Must provide a title for the question when creating a question."};const a={formToken:e.formToken,question:{...t,title:t.title}},i=await this.mondayApi.request(dl,a);return{content:{message:"Question created",question_id:i.create_form_question?.id,action_name:"create"}}}}var Hl;!function(e){e.activate="activate",e.deactivate="deactivate",e.shortenFormUrl="shortenFormUrl",e.setFormPassword="setFormPassword",e.createTag="createTag",e.deleteTag="deleteTag",e.updateAppearance="updateAppearance",e.updateAccessibility="updateAccessibility",e.updateFeatures="updateFeatures",e.updateQuestionOrder="updateQuestionOrder",e.updateFormHeader="updateFormHeader"}(Hl||(Hl={}));const Wl=n.z.object({id:n.z.string().describe(wl.properties.tags.id).optional(),name:n.z.string().describe(wl.properties.tags.name).optional(),columnId:n.z.string().describe(wl.properties.tags.columnId).optional()}),Yl=n.z.object({type:n.z.nativeEnum(kl).optional(),value:n.z.string().describe(Tl.properties.backgroundValue).optional()}),Kl=n.z.object({format:n.z.nativeEnum(Rl).optional(),alignment:n.z.nativeEnum($l).optional(),direction:n.z.nativeEnum(Cl).optional()}),Ql=n.z.object({position:n.z.nativeEnum(Ol).optional(),size:n.z.nativeEnum(Dl).describe(Tl.properties.logoSize).optional()}),Jl=n.z.object({text:n.z.string().optional()}),Xl=n.z.object({font:n.z.string().optional(),color:n.z.string().optional(),size:n.z.nativeEnum(xl).optional()}),Zl=n.z.object({enabled:n.z.boolean().optional(),redirectUrl:n.z.string().optional()}),ec=n.z.object({allowEditSubmission:n.z.boolean().optional(),allowResubmit:n.z.boolean().optional(),allowViewSubmission:n.z.boolean().optional(),description:n.z.string().optional(),redirectAfterSubmission:Zl.optional(),showSuccessImage:n.z.boolean().optional(),title:n.z.string().optional()}),tc=n.z.object({enabled:n.z.boolean().optional(),date:n.z.string().describe(Tl.properties.closeDateValue).optional()}),ac=n.z.object({enabled:n.z.boolean().optional()}),ic=n.z.object({itemGroupId:n.z.string().optional(),includeNameQuestion:n.z.boolean().describe(Tl.properties.includeNameQuestion).optional(),includeUpdateQuestion:n.z.boolean().describe(Tl.properties.includeUpdateQuestion).optional(),syncQuestionAndColumnsTitles:n.z.boolean().describe(Tl.properties.syncQuestionAndColumnsTitles).optional(),allow_create_item:n.z.boolean().describe(Tl.properties.allowCreateItem).optional()}),nc=n.z.object({enabled:n.z.boolean().describe(Tl.properties.passwordEnabled).optional()}),oc=n.z.object({text:n.z.string().optional()}),rc=n.z.object({enabled:n.z.boolean().optional(),title:n.z.string().optional(),description:n.z.string().optional(),startButton:oc.optional()}),sc=n.z.object({enabled:n.z.boolean().optional(),redirectToLogin:n.z.boolean().optional()}),dc=n.z.object({enabled:n.z.boolean().optional(),limit:n.z.number().optional()}),pc=n.z.object({background:Yl.optional(),hideBranding:n.z.boolean().optional(),layout:Kl.optional(),logo:Ql.optional(),primaryColor:n.z.string().optional(),showProgressBar:n.z.boolean().optional(),submitButton:Jl.optional(),text:Xl.optional()}),lc=n.z.object({language:n.z.string().describe(Tl.properties.language).optional(),logoAltText:n.z.string().optional()}),cc=n.z.object({enabled:n.z.boolean().optional()}),mc=n.z.object({afterSubmissionView:ec.optional(),ai_translate:cc.optional(),closeDate:tc.optional(),draftSubmission:ac.optional(),monday:ic.optional(),password:nc.optional(),preSubmissionView:rc.optional(),reCaptchaChallenge:n.z.boolean().optional(),requireLogin:sc.optional(),responseLimit:dc.optional(),is_anonymous:n.z.boolean().describe(wl.properties.isAnonymous).optional()}),uc=n.z.object({id:n.z.string().describe(wl.inputs.questionId),page_block_id:n.z.string().describe(El.properties.pageBlockId).optional()}),hc=n.z.object({appearance:pc.describe(wl.inputs.form.appearance).optional(),accessibility:lc.describe(wl.inputs.form.accessibility).optional(),features:mc.describe(wl.inputs.form.features).optional(),title:n.z.string().describe(wl.inputs.title).optional(),description:n.z.string().describe(wl.inputs.description).optional(),questions:n.z.array(uc).describe(wl.inputs.questions).optional()}),fc={formToken:n.z.string(),action:n.z.nativeEnum(Hl).describe(wl.operations.updateForm.action),formPassword:n.z.string().describe(Tl.operations.setFormPassword).optional(),tag:Wl.describe(wl.inputs.tag).optional(),form:hc.describe(wl.inputs.form.describe).optional()};class _c{constructor(e){this.mondayApi=e}async setFormPassword(e){if(!e.formPassword)return{content:'formPassword is required for the action "setFormPassword" in the update form tool.'};const t={formToken:e.formToken,input:{password:e.formPassword}};return await this.mondayApi.request(ll,t),{content:{message:"Form password successfully set",form_token:e.formToken,action_name:"setFormPassword"}}}async shortenFormUrl(e){const t={formToken:e.formToken};return await this.mondayApi.request(cl,t),{content:{message:"Form URL successfully shortened",form_token:e.formToken,action_name:"shortenFormUrl"}}}async deactivateForm(e){const t={formToken:e.formToken};return await this.mondayApi.request(ml,t),{content:{message:"Form successfully deactivated",form_token:e.formToken,action_name:"deactivateForm"}}}async activateForm(e){const t={formToken:e.formToken};return await this.mondayApi.request(ul,t),{content:{message:"Form successfully activated",form_token:e.formToken,action_name:"activateForm"}}}async createTag(e){if(!e.tag)return{content:'Tag is required for the action "createTag" in the update form tool.'};if(!e.tag.name)return{content:'Tag name is required for the action "createTag" in the update form tool.'};const t={formToken:e.formToken,tag:{name:e.tag.name}},a=await this.mondayApi.request(fl,t);return{content:{message:"Tag successfully added",form_token:e.formToken,action_name:"createTag",data:a.create_form_tag}}}async deleteTag(e){if(!e.tag)return{content:'Tag is required for the action "deleteTag" in the update form tool.'};if(!e.tag.id)return{content:'Tag id is required for the action "deleteTag" in the update form tool.'};const t={formToken:e.formToken,tagId:e.tag.id};return await this.mondayApi.request(hl,t),{content:{message:"Tag deleted",form_token:e.formToken,tag_id:e.tag.id,action_name:"deleteTag"}}}async updateAppearance(e){if(!e.form?.appearance)return{content:'Appearance is required for the action "updateAppearance" in the update form tool.'};const t={formToken:e.formToken,appearance:e.form.appearance},a=await this.mondayApi.request(_l,t);return{content:{message:"Appearance successfully updated",form_token:e.formToken,action_name:"updateAppearance",data:a.update_form_settings?.appearance}}}async updateAccessibility(e){if(!e.form?.accessibility)return{content:'Accessibility is required for the action "updateAccessibility" in the update form tool.'};const t={formToken:e.formToken,accessibility:e.form.accessibility},a=await this.mondayApi.request(gl,t);return{content:{message:"Accessibility successfully updated",form_token:e.formToken,action_name:"updateAccessibility",data:a.update_form_settings?.accessibility}}}async updateFeatures(e){if(!e.form?.features)return{content:'Features is required for the action "updateFeatures" in the update form tool.'};const{is_anonymous:t,...a}=e.form.features,i={formToken:e.formToken,features:a,is_anonymous:t},n=await this.mondayApi.request(bl,i);return{content:{message:"Features successfully updated",form_token:e.formToken,action_name:"updateFeatures",data:n.update_form_settings?.features}}}async updateQuestionOrder(e){if(!e.form?.questions)return{content:'List of dehydrated questions is required for the action "updateQuestionOrder" in the update form tool.'};const t={formToken:e.formToken,questions:e.form.questions},a=await this.mondayApi.request(vl,t);return{content:{message:"Question order successfully updated",form_token:e.formToken,action_name:"updateQuestionOrder",data:a.update_form?.questions}}}async updateFormHeader(e){if(!e.form?.title&&!e.form?.description)return{content:'Title or description is required for the action "updateFormHeader" in the update form tool.'};const t={formToken:e.formToken,title:e.form.title,description:e.form.description},a=await this.mondayApi.request(yl,t);return{content:{message:"Form header updated",form_token:e.formToken,action_name:"updateFormHeader",data:a.update_form}}}}const gc={formToken:n.z.string()};var bc;exports.ToolMode=void 0,(bc=exports.ToolMode||(exports.ToolMode={})).API="api",bc.APPS="apps",bc.ATP="atp";const vc=1e3;var yc,Ic;!function(e){e[e.YEAR=31536e3]="YEAR",e[e.MONTH31Days=2678400]="MONTH31Days",e[e.MONTH30Days=2592e3]="MONTH30Days",e[e.MONTH29Days=2505600]="MONTH29Days",e[e.MONTH28Days=2419200]="MONTH28Days",e[e.WEEK=604800]="WEEK",e[e.DAY=86400]="DAY",e[e.HOUR=3600]="HOUR",e[e.MINUTE=60]="MINUTE"}(yc||(yc={})),function(e){e[e.YEAR=31536e6]="YEAR",e[e.MONTH31Days=26784e5]="MONTH31Days",e[e.MONTH30Days=2592e6]="MONTH30Days",e[e.MONTH29Days=25056e5]="MONTH29Days",e[e.MONTH28Days=24192e5]="MONTH28Days",e[e.DAY=864e5]="DAY",e[e.HOUR=36e5]="HOUR",e[e.MINUTE=6e4]="MINUTE",e[e.SECOND=vc]="SECOND"}(Ic||(Ic={}));const wc=10*Ic.SECOND,Tc=Fd`
1049
+ `,wl={questionId:"Question ID. Required for update/delete."},Tl={operations:{createForm:"Create a new form with specified configuration. Returns the created form with its unique token.",updateForm:{action:"Action to execute on the form. Each action requires different fields — check field descriptions to know what to include."},activateForm:"Activate a form to make it visible to users and accept new submissions.",deactivateForm:"Deactivate a form to hide it from users and stop accepting submissions. Form data is preserved."},properties:{id:"The unique identifier for the form. Auto-generated upon creation.",token:"The unique token used to access and identify the form. Used in public URLs and API calls.",boardId:"The board ID connected to the form. Used to store form responses as items.",title:"The display title shown to users at the top of the form.",description:"Optional detailed description explaining the form purpose, displayed below the title.",active:"Boolean indicating if the form is currently accepting responses and visible to users.",ownerId:"The ID of the user who created and owns this form. Determines permissions.",createWithAI:"Boolean indicating if this form was initially created using AI assistance.",builtWithAI:"Boolean indicating if this form was built or modified using AI functionality.",questions:"Array of question objects that make up the form content, in display order.",isSuspicious:"Boolean flag indicating if the form has been flagged for review due to suspicious content or activity.",isAnonymous:"Hides submitter identity.",type:"The category or classification of the form for organizational purposes.",features:"Object containing feature toggles and settings like password protection, response limits, etc.",appearance:"Object containing visual styling settings including colors, fonts, layout, and branding.",accessibility:"Object containing accessibility settings such as language, alt text, and reading direction.",tags:{description:"Array of tracking tags for categorization and analytics (e.g., UTM parameters for marketing tracking).",id:"Required for delete. Auto-generated.",name:"Required for create. Cannot be updated.",columnId:"Auto-generated. Cannot be updated."}},inputs:{title:"Required for updateFormHeader.",description:"Required for updateFormHeader.",input:"Complete form configuration object containing properties to create or update.",questions:"All question IDs in order. Must include every existing ID. Required for updateQuestionOrder.",questionId:"Question ID. Required for update/delete.",tag:"Tag to create/delete. Delete: id only. Create: name (id/columnId auto-generated).",form:{describe:"Form data to update (patch semantics).",appearance:"Patch. Required for updateAppearance.",accessibility:"Patch. Required for updateAccessibility.",features:"Patch. Required for updateFeatures.",questionOrder:"Patch. Required for updateQuestionOrder.",formHeader:"Patch. Required for updateFormHeader."}},args:{destinationName:"Board name (stores form responses).",boardSubscriberIds:"User IDs to notify on board activity.",boardSubscriberTeamsIds:"Team IDs to notify on board activity."}},El={operations:{updateFormSettings:"Update form configuration including features, appearance, and accessibility options.",setFormPassword:"Required for setFormPassword action.",shortenUrl:"Shorten a URL for a form and store it in the form settings. Returns the shortened link object."},properties:{passwordEnabled:"Can only be set to false. Use setFormPassword to enable.",closeDateValue:"ISO timestamp.",includeNameQuestion:"Adds name column as a form question.",includeUpdateQuestion:"Adds updates/comments field linked to the board item.",syncQuestionAndColumnsTitles:"Syncs question titles with board column names.",allowCreateItem:"Shows 'Create Item' button on the board to open this form.",backgroundValue:"Hex color or image URL (depends on type).",logoSize:"Logo size for the form header.",language:"Form locale, e.g. 'en', 'es', 'fr'."},inputs:{settings:"Complete form settings object containing all configuration options.",features:"Form features configuration including security, limits, and access controls.",appearance:"Visual styling configuration including colors, layout, and branding.",accessibility:"Accessibility configuration including language and reading direction.",password:"Password configuration for the form. Only setting enabled to false is supported. To enable a form to be password protected, please use the set_form_password mutation instead.",passwordValue:"The password to set for the form. Must be at least 1 character long."}},Al={actions:{type:"Action to perform on the question of a form. create requires question. update requires questionId and question with type always included. delete requires questionId.",question:"The question to create or update. Always include type, then only the fields you want to set or change."},properties:{title:"Question text. Required when creating.",type:"Question type. Always required. Cannot be changed after creation — always send the existing type when updating.",position:"Integer specifying the display order of the question within the form (zero-based).",description:"Help text shown under the question.",placeholder:"Optional placeholder text shown in input fields to guide user input.",createdAt:"ISO timestamp when the question was created.",updatedAt:"ISO timestamp when the question was last modified.",selectOptions:"Options for select questions. Always include all options — omitting an existing option will delete it. To update safely, call get_form first to retrieve existing option values, then include all options you want to keep with their original value fields.",selectOptionsValue:"Unique identifier for the option. If this option was used in existing submissions, it must keep its original value to preserve data integrity.",blockType:"The kind of block to create. Includes all question types and content block types.",insertAfterQuestionId:"ID to insert after. Omit to append. Null for first position.",pageBlockId:"Page block ID to group this question within. Set to null to remove from page block. Omit to leave unchanged."},showIfRules:"Conditional visibility. All operators must be OR.",showIfConditionBuildingBlockId:"Question ID to evaluate.",showIfConditionValues:"Answer values that satisfy the condition.",inputs:{question:"Complete question object containing all properties for creation or update.",questionData:"Question configuration including type, title, and type-specific settings.",position:"Integer position where the question should be placed in the form sequence."}},Sl={properties:{validation:"Validation rules applied to the question response",prefill:"Auto-populates from account data or URL query params.",prefillLookup:"Field name (e.g. 'email') or URL param name.",prefixAutofilled:"Phone only. Auto-detects country prefix.",prefixPredefined:"Phone only. Sets a default country prefix.",prefixPredefinedPrefix:"Country code, e.g. 'US', 'IL'.",checkedByDefault:"Boolean question type only.",defaultCurrentDate:"Date question type only.",includeTime:"Date only. Adds time picker.",display:"SingleSelect/MultiSelect only.",optionsOrder:"SingleSelect/MultiSelect only.",locationAutofilled:"Location only. Auto-fills current location.",limit:"Rating questions only: Maximum rating value that users can select.",skipValidation:"Link only. Skips URL format validation.",labelLimitCount:"MultiSelect only. Max selections. Pair with labelLimitCountEnabled.",labelLimitCountEnabled:"MultiSelect only. Enables selection limit.",defaultAnswer:"ShortText/LongText/Name/Link only. Pre-filled default value."},inputs:{settings:"Question-specific configuration object that varies by question type.",validationRules:"Validation constraints and rules",choiceOptions:"List of available choices for selection questions",fileSettings:"File upload constraints and settings"}},Nl={destination_workspace_id:n.z.string(),destination_folder_id:n.z.string().optional(),destination_folder_name:n.z.string().optional(),board_kind:n.z.nativeEnum(Wn).optional(),destination_name:n.z.string().optional().describe(Tl.args.destinationName),board_owner_ids:n.z.array(n.z.string()).optional(),board_owner_team_ids:n.z.array(n.z.string()).optional(),board_subscriber_ids:n.z.array(n.z.string()).optional().describe(Tl.args.boardSubscriberIds),board_subscriber_teams_ids:n.z.array(n.z.string()).optional().describe(Tl.args.boardSubscriberTeamsIds)};var Dl,Ol,kl,Cl,Rl,$l,xl,Ll,Ul,Pl,Fl,Vl,Ml,Bl,zl,jl;!function(e){e.Internal="internal",e.InlineInternal="inline_internal",e.Preview="preview",e.Standard="standard",e.EnforcedItemCreationForm="enforced_item_creation_form"}(Dl||(Dl={})),function(e){e.Small="Small",e.Medium="Medium",e.Large="Large",e.ExtraLarge="ExtraLarge"}(Ol||(Ol={})),function(e){e.Auto="Auto",e.Left="Left",e.Center="Center",e.Right="Right"}(kl||(kl={})),function(e){e.Image="Image",e.Color="Color",e.None="None"}(Cl||(Cl={})),function(e){e.LtR="LtR",e.Rtl="Rtl"}(Rl||(Rl={})),function(e){e.OneByOne="OneByOne",e.Classic="Classic"}($l||($l={})),function(e){e.FullLeft="FullLeft",e.Left="Left",e.Center="Center",e.Right="Right",e.FullRight="FullRight"}(xl||(xl={})),function(e){e.Small="Small",e.Medium="Medium",e.Large="Large"}(Ll||(Ll={})),function(e){e.Boolean="Boolean",e.ConnectedBoards="ConnectedBoards",e.Country="Country",e.Date="Date",e.DateRange="DateRange",e.Email="Email",e.File="File",e.Link="Link",e.Location="Location",e.LongText="LongText",e.MultiSelect="MultiSelect",e.Name="Name",e.Number="Number",e.People="People",e.Phone="Phone",e.Rating="Rating",e.ShortText="ShortText",e.Signature="Signature",e.SingleSelect="SingleSelect",e.Subitems="Subitems",e.Updates="Updates"}(Ul||(Ul={})),function(e){e.Account="account",e.QueryParam="queryParam"}(Pl||(Pl={})),function(e){e.Email="email",e.Name="name",e.Title="title",e.Phone="phone",e.FirstName="first_name",e.LastName="last_name",e.Location="location",e.Timezone="time_zone",e.ManagerName="manager_display_name"}(Fl||(Fl={})),(Vl||(Vl={})).Or="OR",function(e){e.Horizontal="horizontal",e.Vertical="vertical",e.Dropdown="dropdown"}(Ml||(Ml={})),function(e){e.Alphabetical="alphabetical",e.Random="random",e.Custom="custom"}(Bl||(Bl={})),function(e){e.MultiSelect="multi-select",e.SingleSelect="single-select",e.People="people",e.Location="location",e.CountryCode="country-code",e.Country="country",e.ConnectedBoards="connected_boards"}(zl||(zl={})),function(e){e.Delete="delete",e.Update="update",e.Create="create"}(jl||(jl={}));const ql=n.z.object({type:n.z.nativeEnum(er).describe(Al.properties.type),title:n.z.string().describe(Al.properties.title).optional(),description:n.z.string().describe(Al.properties.description).optional(),visible:n.z.boolean().optional(),required:n.z.boolean().optional(),insert_after_question_id:n.z.string().nullish().describe(Al.properties.insertAfterQuestionId),page_block_id:n.z.string().nullish().describe(Al.properties.pageBlockId),show_if_rules:n.z.object({operator:n.z.nativeEnum(Io),rules:n.z.array(n.z.object({operator:n.z.nativeEnum(Io),conditions:n.z.array(n.z.object({building_block_id:n.z.string().describe(Al.showIfConditionBuildingBlockId),operator:n.z.nativeEnum(Io),values:n.z.array(n.z.string()).describe(Al.showIfConditionValues)}))}))}).describe(Al.showIfRules).optional(),options:n.z.array(n.z.object({label:n.z.string(),value:n.z.string().optional().describe(Al.properties.selectOptionsValue),visible:n.z.boolean().optional()})).describe(Al.properties.selectOptions).optional(),settings:n.z.object({checkedByDefault:n.z.boolean().describe(Sl.properties.checkedByDefault).optional(),defaultCurrentDate:n.z.boolean().describe(Sl.properties.defaultCurrentDate).optional(),display:n.z.nativeEnum(Xo).describe(Sl.properties.display).optional(),includeTime:n.z.boolean().describe(Sl.properties.includeTime).optional(),locationAutofilled:n.z.boolean().describe(Sl.properties.locationAutofilled).optional(),optionsOrder:n.z.nativeEnum(Zo).describe(Sl.properties.optionsOrder).optional(),prefixAutofilled:n.z.boolean().describe(Sl.properties.prefixAutofilled).optional(),prefixPredefined:n.z.object({enabled:n.z.boolean(),prefix:n.z.string().describe(Sl.properties.prefixPredefinedPrefix).optional()}).describe(Sl.properties.prefixPredefined).optional(),skipValidation:n.z.boolean().describe(Sl.properties.skipValidation).optional(),labelLimitCount:n.z.number().int().describe(Sl.properties.labelLimitCount).optional(),label_limit_count_enabled:n.z.boolean().describe(Sl.properties.labelLimitCountEnabled).optional(),default_answer:n.z.string().describe(Sl.properties.defaultAnswer).optional(),prefill:n.z.object({enabled:n.z.boolean(),lookup:n.z.string().describe(Sl.properties.prefillLookup).optional(),source:n.z.nativeEnum(Jo).optional()}).describe(Sl.properties.prefill).optional()}).describe("Type-specific question settings. Check each field description to see which question type it applies to.").optional()}),Gl={action:n.z.nativeEnum(jl).describe(Al.actions.type),formToken:n.z.string(),questionId:n.z.string().describe(wl.questionId).optional(),question:ql.describe(Al.actions.question).optional()};class Hl{constructor(e){this.mondayApi=e}async deleteQuestion(e){const t=e.questionId;if(!t)return{content:"Question ID is required when deleting a question."};const a={formToken:e.formToken,questionId:t};return await this.mondayApi.request(dl,a),{content:{message:"Question deleted",question_id:t,action_name:"delete"}}}async updateQuestion(e){const t=e.questionId;if(!t)return{content:"Question ID is required when updating a question."};const a=e.question;if(!a)return{content:"Must provide updated patch props for the question when updating."};const i={formToken:e.formToken,questionId:t,question:a};return await this.mondayApi.request(ll,i),{content:{message:"Question updated",question_id:t,action_name:"update"}}}async createQuestion(e){const t=e.question;if(!t)return{content:"Must provide a full question payload when creating a question."};if(!t.title)return{content:"Must provide a title for the question when creating a question."};const a={formToken:e.formToken,question:{...t,title:t.title}},i=await this.mondayApi.request(pl,a);return{content:{message:"Question created",question_id:i.create_form_question?.id,action_name:"create"}}}}var Wl;!function(e){e.activate="activate",e.deactivate="deactivate",e.shortenFormUrl="shortenFormUrl",e.setFormPassword="setFormPassword",e.createTag="createTag",e.deleteTag="deleteTag",e.updateAppearance="updateAppearance",e.updateAccessibility="updateAccessibility",e.updateFeatures="updateFeatures",e.updateQuestionOrder="updateQuestionOrder",e.updateFormHeader="updateFormHeader"}(Wl||(Wl={}));const Yl=n.z.object({id:n.z.string().describe(Tl.properties.tags.id).optional(),name:n.z.string().describe(Tl.properties.tags.name).optional(),columnId:n.z.string().describe(Tl.properties.tags.columnId).optional()}),Kl=n.z.object({type:n.z.nativeEnum(Cl).optional(),value:n.z.string().describe(El.properties.backgroundValue).optional()}),Ql=n.z.object({format:n.z.nativeEnum($l).optional(),alignment:n.z.nativeEnum(xl).optional(),direction:n.z.nativeEnum(Rl).optional()}),Jl=n.z.object({position:n.z.nativeEnum(kl).optional(),size:n.z.nativeEnum(Ol).describe(El.properties.logoSize).optional()}),Xl=n.z.object({text:n.z.string().optional()}),Zl=n.z.object({font:n.z.string().optional(),color:n.z.string().optional(),size:n.z.nativeEnum(Ll).optional()}),ec=n.z.object({enabled:n.z.boolean().optional(),redirectUrl:n.z.string().optional()}),tc=n.z.object({allowEditSubmission:n.z.boolean().optional(),allowResubmit:n.z.boolean().optional(),allowViewSubmission:n.z.boolean().optional(),description:n.z.string().optional(),redirectAfterSubmission:ec.optional(),showSuccessImage:n.z.boolean().optional(),title:n.z.string().optional()}),ac=n.z.object({enabled:n.z.boolean().optional(),date:n.z.string().describe(El.properties.closeDateValue).optional()}),ic=n.z.object({enabled:n.z.boolean().optional()}),nc=n.z.object({itemGroupId:n.z.string().optional(),includeNameQuestion:n.z.boolean().describe(El.properties.includeNameQuestion).optional(),includeUpdateQuestion:n.z.boolean().describe(El.properties.includeUpdateQuestion).optional(),syncQuestionAndColumnsTitles:n.z.boolean().describe(El.properties.syncQuestionAndColumnsTitles).optional(),allow_create_item:n.z.boolean().describe(El.properties.allowCreateItem).optional()}),oc=n.z.object({enabled:n.z.boolean().describe(El.properties.passwordEnabled).optional()}),rc=n.z.object({text:n.z.string().optional()}),sc=n.z.object({enabled:n.z.boolean().optional(),title:n.z.string().optional(),description:n.z.string().optional(),startButton:rc.optional()}),dc=n.z.object({enabled:n.z.boolean().optional(),redirectToLogin:n.z.boolean().optional()}),pc=n.z.object({enabled:n.z.boolean().optional(),limit:n.z.number().optional()}),lc=n.z.object({background:Kl.optional(),hideBranding:n.z.boolean().optional(),layout:Ql.optional(),logo:Jl.optional(),primaryColor:n.z.string().optional(),showProgressBar:n.z.boolean().optional(),submitButton:Xl.optional(),text:Zl.optional()}),cc=n.z.object({language:n.z.string().describe(El.properties.language).optional(),logoAltText:n.z.string().optional()}),mc=n.z.object({enabled:n.z.boolean().optional()}),uc=n.z.object({afterSubmissionView:tc.optional(),ai_translate:mc.optional(),closeDate:ac.optional(),draftSubmission:ic.optional(),monday:nc.optional(),password:oc.optional(),preSubmissionView:sc.optional(),reCaptchaChallenge:n.z.boolean().optional(),requireLogin:dc.optional(),responseLimit:pc.optional(),is_anonymous:n.z.boolean().describe(Tl.properties.isAnonymous).optional()}),hc=n.z.object({id:n.z.string().describe(Tl.inputs.questionId),page_block_id:n.z.string().describe(Al.properties.pageBlockId).optional()}),fc=n.z.object({appearance:lc.describe(Tl.inputs.form.appearance).optional(),accessibility:cc.describe(Tl.inputs.form.accessibility).optional(),features:uc.describe(Tl.inputs.form.features).optional(),title:n.z.string().describe(Tl.inputs.title).optional(),description:n.z.string().describe(Tl.inputs.description).optional(),questions:n.z.array(hc).describe(Tl.inputs.questions).optional()}),_c={formToken:n.z.string(),action:n.z.nativeEnum(Wl).describe(Tl.operations.updateForm.action),formPassword:n.z.string().describe(El.operations.setFormPassword).optional(),tag:Yl.describe(Tl.inputs.tag).optional(),form:fc.describe(Tl.inputs.form.describe).optional()};class gc{constructor(e){this.mondayApi=e}async setFormPassword(e){if(!e.formPassword)return{content:'formPassword is required for the action "setFormPassword" in the update form tool.'};const t={formToken:e.formToken,input:{password:e.formPassword}};return await this.mondayApi.request(cl,t),{content:{message:"Form password successfully set",form_token:e.formToken,action_name:"setFormPassword"}}}async shortenFormUrl(e){const t={formToken:e.formToken};return await this.mondayApi.request(ml,t),{content:{message:"Form URL successfully shortened",form_token:e.formToken,action_name:"shortenFormUrl"}}}async deactivateForm(e){const t={formToken:e.formToken};return await this.mondayApi.request(ul,t),{content:{message:"Form successfully deactivated",form_token:e.formToken,action_name:"deactivateForm"}}}async activateForm(e){const t={formToken:e.formToken};return await this.mondayApi.request(hl,t),{content:{message:"Form successfully activated",form_token:e.formToken,action_name:"activateForm"}}}async createTag(e){if(!e.tag)return{content:'Tag is required for the action "createTag" in the update form tool.'};if(!e.tag.name)return{content:'Tag name is required for the action "createTag" in the update form tool.'};const t={formToken:e.formToken,tag:{name:e.tag.name}},a=await this.mondayApi.request(_l,t);return{content:{message:"Tag successfully added",form_token:e.formToken,action_name:"createTag",data:a.create_form_tag}}}async deleteTag(e){if(!e.tag)return{content:'Tag is required for the action "deleteTag" in the update form tool.'};if(!e.tag.id)return{content:'Tag id is required for the action "deleteTag" in the update form tool.'};const t={formToken:e.formToken,tagId:e.tag.id};return await this.mondayApi.request(fl,t),{content:{message:"Tag deleted",form_token:e.formToken,tag_id:e.tag.id,action_name:"deleteTag"}}}async updateAppearance(e){if(!e.form?.appearance)return{content:'Appearance is required for the action "updateAppearance" in the update form tool.'};const t={formToken:e.formToken,appearance:e.form.appearance},a=await this.mondayApi.request(gl,t);return{content:{message:"Appearance successfully updated",form_token:e.formToken,action_name:"updateAppearance",data:a.update_form_settings?.appearance}}}async updateAccessibility(e){if(!e.form?.accessibility)return{content:'Accessibility is required for the action "updateAccessibility" in the update form tool.'};const t={formToken:e.formToken,accessibility:e.form.accessibility},a=await this.mondayApi.request(bl,t);return{content:{message:"Accessibility successfully updated",form_token:e.formToken,action_name:"updateAccessibility",data:a.update_form_settings?.accessibility}}}async updateFeatures(e){if(!e.form?.features)return{content:'Features is required for the action "updateFeatures" in the update form tool.'};const{is_anonymous:t,...a}=e.form.features,i={formToken:e.formToken,features:a,is_anonymous:t},n=await this.mondayApi.request(vl,i);return{content:{message:"Features successfully updated",form_token:e.formToken,action_name:"updateFeatures",data:n.update_form_settings?.features}}}async updateQuestionOrder(e){if(!e.form?.questions)return{content:'List of dehydrated questions is required for the action "updateQuestionOrder" in the update form tool.'};const t={formToken:e.formToken,questions:e.form.questions},a=await this.mondayApi.request(yl,t);return{content:{message:"Question order successfully updated",form_token:e.formToken,action_name:"updateQuestionOrder",data:a.update_form?.questions}}}async updateFormHeader(e){if(!e.form?.title&&!e.form?.description)return{content:'Title or description is required for the action "updateFormHeader" in the update form tool.'};const t={formToken:e.formToken,title:e.form.title,description:e.form.description},a=await this.mondayApi.request(Il,t);return{content:{message:"Form header updated",form_token:e.formToken,action_name:"updateFormHeader",data:a.update_form}}}}const bc={formToken:n.z.string()};var vc;exports.ToolMode=void 0,(vc=exports.ToolMode||(exports.ToolMode={})).API="api",vc.APPS="apps",vc.ATP="atp";const yc=1e3;var Ic,wc;!function(e){e[e.YEAR=31536e3]="YEAR",e[e.MONTH31Days=2678400]="MONTH31Days",e[e.MONTH30Days=2592e3]="MONTH30Days",e[e.MONTH29Days=2505600]="MONTH29Days",e[e.MONTH28Days=2419200]="MONTH28Days",e[e.WEEK=604800]="WEEK",e[e.DAY=86400]="DAY",e[e.HOUR=3600]="HOUR",e[e.MINUTE=60]="MINUTE"}(Ic||(Ic={})),function(e){e[e.YEAR=31536e6]="YEAR",e[e.MONTH31Days=26784e5]="MONTH31Days",e[e.MONTH30Days=2592e6]="MONTH30Days",e[e.MONTH29Days=25056e5]="MONTH29Days",e[e.MONTH28Days=24192e5]="MONTH28Days",e[e.DAY=864e5]="DAY",e[e.HOUR=36e5]="HOUR",e[e.MINUTE=6e4]="MINUTE",e[e.SECOND=yc]="SECOND"}(wc||(wc={}));const Tc=10*wc.SECOND,Ec=Fd`
1038
1050
  mutation CreateFormSubmission(
1039
1051
  $form_token: String!
1040
1052
  $answers: [FormAnswerInput!]!
@@ -1052,13 +1064,13 @@
1052
1064
  id
1053
1065
  }
1054
1066
  }
1055
- `,Ec=n.z.object({phone:n.z.string().describe("The phone number."),country_short_name:n.z.string().describe('The ISO 3166-1 alpha-2 country code (e.g. "US").')}),Ac=n.z.object({country_name:n.z.string().describe('The full country name (e.g. "United States").'),country_code:n.z.string().describe('The ISO 3166-1 alpha-2 country code (e.g. "US").')}),Sc=n.z.object({date:n.z.string().describe("The date in YYYY-MM-DD format."),zone_diff:n.z.number().int().optional().describe("UTC offset in minutes.")}),Nc=n.z.object({from:n.z.string().describe("Start date in YYYY-MM-DD format."),to:n.z.string().describe("End date in YYYY-MM-DD format.")}),Dc=n.z.object({lat:n.z.number().describe("Latitude."),lng:n.z.number().describe("Longitude."),place_id:n.z.string().describe("Google Maps place ID."),address:n.z.string().describe("Full formatted address."),country:n.z.object({long_name:n.z.string().describe("Full country name."),short_name:n.z.string().describe("ISO 3166-1 alpha-2 country code.")}),city:n.z.object({long_name:n.z.string().describe("Full city name."),short_name:n.z.string().describe("Abbreviated city name.")}),street:n.z.object({long_name:n.z.string().describe("Full street name."),short_name:n.z.string().describe("Abbreviated street name.")}),street_number:n.z.object({long_name:n.z.string().describe("Full street number."),short_name:n.z.string().describe("Abbreviated street number.")})}),Oc=n.z.object({id:n.z.string().describe("The file ID returned by the workforms upload endpoint."),name:n.z.string().describe('Original file name (e.g. "image.png").'),extension:n.z.string().optional().describe('File extension (e.g. "pdf", "png").'),is_image:n.z.boolean().optional().describe("Whether the file is an image.")}),kc=n.z.object({question_id:n.z.string().describe("The ID of the question being answered."),name:n.z.string().optional().describe("Answer for name questions."),email:n.z.string().optional().describe("Answer for email questions."),short_text:n.z.string().optional().describe("Answer for short text questions."),long_text:n.z.string().optional().describe("Answer for long text questions."),link:n.z.string().optional().describe("Answer for link questions."),updates:n.z.string().optional().describe("Answer for updates questions."),boolean:n.z.boolean().optional().describe("Answer for boolean questions."),number:n.z.number().optional().describe("Answer for number questions."),rating:n.z.number().min(1).optional().describe("Answer for rating questions. Must be a positive number within the question's configured limit."),single_select:n.z.string().optional().describe("Answer for single-select questions — the selected option ID."),multi_select:n.z.array(n.z.number()).optional().describe("Answer for multi-select questions — list of selected option IDs."),people:n.z.array(n.z.string()).optional().describe("Answer for people questions — list of user IDs. Obtain user IDs via the list_users_and_teams tool."),connected_boards:n.z.array(n.z.string()).optional().describe("Answer for connected boards questions — list of connected item IDs."),phone:Ec.optional().describe("Answer for phone questions."),country:Ac.optional().describe("Answer for country questions."),date:Sc.optional().describe("Answer for date questions."),date_range:Nc.optional().describe("Answer for date range questions."),location:Dc.optional().describe("Answer for location questions. Requires a Google Maps place ID and structured address components."),file:n.z.array(Oc).optional().describe("Answer for file questions. Each file must be uploaded first to obtain a file ID. Up to the question's configured limit."),signature:Oc.optional().describe("Answer for signature questions. The file must be uploaded first to obtain a file ID.")}).describe("An answer for a single form question. Set question_id and exactly one answer field matching the question type. Subitems questions are not supported."),Cc={form_token:n.z.string().describe("The unique token identifying the WorkForm. Can be a bare token, a full WorkForm URL (e.g. https://forms.monday.com/forms/abc123?r=use1), or a shortened wkf.ms URL (e.g. https://wkf.ms/4tqP28t). Shortened URLs are automatically resolved by following the redirect."),answers:n.z.array(kc).describe("Array of answers to submit. Each answer specifies a question_id and the value for that question type."),form_timezone_offset:n.z.number().int().min(-840).max(840).describe("The timezone offset of the submitter in minutes (e.g. -120 for UTC-2, 0 for UTC)."),password:n.z.string().optional().describe("The password for the WorkForm. Only required if the WorkForm has password protection enabled (check features.password.enabled from get_form). If required, ask the user for the password before submitting."),tags:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID this tag maps to."),value:n.z.string().describe("The tag value to submit.")})).optional().describe("Tags to attach to the submission — each tag maps a value to a specific board column.")};const Rc=Object.fromEntries(Object.entries(yo).filter((([e])=>"Person"!==e))),$c={columnType:n.z.nativeEnum(Rc).describe("The type of the column to be created"),columnTitle:n.z.string().describe("The title of the column to be created"),columnDescription:n.z.string().optional().describe("The description of the column to be created"),columnSettings:n.z.string().optional().describe(`Column-specific configuration settings as a JSON string. Use get_column_type_info with fetchMode "${Np.Schema}" for the JSON schema for the given column type.`)},xc={boardId:n.z.number().describe("The id of the board to which the new column will be added"),...$c};const Lc={columnId:n.z.string().describe("The id of the column to update"),columnType:n.z.nativeEnum(Rc).describe("The type of the column being updated. Must match the existing column type."),revision:n.z.string().describe("The current revision of the column, obtained from get_board_schema. Used for optimistic concurrency control: if the column changed since you read it, the request will fail and you should re-fetch the latest revision before retrying."),columnTitle:n.z.string().optional().describe("The new title of the column. If omitted, the title is unchanged."),columnDescription:n.z.string().optional().describe("The new description of the column. If omitted, the description is unchanged."),columnSettings:n.z.string().optional().describe(`Type-specific configuration as a JSON string. Use get_column_type_info with fetchMode "${Np.Schema}" for the JSON schema for the given column type. If omitted, settings are unchanged.`)},Uc={boardId:n.z.number().describe("The id of the board containing the column"),...Lc};const Pc={color:n.z.nativeEnum(wo).describe("The color of the custom activity"),icon_id:n.z.nativeEnum(To).describe("The icon ID of the custom activity"),name:n.z.string().describe("The name of the custom activity")};const Fc=Fd`
1067
+ `,Ac=n.z.object({phone:n.z.string().describe("The phone number."),country_short_name:n.z.string().describe('The ISO 3166-1 alpha-2 country code (e.g. "US").')}),Sc=n.z.object({country_name:n.z.string().describe('The full country name (e.g. "United States").'),country_code:n.z.string().describe('The ISO 3166-1 alpha-2 country code (e.g. "US").')}),Nc=n.z.object({date:n.z.string().describe("The date in YYYY-MM-DD format."),zone_diff:n.z.number().int().optional().describe("UTC offset in minutes.")}),Dc=n.z.object({from:n.z.string().describe("Start date in YYYY-MM-DD format."),to:n.z.string().describe("End date in YYYY-MM-DD format.")}),Oc=n.z.object({lat:n.z.number().describe("Latitude."),lng:n.z.number().describe("Longitude."),place_id:n.z.string().describe("Google Maps place ID."),address:n.z.string().describe("Full formatted address."),country:n.z.object({long_name:n.z.string().describe("Full country name."),short_name:n.z.string().describe("ISO 3166-1 alpha-2 country code.")}),city:n.z.object({long_name:n.z.string().describe("Full city name."),short_name:n.z.string().describe("Abbreviated city name.")}),street:n.z.object({long_name:n.z.string().describe("Full street name."),short_name:n.z.string().describe("Abbreviated street name.")}),street_number:n.z.object({long_name:n.z.string().describe("Full street number."),short_name:n.z.string().describe("Abbreviated street number.")})}),kc=n.z.object({id:n.z.string().describe("The file ID returned by the workforms upload endpoint."),name:n.z.string().describe('Original file name (e.g. "image.png").'),extension:n.z.string().optional().describe('File extension (e.g. "pdf", "png").'),is_image:n.z.boolean().optional().describe("Whether the file is an image.")}),Cc=n.z.object({question_id:n.z.string().describe("The ID of the question being answered."),name:n.z.string().optional().describe("Answer for name questions."),email:n.z.string().optional().describe("Answer for email questions."),short_text:n.z.string().optional().describe("Answer for short text questions."),long_text:n.z.string().optional().describe("Answer for long text questions."),link:n.z.string().optional().describe("Answer for link questions."),updates:n.z.string().optional().describe("Answer for updates questions."),boolean:n.z.boolean().optional().describe("Answer for boolean questions."),number:n.z.number().optional().describe("Answer for number questions."),rating:n.z.number().min(1).optional().describe("Answer for rating questions. Must be a positive number within the question's configured limit."),single_select:n.z.string().optional().describe("Answer for single-select questions — the selected option ID."),multi_select:n.z.array(n.z.number()).optional().describe("Answer for multi-select questions — list of selected option IDs."),people:n.z.array(n.z.string()).optional().describe("Answer for people questions — list of user IDs. Obtain user IDs via the list_users_and_teams tool."),connected_boards:n.z.array(n.z.string()).optional().describe("Answer for connected boards questions — list of connected item IDs."),phone:Ac.optional().describe("Answer for phone questions."),country:Sc.optional().describe("Answer for country questions."),date:Nc.optional().describe("Answer for date questions."),date_range:Dc.optional().describe("Answer for date range questions."),location:Oc.optional().describe("Answer for location questions. Requires a Google Maps place ID and structured address components."),file:n.z.array(kc).optional().describe("Answer for file questions. Each file must be uploaded first to obtain a file ID. Up to the question's configured limit."),signature:kc.optional().describe("Answer for signature questions. The file must be uploaded first to obtain a file ID.")}).describe("An answer for a single form question. Set question_id and exactly one answer field matching the question type. Subitems questions are not supported."),Rc={form_token:n.z.string().describe("The unique token identifying the WorkForm. Can be a bare token, a full WorkForm URL (e.g. https://forms.monday.com/forms/abc123?r=use1), or a shortened wkf.ms URL (e.g. https://wkf.ms/4tqP28t). Shortened URLs are automatically resolved by following the redirect."),answers:n.z.array(Cc).describe("Array of answers to submit. Each answer specifies a question_id and the value for that question type."),form_timezone_offset:n.z.number().int().min(-840).max(840).describe("The timezone offset of the submitter in minutes (e.g. -120 for UTC-2, 0 for UTC)."),password:n.z.string().optional().describe("The password for the WorkForm. Only required if the WorkForm has password protection enabled (check features.password.enabled from get_form). If required, ask the user for the password before submitting."),tags:n.z.array(n.z.object({column_id:n.z.string().describe("The column ID this tag maps to."),value:n.z.string().describe("The tag value to submit.")})).optional().describe("Tags to attach to the submission — each tag maps a value to a specific board column.")};const $c=Object.fromEntries(Object.entries(yo).filter((([e])=>"Person"!==e))),xc={columnType:n.z.nativeEnum($c).describe("The type of the column to be created"),columnTitle:n.z.string().describe("The title of the column to be created"),columnDescription:n.z.string().optional().describe("The description of the column to be created"),columnSettings:n.z.string().optional().describe(`Column-specific configuration settings as a JSON string. Use get_column_type_info with fetchMode "${Dp.Schema}" for the JSON schema for the given column type.`)},Lc={boardId:n.z.number().describe("The id of the board to which the new column will be added"),...xc};const Uc={columnId:n.z.string().describe("The id of the column to update"),columnType:n.z.nativeEnum($c).describe("The type of the column being updated. Must match the existing column type."),revision:n.z.string().describe("The current revision of the column, obtained from get_board_schema. Used for optimistic concurrency control: if the column changed since you read it, the request will fail and you should re-fetch the latest revision before retrying."),columnTitle:n.z.string().optional().describe("The new title of the column. If omitted, the title is unchanged."),columnDescription:n.z.string().optional().describe("The new description of the column. If omitted, the description is unchanged."),columnSettings:n.z.string().optional().describe(`Type-specific configuration as a JSON string. Use get_column_type_info with fetchMode "${Dp.Schema}" for the JSON schema for the given column type. If omitted, settings are unchanged.`)},Pc={boardId:n.z.number().describe("The id of the board containing the column"),...Uc};const Fc={color:n.z.nativeEnum(wo).describe("The color of the custom activity"),icon_id:n.z.nativeEnum(To).describe("The icon ID of the custom activity"),name:n.z.string().describe("The name of the custom activity")};const Vc=Fd`
1056
1068
  mutation createNotification($user_id: ID!, $target_id: ID!, $text: String!, $target_type: NotificationTargetType!) {
1057
1069
  create_notification(user_id: $user_id, target_id: $target_id, text: $text, target_type: $target_type) {
1058
1070
  text
1059
1071
  }
1060
1072
  }
1061
- `,Vc={user_id:n.z.string().describe("The user ID to send the notification to"),target_id:n.z.string().describe("The target ID (update/reply ID for Post type, item/board ID for Project type)"),text:n.z.string().describe("The notification text"),target_type:n.z.nativeEnum(br).describe("The target type (Post for update/reply, Project for item/board)")};const Mc=Fd`
1073
+ `,Mc={user_id:n.z.string().describe("The user ID to send the notification to"),target_id:n.z.string().describe("The target ID (update/reply ID for Post type, item/board ID for Project type)"),text:n.z.string().describe("The notification text"),target_type:n.z.nativeEnum(br).describe("The target type (Post for update/reply, Project for item/board)")};const Bc=Fd`
1062
1074
  mutation createGroup(
1063
1075
  $boardId: ID!
1064
1076
  $groupName: String!
@@ -1077,7 +1089,7 @@
1077
1089
  title
1078
1090
  }
1079
1091
  }
1080
- `,Bc=["#037f4c","#00c875","#9cd326","#cab641","#ffcb00","#784bd1","#9d50dd","#007eb5","#579bfc","#66ccff","#bb3354","#df2f4a","#ff007f","#ff5ac4","#ff642e","#fdab3d","#7f5347","#c4c4c4","#757575"],zc={boardId:n.z.string().describe("The ID of the board to create the group in"),groupName:n.z.string().max(255).describe("The name of the new group (maximum 255 characters)"),groupColor:n.z.enum(Bc).optional().describe(`The color for the group. Must be one of the predefined Monday.com group colors: ${Bc.join(", ")}`),relativeTo:n.z.string().optional().describe("The ID of the group to position this new group relative to"),positionRelativeMethod:n.z.nativeEnum(Ar).optional().describe("Whether to position the new group before or after the relativeTo group")};const jc=Fd`
1092
+ `,zc=["#037f4c","#00c875","#9cd326","#cab641","#ffcb00","#784bd1","#9d50dd","#007eb5","#579bfc","#66ccff","#bb3354","#df2f4a","#ff007f","#ff5ac4","#ff642e","#fdab3d","#7f5347","#c4c4c4","#757575"],jc={boardId:n.z.string().describe("The ID of the board to create the group in"),groupName:n.z.string().max(255).describe("The name of the new group (maximum 255 characters)"),groupColor:n.z.enum(zc).optional().describe(`The color for the group. Must be one of the predefined Monday.com group colors: ${zc.join(", ")}`),relativeTo:n.z.string().optional().describe("The ID of the group to position this new group relative to"),positionRelativeMethod:n.z.nativeEnum(Ar).optional().describe("Whether to position the new group before or after the relativeTo group")};const qc=Fd`
1081
1093
  mutation duplicateItem($boardId: ID!, $itemId: ID!, $withUpdates: Boolean) {
1082
1094
  duplicate_item(board_id: $boardId, item_id: $itemId, with_updates: $withUpdates) {
1083
1095
  id
@@ -1085,9 +1097,19 @@
1085
1097
  url
1086
1098
  }
1087
1099
  }
1088
- `,qc=Fd`
1089
- mutation createSubitem($parentItemId: ID!, $itemName: String!, $columnValues: JSON) {
1090
- create_subitem(parent_item_id: $parentItemId, item_name: $itemName, column_values: $columnValues) {
1100
+ `,Gc=Fd`
1101
+ mutation createSubitem(
1102
+ $parentItemId: ID!
1103
+ $itemName: String!
1104
+ $columnValues: JSON
1105
+ $createLabelsIfMissing: Boolean
1106
+ ) {
1107
+ create_subitem(
1108
+ parent_item_id: $parentItemId
1109
+ item_name: $itemName
1110
+ column_values: $columnValues
1111
+ create_labels_if_missing: $createLabelsIfMissing
1112
+ ) {
1091
1113
  id
1092
1114
  name
1093
1115
  url
@@ -1096,7 +1118,7 @@
1096
1118
  }
1097
1119
  }
1098
1120
  }
1099
- `,Gc={name:n.z.string().describe("The name of the new item to be created, must be relevant to the user's request"),groupId:n.z.string().optional().describe("The id of the group id to which the new item will be added, if its not clearly specified, leave empty"),columnValues:n.z.string().describe('A string containing the new column values for the item following this structure: {\\"column_id\\": \\"value\\",... you can change multiple columns at once, note that for status column you must use nested value with \'label\' as a key and for date column use \'date\' as key} - example: "{\\"text_column_id\\":\\"New text\\", \\"status_column_id\\":{\\"label\\":\\"Done\\"}, \\"date_column_id\\":{\\"date\\":\\"2023-05-25\\"},\\"dropdown_id\\":\\"value\\", \\"phone_id\\":\\"123-456-7890\\", \\"email_id\\":\\"test@example.com\\"}"'),parentItemId:n.z.number().optional().describe("The id of the parent item under which the new subitem will be created"),duplicateFromItemId:n.z.number().optional().describe("The id of existing item to duplicate and update with new values (only provide when duplicating)")},Hc={boardId:n.z.number().describe("The id of the board to which the new item will be added"),...Gc};const Wc={item_id:n.z.number().describe("The ID of the item to create the new timeline item on"),custom_activity_id:n.z.string().describe("The ID of the custom activity for the timeline item"),title:n.z.string().describe("The title of the new timeline item"),summary:n.z.string().optional().describe("The summary of the new timeline item (max 255 characters)"),content:n.z.string().optional().describe("The content of the new timeline item"),timestamp:n.z.string().describe("The creation time of the new timeline item in ISO8601 format (e.g., 2024-06-06T18:00:30Z)"),start_timestamp:n.z.string().optional().describe("The start time of the timeline item in ISO8601 format"),end_timestamp:n.z.string().optional().describe("The end time of the timeline item in ISO8601 format"),location:n.z.string().optional().describe("The location to add to the new timeline item"),phone:n.z.string().optional().describe("The phone number to add to the new timeline item"),url:n.z.string().optional().describe("The URL to add to the new timeline item")};const Yc=Fd`
1121
+ `,Hc={name:n.z.string().min(1,"Item name cannot be empty").max(255,"Item name must be 255 characters or fewer").describe("The name of the new item to be created, must be relevant to the user's request. 1–255 characters."),groupId:n.z.string().optional().describe("The id of the group id to which the new item will be added, if its not clearly specified, leave empty"),columnValues:n.z.string().describe('A JSON string of column values, keyed by column id. Status and dropdown columns must use { "label": "..." } (or { "labels": ["...", "..."] } for multi-select dropdown). Date columns use { "date": "YYYY-MM-DD" }. Text/number/email/phone use plain strings. Example: "{\\"text_col\\":\\"hello\\", \\"status_col\\":{\\"label\\":\\"Done\\"}, \\"date_col\\":{\\"date\\":\\"2023-05-25\\"}, \\"dropdown_col\\":{\\"labels\\":[\\"A\\",\\"B\\"]}, \\"phone_col\\":\\"123-456-7890\\", \\"email_col\\":\\"test@example.com\\"}". If you don\'t know the exact label values or column ids, call get_board_info first.'),createLabelsIfMissing:n.z.boolean().optional().describe("When true, missing status/dropdown labels referenced in columnValues will be auto-created on the board instead of erroring with ColumnValueException. Requires permission to change board structure. Use when the caller specifies label names that may not yet exist on the board."),parentItemId:n.z.number().optional().describe("The id of the parent item under which the new subitem will be created"),duplicateFromItemId:n.z.number().optional().describe("The id of existing item to duplicate and update with new values (only provide when duplicating)")},Wc={boardId:n.z.number().describe("The id of the board to which the new item will be added"),...Hc};const Yc={item_id:n.z.number().describe("The ID of the item to create the new timeline item on"),custom_activity_id:n.z.string().describe("The ID of the custom activity for the timeline item"),title:n.z.string().describe("The title of the new timeline item"),summary:n.z.string().optional().describe("The summary of the new timeline item (max 255 characters)"),content:n.z.string().optional().describe("The content of the new timeline item"),timestamp:n.z.string().describe("The creation time of the new timeline item in ISO8601 format (e.g., 2024-06-06T18:00:30Z)"),start_timestamp:n.z.string().optional().describe("The start time of the timeline item in ISO8601 format"),end_timestamp:n.z.string().optional().describe("The end time of the timeline item in ISO8601 format"),location:n.z.string().optional().describe("The location to add to the new timeline item"),phone:n.z.string().optional().describe("The phone number to add to the new timeline item"),url:n.z.string().optional().describe("The URL to add to the new timeline item")};const Kc=Fd`
1100
1122
  mutation createUpdate($itemId: ID!, $body: String!, $mentionsList: [UpdateMention], $parentId: ID) {
1101
1123
  create_update(body: $body, item_id: $itemId, mentions_list: $mentionsList, parent_id: $parentId) {
1102
1124
  id
@@ -1107,13 +1129,13 @@
1107
1129
  }
1108
1130
  }
1109
1131
  }
1110
- `,Kc=n.z.object({id:n.z.string().describe("The ID of the entity to mention"),type:n.z.nativeEnum(_r).describe("The type of mention: User, Team, Board, or Project")}),Qc=n.z.array(Kc),Jc={itemId:n.z.number().describe("The id of the item to which the update will be added"),body:n.z.string().describe("The update text to be created. Do not use @ to mention users, use the mentionsList field instead. use html tags to format the text, dont use markdown."),mentionsList:n.z.string().optional().describe('Optional JSON array of mentions in the format: [{"id": "123", "type": "User"}, {"id": "456", "type": "Team"}]. Valid types are: User, Team, Board, Project'),parentId:n.z.number().optional().describe("The ID of the update to reply to. Use this parameter when you want to reply on an existing update leave it empty if you want to create a new update")};const Xc=Fd`
1132
+ `,Qc=n.z.object({id:n.z.string().describe("The ID of the entity to mention"),type:n.z.nativeEnum(_r).describe("The type of mention: User, Team, Board, or Project")}),Jc=n.z.array(Qc),Xc={itemId:n.z.number().describe("The id of the item to which the update will be added"),body:n.z.string().describe("The update text to be created. Do not use @ to mention users, use the mentionsList field instead. use html tags to format the text, dont use markdown."),mentionsList:n.z.string().optional().describe('Optional JSON array of mentions in the format: [{"id": "123", "type": "User"}, {"id": "456", "type": "Team"}]. Valid types are: User, Team, Board, Project'),parentId:n.z.number().optional().describe("The ID of the update to reply to. Use this parameter when you want to reply on an existing update leave it empty if you want to create a new update")};const Zc=Fd`
1111
1133
  mutation DeleteUpdate($id: ID!) {
1112
1134
  delete_update(id: $id) {
1113
1135
  id
1114
1136
  }
1115
1137
  }
1116
- `,Zc={id:n.z.number().describe("The unique identifier of the update to delete")};const em=Fd`
1138
+ `,em={id:n.z.number().describe("The unique identifier of the update to delete")};const tm=Fd`
1117
1139
  query GetItemUpdates($itemId: ID!, $limit: Int, $page: Int, $includeReplies: Boolean!, $includeAssets: Boolean!) {
1118
1140
  items(ids: [$itemId]) {
1119
1141
  id
@@ -1149,7 +1171,7 @@
1149
1171
  }
1150
1172
  }
1151
1173
  }
1152
- `,tm=Fd`
1174
+ `,am=Fd`
1153
1175
  query GetBoardUpdates($boardId: ID!, $limit: Int, $page: Int, $includeReplies: Boolean!, $includeAssets: Boolean!, $fromDate: ISO8601DateTime, $toDate: ISO8601DateTime, $boardUpdatesOnly: Boolean) {
1154
1176
  boards(ids: [$boardId]) {
1155
1177
  id
@@ -1185,7 +1207,7 @@
1185
1207
  }
1186
1208
  }
1187
1209
  }
1188
- `;var am;!function(e){e.Item="Item",e.Board="Board"}(am||(am={}));const im={objectId:n.z.string().describe("The ID of the item or board to get updates from"),objectType:n.z.enum([am.Item,am.Board]).describe("Type of object for which objectId was provided"),limit:n.z.number().min(1).max(100).optional().default(25).describe("Number of updates per page (default: 25, max: 100)"),page:n.z.number().min(1).optional().default(1).describe("Page number for pagination (default: 1)"),includeReplies:n.z.boolean().optional().default(!1).describe("Include update replies in the response"),includeAssets:n.z.boolean().optional().default(!1).describe("Include file attachments in the response"),fromDate:n.z.string().optional().describe('Start of date range filter (e.g. "2025-01-01" or "2025-01-01T00:00:00Z"). Must be used together with toDate. Only supported for Board objectType.'),toDate:n.z.string().optional().describe('End of date range filter (e.g. "2025-06-01" or "2025-06-01T23:59:59Z"). Must be used together with fromDate. Only supported for Board objectType.'),includeItemUpdates:n.z.boolean().optional().default(!1).describe("When objectType is Board, also include updates on individual items. Defaults to false, returning only board discussion. Set to true to retrieve all updates on a board, including updates on individual items.")};function nm(e){return/^\d{4}-\d{2}-\d{2}$/.test(e)?`${e}T00:00:00Z`:e}const om={columnId:n.z.string().describe("The id of the column to be deleted")},rm={boardId:n.z.number().describe("The id of the board to which the new column will be added"),...om};const sm={itemId:n.z.number()};const dm={};const pm=Fd`
1210
+ `;var im;!function(e){e.Item="Item",e.Board="Board"}(im||(im={}));const nm={objectId:n.z.string().describe("The ID of the item or board to get updates from"),objectType:n.z.enum([im.Item,im.Board]).describe("Type of object for which objectId was provided"),limit:n.z.number().min(1).max(100).optional().default(25).describe("Number of updates per page (default: 25, max: 100)"),page:n.z.number().min(1).optional().default(1).describe("Page number for pagination (default: 1)"),includeReplies:n.z.boolean().optional().default(!1).describe("Include update replies in the response"),includeAssets:n.z.boolean().optional().default(!1).describe("Include file attachments in the response"),fromDate:n.z.string().optional().describe('Start of date range filter (e.g. "2025-01-01" or "2025-01-01T00:00:00Z"). Must be used together with toDate. Only supported for Board objectType.'),toDate:n.z.string().optional().describe('End of date range filter (e.g. "2025-06-01" or "2025-06-01T23:59:59Z"). Must be used together with fromDate. Only supported for Board objectType.'),includeItemUpdates:n.z.boolean().optional().default(!1).describe("When objectType is Board, also include updates on individual items. Defaults to false, returning only board discussion. Set to true to retrieve all updates on a board, including updates on individual items.")};function om(e){return/^\d{4}-\d{2}-\d{2}$/.test(e)?`${e}T00:00:00Z`:e}const rm={columnId:n.z.string().describe("The id of the column to be deleted")},sm={boardId:n.z.number().describe("The id of the board to which the new column will be added"),...rm};const dm={itemId:n.z.number()};const pm={};const lm=Fd`
1189
1211
  query getBoardData($boardId: ID!, $itemsLimit: Int!, $queryParams: ItemsQuery) {
1190
1212
  boards(ids: [$boardId]) {
1191
1213
  id
@@ -1228,7 +1250,7 @@
1228
1250
  }
1229
1251
  }
1230
1252
  }
1231
- `,lm=Fd`
1253
+ `,cm=Fd`
1232
1254
  query getUsersByIds($userIds: [ID!]!) {
1233
1255
  users(ids: $userIds) {
1234
1256
  id
@@ -1238,7 +1260,7 @@
1238
1260
  }
1239
1261
  }
1240
1262
  }
1241
- `,cm=n.z.array(n.z.object({columnId:n.z.string().describe("The id of the column to filter by"),compareAttribute:n.z.string().optional().describe("The attribute to compare the value to. This is OPTIONAL property."),compareValue:n.z.union([n.z.string(),n.z.number(),n.z.boolean(),n.z.array(n.z.union([n.z.string(),n.z.number()]))]).describe("The value to compare the attribute to. This can be a string or index value depending on the column type."),operator:n.z.nativeEnum(dr).optional().default(dr.AnyOf).describe("The operator to use for the filter")})).optional().describe(`The configuration of filters to apply on the items. Use get_board_info for column ids and types on the board. Before sending the filters, use get_column_type_info with fetchMode "${Np.Guidelines}" and use data.guidelines.filter (null if that type has no documented rules).`),mm=n.z.nativeEnum(sr).optional().default(sr.And).describe("The operator to use for the filters"),um={boardId:n.z.string().describe("The ID of the board to fetch complete data for"),filters:cm,filtersOperator:mm};const hm=Fd`
1263
+ `,mm=n.z.array(n.z.object({columnId:n.z.string().describe("The id of the column to filter by"),compareAttribute:n.z.string().optional().describe("The attribute to compare the value to. This is OPTIONAL property."),compareValue:n.z.union([n.z.string(),n.z.number(),n.z.boolean(),n.z.array(n.z.union([n.z.string(),n.z.number()]))]).describe("The value to compare the attribute to. This can be a string or index value depending on the column type."),operator:n.z.nativeEnum(dr).optional().default(dr.AnyOf).describe("The operator to use for the filter")})).optional().describe(`The configuration of filters to apply on the items. Use get_board_info for column ids and types on the board. Before sending the filters, use get_column_type_info with fetchMode "${Dp.Guidelines}" and use data.guidelines.filter (null if that type has no documented rules).`),um=n.z.nativeEnum(sr).optional().default(sr.And).describe("The operator to use for the filters"),hm={boardId:n.z.string().describe("The ID of the board to fetch complete data for"),filters:mm,filtersOperator:um};const fm=Fd`
1242
1264
  query GetBoardActivity(
1243
1265
  $boardId: ID!
1244
1266
  $itemIds: [ID!]
@@ -1261,7 +1283,7 @@
1261
1283
  }
1262
1284
  }
1263
1285
  }
1264
- `,fm={boardId:n.z.number().describe("The id of the board to get activity for"),itemIds:n.z.array(n.z.number()).optional().describe("Filter activity to specific item ids. Omit to get activity for the whole board."),userIds:n.z.array(n.z.number()).optional().describe("Filter activity to actions performed by specific user ids."),fromDate:n.z.string().optional().describe("Start date for activity range (ISO8601DateTime format). Defaults to 30 days ago"),toDate:n.z.string().optional().describe("End date for activity range (ISO8601DateTime format). Defaults to now"),includeData:n.z.boolean().optional().default(!1).describe("Whether to include the raw data payload for each activity entry. The data field contains the full before/after state of changes and can be very large. Only set to true when you need the detailed change data.")};const _m=Fd`
1286
+ `,_m={boardId:n.z.number().describe("The id of the board to get activity for"),itemIds:n.z.array(n.z.number()).optional().describe("Filter activity to specific item ids. Omit to get activity for the whole board."),userIds:n.z.array(n.z.number()).optional().describe("Filter activity to actions performed by specific user ids."),fromDate:n.z.string().optional().describe("Start date for activity range (ISO8601DateTime format). Defaults to 30 days ago"),toDate:n.z.string().optional().describe("End date for activity range (ISO8601DateTime format). Defaults to now"),includeData:n.z.boolean().optional().default(!1).describe("Whether to include the raw data payload for each activity entry. The data field contains the full before/after state of changes and can be very large. Only set to true when you need the detailed change data.")};const gm=Fd`
1265
1287
  query GetBoardInfo($boardId: ID!) {
1266
1288
  boards(ids: [$boardId]) {
1267
1289
  # Basic Board Metadata
@@ -1349,7 +1371,7 @@
1349
1371
  }
1350
1372
  }
1351
1373
  }
1352
- `,gm=Fd`
1374
+ `,bm=Fd`
1353
1375
  query GetBoardInfoJustColumns($boardId: ID!) {
1354
1376
  boards(ids: [$boardId]) {
1355
1377
  columns {
@@ -1362,7 +1384,7 @@
1362
1384
  }
1363
1385
  }
1364
1386
  }
1365
- `,bm=(e,t)=>({board:{...e,subItemColumns:t?.columns??void 0}}),vm={boardId:n.z.number().describe("The id of the board to get information for")};const ym=Fd`
1387
+ `,vm=(e,t)=>({board:{...e,subItemColumns:t?.columns??void 0}}),ym={boardId:n.z.number().describe("The id of the board to get information for")};const Im=Fd`
1366
1388
  fragment ItemDataFragment on Item {
1367
1389
  id
1368
1390
  name
@@ -1425,7 +1447,7 @@
1425
1447
  }
1426
1448
  }
1427
1449
  }
1428
- `,Im=Fd`
1450
+ `,wm=Fd`
1429
1451
  query SearchItemsDev($query: String!, $limit: Int, $boardIds: [ID!]) {
1430
1452
  search {
1431
1453
  items(query: $query, limit: $limit, board_ids: $boardIds) {
@@ -1435,11 +1457,11 @@
1435
1457
  }
1436
1458
  }
1437
1459
  }
1438
- `,wm={boardId:n.z.number().describe("The id of the board to get items from"),itemIds:n.z.array(n.z.number()).optional().describe("The ids of the items to get. The count of items should be less than 100."),searchTerm:n.z.string().optional().describe('\n The search term to use for the search.\n - Use this when: the user provides a vague, incomplete, or approximate search term (e.g., “marketing campaign”, “John’s task”, “budget-related”), and there isn’t a clear exact compare value for a specific field.\n - Do not use this when: the user specifies an exact value that maps directly to a column comparison (e.g., name contains "marketing campaign", status = "Done", priority = "High", owner = "Daniel"). In these cases, prefer structured compare filters.\n '),limit:n.z.number().min(1).max(500).optional().default(25).describe("The number of items to get"),cursor:n.z.string().optional().describe("The cursor to get the next page of items, use the nextCursor from the previous response. If the nextCursor was null, it means there are no more items to get"),includeColumns:n.z.boolean().optional().default(!1).describe("Whether to include column values in the response.\nPERFORMANCE OPTIMIZATION: Only set this to true when you actually need the column data. Excluding columns significantly reduces token usage and improves response latency. If you only need to count items, get item IDs/names, or check if items exist, keep this false."),includeItemDescription:n.z.boolean().optional().default(!1).describe("Whether to include the item's description in the response. The item description is the rich-text body content that appears inside a monday.com item (similar to a task description or issue body). Set this to true when the user asks about an item's description, details, body, or notes. PERFORMANCE OPTIMIZATION: Only set this to true when you actually need the item description content."),includeSubItems:n.z.boolean().optional().default(!1).describe("Whether to include sub items in the response. PERFORMANCE OPTIMIZATION: Only set this to true when you actually need the sub items data."),subItemLimit:n.z.number().min(1).max(100).optional().default(25).describe("The number of sub items to get per item. This is only used when includeSubItems is true."),filters:cm,filtersOperator:mm,columnIds:n.z.array(n.z.string()).optional().describe("The ids of the item columns and subitem columns to get, can be used to reduce the response size when user asks for specific columns. Works only when includeColumns is true. If not provided, all columns will be returned"),orderBy:n.z.array(n.z.object({columnId:n.z.string().describe("The id of the column to order by"),direction:n.z.nativeEnum(rr).optional().default(rr.Asc).describe("The direction to order by")})).optional().describe("The columns to order by, will control the order of the items in the response")};const Tm={boardId:n.z.number().describe("The id of the board to get the schema of")};const Em=Fd`
1460
+ `,Tm={boardId:n.z.number().describe("The id of the board to get items from"),itemIds:n.z.array(n.z.number()).optional().describe("The ids of the items to get. The count of items should be less than 100."),searchTerm:n.z.string().optional().describe('\n The search term to use for the search.\n - Use this when: the user provides a vague, incomplete, or approximate search term (e.g., “marketing campaign”, “John’s task”, “budget-related”), and there isn’t a clear exact compare value for a specific field.\n - Do not use this when: the user specifies an exact value that maps directly to a column comparison (e.g., name contains "marketing campaign", status = "Done", priority = "High", owner = "Daniel"). In these cases, prefer structured compare filters.\n '),limit:n.z.number().min(1).max(500).optional().default(25).describe("The number of items to get"),cursor:n.z.string().optional().describe("The cursor to get the next page of items, use the nextCursor from the previous response. If the nextCursor was null, it means there are no more items to get"),includeColumns:n.z.boolean().optional().default(!1).describe("Whether to include column values in the response.\nPERFORMANCE OPTIMIZATION: Only set this to true when you actually need the column data. Excluding columns significantly reduces token usage and improves response latency. If you only need to count items, get item IDs/names, or check if items exist, keep this false."),includeItemDescription:n.z.boolean().optional().default(!1).describe("Whether to include the item's description in the response. The item description is the rich-text body content that appears inside a monday.com item (similar to a task description or issue body). Set this to true when the user asks about an item's description, details, body, or notes. PERFORMANCE OPTIMIZATION: Only set this to true when you actually need the item description content."),includeSubItems:n.z.boolean().optional().default(!1).describe("Whether to include sub items in the response. PERFORMANCE OPTIMIZATION: Only set this to true when you actually need the sub items data."),subItemLimit:n.z.number().min(1).max(100).optional().default(25).describe("The number of sub items to get per item. This is only used when includeSubItems is true."),filters:mm,filtersOperator:um,columnIds:n.z.array(n.z.string()).optional().describe("The ids of the item columns and subitem columns to get, can be used to reduce the response size when user asks for specific columns. Works only when includeColumns is true. If not provided, all columns will be returned"),orderBy:n.z.array(n.z.object({columnId:n.z.string().describe("The id of the column to order by"),direction:n.z.nativeEnum(rr).optional().default(rr.Asc).describe("The direction to order by")})).optional().describe("The columns to order by, will control the order of the items in the response")};const Em={boardId:n.z.number().describe("The id of the board to get the schema of")};const Am=Fd`
1439
1461
  query GetColumnTypeSchema($type: ColumnType!) {
1440
1462
  get_column_type_schema(type: $type)
1441
1463
  }
1442
- `,Am="https://developer.monday.com/api-reference",Sm={last_updated:'Supported operators: any_of, not_any_of. CompareValue should be either:\n - "TODAY" - requires to also specify compareAttribute: "UPDATED_AT"\n - "YESTERDAY" - requires to also specify compareAttribute: "UPDATED_AT"\n - "THIS_WEEK" - requires to also specify compareAttribute: "UPDATED_AT"\n - "LAST_WEEK" - requires to also specify compareAttribute: "UPDATED_AT"\n - "THIS_MONTH" - requires to also specify compareAttribute: "UPDATED_AT"\n - "LAST_MONTH" - requires to also specify compareAttribute: "UPDATED_AT"\nEXAMPLES:\n ✅ Correct: {"columnId": "last_updated", "compareValue": ["TODAY"], "operator": "any_of", "compareAttribute": "UPDATED_AT"} // using TODAY with correct compareAttribute\n ✅ Correct: {"columnId": "last_updated", "compareValue": ["THIS_WEEK"], "operator": "not_any_of", "compareAttribute": "UPDATED_AT"} // using THIS_WEEK with not_any_of\n ❌ Wrong: {"columnId": "last_updated", "compareValue": ["TODAY"], "operator": "any_of"} // missing required compareAttribute\n ❌ Wrong: {"columnId": "last_updated", "compareValue": "TODAY", "operator": "any_of", "compareAttribute": "UPDATED_AT"} // not using array for any_of operator',date:'Supported operators: any_of, not_any_of, greater_than, lower_than. CompareValue should be either:\n - Date in "YYYY-MM-DD" format with "EXACT" e.g. compareValue:["EXACT", "2025-01-01"]\n - "TODAY" - Item with today\'s date\n - "TOMORROW" - Item with tomorrow\'s date\n - "THIS_WEEK" - Item with this week\'s date\n - "ONE_WEEK_AGO" - Item with one week ago\'s date\nEXAMPLES:\n ✅ Correct: {"columnId": "date", "compareValue": ["EXACT", "2025-01-01"], "operator": "any_of"} // using exact date format with EXACT\n ✅ Correct: {"columnId": "date", "compareValue": "TODAY", "operator": "greater_than"} // using TODAY with greater_than\n ❌ Wrong: {"columnId": "date", "compareValue": "2025-01-01", "operator": "any_of"} // missing EXACT string for exact date\n ❌ Wrong: {"columnId": "date", "compareValue": ["TODAY"], "operator": "greater_than"} // using array with single value operator',email:'Supported operators: any_of, not_any_of, is_empty, is_not_empty, contains_text, not_contains_text. CompareValue can be:\n - empty string "" when searching for blank values\n - whole email address when searching for specific email\n - partial email when using contains_text, not_contains_text operators\nEXAMPLES:\n ✅ Correct: {"columnId": "email", "compareValue": ["john@example.com"], "operator": "any_of"} // using array with any_of for specific email\n ✅ Correct: {"columnId": "email", "compareValue": "gmail", "operator": "contains_text"} // using partial email with contains_text\n ❌ Wrong: {"columnId": "email", "compareValue": "john@example.com", "operator": "any_of"} // not using array with any_of operator\n ❌ Wrong: {"columnId": "email", "compareValue": ["gmail"], "operator": "contains_text"} // using array with single value operator',long_text:'Supported operators: any_of, not_any_of, is_empty, is_not_empty, contains_text, not_contains_text. CompareValue can be either full text or partial text when using contains_text, not_contains_text operators\nEXAMPLES:\n ✅ Correct: {"columnId": "long_text", "compareValue": ["Complete project description"], "operator": "any_of"} // using array with any_of for full text\n ✅ Correct: {"columnId": "long_text", "compareValue": "urgent", "operator": "contains_text"} // using partial text with contains_text\n ❌ Wrong: {"columnId": "long_text", "compareValue": "Complete project description", "operator": "any_of"} // not using array with any_of operator\n ❌ Wrong: {"columnId": "long_text", "compareValue": [], "operator": "contains_text"} // using empty array with contains_text operator',text:'Supported operators: any_of, not_any_of, is_empty, is_not_empty, contains_text, not_contains_text. CompareValue can be either full text or partial text when using contains_text, not_contains_text operators\nEXAMPLES:\n ✅ Correct: {"columnId": "text", "compareValue": ["Task Name"], "operator": "any_of"} // using array with any_of for full text\n ✅ Correct: {"columnId": "text", "compareValue": "bug", "operator": "contains_text"} // using partial text with contains_text\n ❌ Wrong: {"columnId": "text", "compareValue": "Task Name", "operator": "any_of"} // not using array with any_of operator\n ❌ Wrong: {"columnId": "text", "compareValue": [], "operator": "contains_text"} // using empty array with contains_text operator',numbers:'Supported operators: any_of, not_any_of, greater_than, lower_than. CompareValue is a number or "$$$blank$$$" when searching for blank values\nEXAMPLES:\n ✅ Correct: {"columnId": "numbers", "compareValue": [100, 200], "operator": "any_of"} // using array with any_of for multiple numbers\n ✅ Correct: {"columnId": "numbers", "compareValue": 50, "operator": "greater_than"} // using single number with greater_than\n ❌ Wrong: {"columnId": "numbers", "compareValue": 100, "operator": "any_of"} // not using array with any_of operator\n ❌ Wrong: {"columnId": "numbers", "compareValue": ["50"], "operator": "greater_than"} // using array with single value operator',name:'Supported operators: "contains_text", "not_contains_text". CompareValue can be full or partial text\nEXAMPLES:\n ✅ Correct: {"columnId": "name", "compareValue": "marketing campaign", "operator": "contains_text"} // using string with contains_text\n ✅ Correct: {"columnId": "name", "compareValue": "marketing campaign", "operator": "not_contains_text"} // using string with not_contains_text',status:'Supported operators: any_of, not_any_of, contains_terms. CompareValue should be either:\n - id of label from column settings - when used with any_of, not_any_of operators\n - label\'s text - when use with contains_terms\nEXAMPLES:\n ✅ Correct: {"columnId": "status", "compareValue": [0, 1], "operator": "any_of"} // Using id values\n ✅ Correct: {"columnId": "status", "compareValue": "Done", "operator": "contains_terms"} // Using label text\n ❌ Wrong: {"columnId": "status", "compareValue": "Done", "operator": "any_of"} // Using label text with wrong operator\n ❌ Wrong: {"columnId": "status", "compareValue": [0, 1], "operator": "contains_terms"} // Using id with wrong operator',checkbox:'Supported operators: is_empty, is_not_empty. Compare value must be an empty array\nEXAMPLES:\n ✅ Correct: {"columnId": "column_id", "compareValue": [], "operator": "is_empty"} // using empty array with is_empty operator\n ❌ Wrong: {"columnId": "column_id", "compareValue": null, "operator": "is_empty"} // not using empty array with is_empty operator',people:'Supported operators: any_of, not_any_of, is_empty, is_not_empty. **CRITICAL**: CompareValue MUST be in one of following:\n - "assigned_to_me" - when searching for current user\n - "person-123" - when searching for specific person with id 123\n - "team-456" - when searching for specific team with id 456\n - empty array when using is_empty, is_not_empty operators\nEXAMPLES: \n ❌ Wrong: {"columnId": "column_id", "compareValue": ["person—123"], "operator": "any_of"} // Using long hyphen \'—\' instead of short hyphen \'-\'\n ✅ Correct: {"columnId": "column_id", "compareValue": [], "operator": "is_empty"} // using empty array with is_empty operator\n ✅ Correct: {"columnId": "column_id", "compareValue": ["person-80120403"], "operator": "any_of"} // using person prefix\n ✅ Correct: {"columnId": "column_id", "compareValue": ["team-9000"], "operator": "any_of"} // using team prefix\n ✅ Correct: {"columnId": "column_id", "compareValue": ["assigned_to_me"], "operator": "any_of"} // using assigned_to_me value\n ❌ Wrong: {"columnId": "column_id", "compareValue": ["80120403"], "operator": "is_empty"} // using id with is_empty operator\n ❌ Wrong: {"columnId": "column_id", "compareValue": ["80120403"], "operator": "any_of"} // not using person or team prefix'};function Nm(e){const t=Sm[e];return t?`# Filtering Guidelines\n\n## [IMPORTANT] Operator Guidelines\nSpecific operators expect specific compareValue types:\n- CompareValue MUST BE SENT AS AN ARRAY WHEN USED WITH any_of, not_any_of, between operators\n- CompareValue MUST BE SENT AS AN EMPTY ARRAY WHEN USED WITH is_empty, is_not_empty\n- CompareValue MUST BE SENT AS EITHER SINGLE STRING OR SINGLE NUMBER WHEN USED WITH greater_than, greater_than_or_equals, lower_than, lower_than_or_equal\n- CompareValue MUST BE SENT AS SINGLE STRING WHEN USED WITH contains_terms, not_contains_text, contains_text, starts_with, ends_with operators\n\n## [IMPORTANT] Column type: ${e}\n${t}\n\n## [IMPORTANT] Sub Items Columns MUST NOT BE USED FOR FILTERING.\n`:null}const Dm={columnType:n.z.nativeEnum(Rc).describe('The column type to retrieve information for (e.g., "text", "status", "date", "numbers")'),fetchMode:n.z.nativeEnum(Np).optional().default(Np.Schema).describe(`fetchMode "${Np.Schema}": JSON settings schema only (GraphQL). fetchMode "${Np.Guidelines}": guidelines.filter and guidelines.aggregation only — no GraphQL round-trip.`)};const Om={random_string:n.z.string().describe("Dummy parameter for no-parameter tools").optional(),operationType:n.z.enum(["read","write"]).describe('Type of operation: "read" for queries, "write" for mutations').optional()};const km={typeName:n.z.string().describe("The name of the GraphQL type to get details for")};const Cm=Fd`
1464
+ `,Sm="https://developer.monday.com/api-reference",Nm={last_updated:'Supported operators: any_of, not_any_of. CompareValue should be either:\n - "TODAY" - requires to also specify compareAttribute: "UPDATED_AT"\n - "YESTERDAY" - requires to also specify compareAttribute: "UPDATED_AT"\n - "THIS_WEEK" - requires to also specify compareAttribute: "UPDATED_AT"\n - "LAST_WEEK" - requires to also specify compareAttribute: "UPDATED_AT"\n - "THIS_MONTH" - requires to also specify compareAttribute: "UPDATED_AT"\n - "LAST_MONTH" - requires to also specify compareAttribute: "UPDATED_AT"\nEXAMPLES:\n ✅ Correct: {"columnId": "last_updated", "compareValue": ["TODAY"], "operator": "any_of", "compareAttribute": "UPDATED_AT"} // using TODAY with correct compareAttribute\n ✅ Correct: {"columnId": "last_updated", "compareValue": ["THIS_WEEK"], "operator": "not_any_of", "compareAttribute": "UPDATED_AT"} // using THIS_WEEK with not_any_of\n ❌ Wrong: {"columnId": "last_updated", "compareValue": ["TODAY"], "operator": "any_of"} // missing required compareAttribute\n ❌ Wrong: {"columnId": "last_updated", "compareValue": "TODAY", "operator": "any_of", "compareAttribute": "UPDATED_AT"} // not using array for any_of operator',date:'Supported operators: any_of, not_any_of, greater_than, lower_than. CompareValue should be either:\n - Date in "YYYY-MM-DD" format with "EXACT" e.g. compareValue:["EXACT", "2025-01-01"]\n - "TODAY" - Item with today\'s date\n - "TOMORROW" - Item with tomorrow\'s date\n - "THIS_WEEK" - Item with this week\'s date\n - "ONE_WEEK_AGO" - Item with one week ago\'s date\nEXAMPLES:\n ✅ Correct: {"columnId": "date", "compareValue": ["EXACT", "2025-01-01"], "operator": "any_of"} // using exact date format with EXACT\n ✅ Correct: {"columnId": "date", "compareValue": "TODAY", "operator": "greater_than"} // using TODAY with greater_than\n ❌ Wrong: {"columnId": "date", "compareValue": "2025-01-01", "operator": "any_of"} // missing EXACT string for exact date\n ❌ Wrong: {"columnId": "date", "compareValue": ["TODAY"], "operator": "greater_than"} // using array with single value operator',email:'Supported operators: any_of, not_any_of, is_empty, is_not_empty, contains_text, not_contains_text. CompareValue can be:\n - empty string "" when searching for blank values\n - whole email address when searching for specific email\n - partial email when using contains_text, not_contains_text operators\nEXAMPLES:\n ✅ Correct: {"columnId": "email", "compareValue": ["john@example.com"], "operator": "any_of"} // using array with any_of for specific email\n ✅ Correct: {"columnId": "email", "compareValue": "gmail", "operator": "contains_text"} // using partial email with contains_text\n ❌ Wrong: {"columnId": "email", "compareValue": "john@example.com", "operator": "any_of"} // not using array with any_of operator\n ❌ Wrong: {"columnId": "email", "compareValue": ["gmail"], "operator": "contains_text"} // using array with single value operator',long_text:'Supported operators: any_of, not_any_of, is_empty, is_not_empty, contains_text, not_contains_text. CompareValue can be either full text or partial text when using contains_text, not_contains_text operators\nEXAMPLES:\n ✅ Correct: {"columnId": "long_text", "compareValue": ["Complete project description"], "operator": "any_of"} // using array with any_of for full text\n ✅ Correct: {"columnId": "long_text", "compareValue": "urgent", "operator": "contains_text"} // using partial text with contains_text\n ❌ Wrong: {"columnId": "long_text", "compareValue": "Complete project description", "operator": "any_of"} // not using array with any_of operator\n ❌ Wrong: {"columnId": "long_text", "compareValue": [], "operator": "contains_text"} // using empty array with contains_text operator',text:'Supported operators: any_of, not_any_of, is_empty, is_not_empty, contains_text, not_contains_text. CompareValue can be either full text or partial text when using contains_text, not_contains_text operators\nEXAMPLES:\n ✅ Correct: {"columnId": "text", "compareValue": ["Task Name"], "operator": "any_of"} // using array with any_of for full text\n ✅ Correct: {"columnId": "text", "compareValue": "bug", "operator": "contains_text"} // using partial text with contains_text\n ❌ Wrong: {"columnId": "text", "compareValue": "Task Name", "operator": "any_of"} // not using array with any_of operator\n ❌ Wrong: {"columnId": "text", "compareValue": [], "operator": "contains_text"} // using empty array with contains_text operator',numbers:'Supported operators: any_of, not_any_of, greater_than, lower_than. CompareValue is a number or "$$$blank$$$" when searching for blank values\nEXAMPLES:\n ✅ Correct: {"columnId": "numbers", "compareValue": [100, 200], "operator": "any_of"} // using array with any_of for multiple numbers\n ✅ Correct: {"columnId": "numbers", "compareValue": 50, "operator": "greater_than"} // using single number with greater_than\n ❌ Wrong: {"columnId": "numbers", "compareValue": 100, "operator": "any_of"} // not using array with any_of operator\n ❌ Wrong: {"columnId": "numbers", "compareValue": ["50"], "operator": "greater_than"} // using array with single value operator',name:'Supported operators: "contains_text", "not_contains_text". CompareValue can be full or partial text\nEXAMPLES:\n ✅ Correct: {"columnId": "name", "compareValue": "marketing campaign", "operator": "contains_text"} // using string with contains_text\n ✅ Correct: {"columnId": "name", "compareValue": "marketing campaign", "operator": "not_contains_text"} // using string with not_contains_text',status:'Supported operators: any_of, not_any_of, contains_terms. CompareValue should be either:\n - id of label from column settings - when used with any_of, not_any_of operators\n - label\'s text - when use with contains_terms\nEXAMPLES:\n ✅ Correct: {"columnId": "status", "compareValue": [0, 1], "operator": "any_of"} // Using id values\n ✅ Correct: {"columnId": "status", "compareValue": "Done", "operator": "contains_terms"} // Using label text\n ❌ Wrong: {"columnId": "status", "compareValue": "Done", "operator": "any_of"} // Using label text with wrong operator\n ❌ Wrong: {"columnId": "status", "compareValue": [0, 1], "operator": "contains_terms"} // Using id with wrong operator',checkbox:'Supported operators: is_empty, is_not_empty. Compare value must be an empty array\nEXAMPLES:\n ✅ Correct: {"columnId": "column_id", "compareValue": [], "operator": "is_empty"} // using empty array with is_empty operator\n ❌ Wrong: {"columnId": "column_id", "compareValue": null, "operator": "is_empty"} // not using empty array with is_empty operator',people:'Supported operators: any_of, not_any_of, is_empty, is_not_empty. **CRITICAL**: CompareValue MUST be in one of following:\n - "assigned_to_me" - when searching for current user\n - "person-123" - when searching for specific person with id 123\n - "team-456" - when searching for specific team with id 456\n - empty array when using is_empty, is_not_empty operators\nEXAMPLES: \n ❌ Wrong: {"columnId": "column_id", "compareValue": ["person—123"], "operator": "any_of"} // Using long hyphen \'—\' instead of short hyphen \'-\'\n ✅ Correct: {"columnId": "column_id", "compareValue": [], "operator": "is_empty"} // using empty array with is_empty operator\n ✅ Correct: {"columnId": "column_id", "compareValue": ["person-80120403"], "operator": "any_of"} // using person prefix\n ✅ Correct: {"columnId": "column_id", "compareValue": ["team-9000"], "operator": "any_of"} // using team prefix\n ✅ Correct: {"columnId": "column_id", "compareValue": ["assigned_to_me"], "operator": "any_of"} // using assigned_to_me value\n ❌ Wrong: {"columnId": "column_id", "compareValue": ["80120403"], "operator": "is_empty"} // using id with is_empty operator\n ❌ Wrong: {"columnId": "column_id", "compareValue": ["80120403"], "operator": "any_of"} // not using person or team prefix'};function Dm(e){const t=Nm[e];return t?`# Filtering Guidelines\n\n## [IMPORTANT] Operator Guidelines\nSpecific operators expect specific compareValue types:\n- CompareValue MUST BE SENT AS AN ARRAY WHEN USED WITH any_of, not_any_of, between operators\n- CompareValue MUST BE SENT AS AN EMPTY ARRAY WHEN USED WITH is_empty, is_not_empty\n- CompareValue MUST BE SENT AS EITHER SINGLE STRING OR SINGLE NUMBER WHEN USED WITH greater_than, greater_than_or_equals, lower_than, lower_than_or_equal\n- CompareValue MUST BE SENT AS SINGLE STRING WHEN USED WITH contains_terms, not_contains_text, contains_text, starts_with, ends_with operators\n\n## [IMPORTANT] Column type: ${e}\n${t}\n\n## [IMPORTANT] Sub Items Columns MUST NOT BE USED FOR FILTERING.\n`:null}const Om={columnType:n.z.nativeEnum($c).describe('The column type to retrieve information for (e.g., "text", "status", "date", "numbers")'),fetchMode:n.z.nativeEnum(Dp).optional().default(Dp.Schema).describe(`fetchMode "${Dp.Schema}": JSON settings schema only (GraphQL). fetchMode "${Dp.Guidelines}": guidelines.filter and guidelines.aggregation only — no GraphQL round-trip.`)};const km={random_string:n.z.string().describe("Dummy parameter for no-parameter tools").optional(),operationType:n.z.enum(["read","write"]).describe('Type of operation: "read" for queries, "write" for mutations').optional()};const Cm={typeName:n.z.string().describe("The name of the GraphQL type to get details for")};const Rm=Fd`
1443
1465
  fragment UserDetails on User {
1444
1466
  # Basic User Information
1445
1467
  id
@@ -1470,31 +1492,31 @@
1470
1492
  time_zone_identifier
1471
1493
  utc_hours_diff
1472
1494
  }
1473
- `,Rm=Fd`
1495
+ `,$m=Fd`
1474
1496
  fragment UserTeamMembership on Team {
1475
1497
  id
1476
1498
  name
1477
1499
  is_guest
1478
1500
  picture_url
1479
1501
  }
1480
- `,$m=Fd`
1502
+ `,xm=Fd`
1481
1503
  fragment TeamBasicInfo on Team {
1482
1504
  id
1483
1505
  name
1484
1506
  }
1485
- `,xm=Fd`
1507
+ `,Lm=Fd`
1486
1508
  fragment TeamExtendedInfo on Team {
1487
1509
  ...TeamBasicInfo
1488
1510
  is_guest
1489
1511
  picture_url
1490
1512
  }
1491
- `,Lm=Fd`
1513
+ `,Um=Fd`
1492
1514
  fragment TeamOwner on User {
1493
1515
  id
1494
1516
  name
1495
1517
  email
1496
1518
  }
1497
- `,Um=Fd`
1519
+ `,Pm=Fd`
1498
1520
  fragment TeamMember on User {
1499
1521
  id
1500
1522
  name
@@ -1514,7 +1536,7 @@
1514
1536
  time_zone_identifier
1515
1537
  utc_hours_diff
1516
1538
  }
1517
- `,Pm=Fd`
1539
+ `,Fm=Fd`
1518
1540
  fragment TeamMemberSimplified on User {
1519
1541
  id
1520
1542
  name
@@ -1522,15 +1544,15 @@
1522
1544
  title
1523
1545
  kind
1524
1546
  }
1525
- `,Fm=Fd`
1547
+ `,Vm=Fd`
1526
1548
  fragment UserTeamMembershipSimplified on Team {
1527
1549
  id
1528
1550
  name
1529
1551
  is_guest
1530
1552
  }
1531
- `,Vm=Fd`
1532
- ${Cm}
1553
+ `,Mm=Fd`
1533
1554
  ${Rm}
1555
+ ${$m}
1534
1556
 
1535
1557
  query listUsersWithTeams($userIds: [ID!], $limit: Int = 1000) {
1536
1558
  users(ids: $userIds, limit: $limit) {
@@ -1542,21 +1564,21 @@
1542
1564
  }
1543
1565
  }
1544
1566
  }
1545
- `,Mm=Fd`
1546
- ${Cm}
1567
+ `,Bm=Fd`
1568
+ ${Rm}
1547
1569
 
1548
1570
  query listUsersOnly($userIds: [ID!], $limit: Int = 1000) {
1549
1571
  users(ids: $userIds, limit: $limit) {
1550
1572
  ...UserDetails
1551
1573
  }
1552
1574
  }
1553
- `,Bm=Fd`
1554
- ${Cm}
1555
- ${Fm}
1556
- ${xm}
1557
- ${$m}
1575
+ `,zm=Fd`
1576
+ ${Rm}
1577
+ ${Vm}
1558
1578
  ${Lm}
1559
- ${Pm}
1579
+ ${xm}
1580
+ ${Um}
1581
+ ${Fm}
1560
1582
 
1561
1583
  query listUsersAndTeams($userIds: [ID!], $teamIds: [ID!], $limit: Int = 1000) {
1562
1584
  users(ids: $userIds, limit: $limit) {
@@ -1582,19 +1604,19 @@
1582
1604
  }
1583
1605
  }
1584
1606
  }
1585
- `,zm=Fd`
1586
- ${$m}
1607
+ `,jm=Fd`
1608
+ ${xm}
1587
1609
 
1588
1610
  query listTeamsOnly($teamIds: [ID!]) {
1589
1611
  teams(ids: $teamIds) {
1590
1612
  ...TeamBasicInfo
1591
1613
  }
1592
1614
  }
1593
- `,jm=Fd`
1594
- ${xm}
1595
- ${$m}
1615
+ `,qm=Fd`
1596
1616
  ${Lm}
1617
+ ${xm}
1597
1618
  ${Um}
1619
+ ${Pm}
1598
1620
 
1599
1621
  query listTeamsWithMembers($teamIds: [ID!]) {
1600
1622
  teams(ids: $teamIds) {
@@ -1611,9 +1633,9 @@
1611
1633
  }
1612
1634
  }
1613
1635
  }
1614
- `,qm=Fd`
1615
- ${Cm}
1636
+ `,Gm=Fd`
1616
1637
  ${Rm}
1638
+ ${$m}
1617
1639
 
1618
1640
  query getUserByName($name: String) {
1619
1641
  users(name: $name) {
@@ -1625,7 +1647,7 @@
1625
1647
  }
1626
1648
  }
1627
1649
  }
1628
- `,Gm=Fd`
1650
+ `,Hm=Fd`
1629
1651
  query getCurrentUser {
1630
1652
  me {
1631
1653
  id
@@ -1638,7 +1660,7 @@
1638
1660
  }
1639
1661
  }
1640
1662
  }
1641
- `;const Hm=[["is_email_confirmed","Email Confirmed"],["became_active_at","Became Active At"],["last_activity","Last Activity"],["location","Location"],["mobile_phone","Mobile Phone"],["phone","Phone"],["time_zone_identifier","Timezone"],["utc_hours_diff","UTC Hours Diff"]];function Wm(e,t=""){const a=Hm.filter((([t])=>{const a=e[t];return null!=a})).map((([a,i])=>`${t}${i}: ${e[a]}`)),i=e.photo_url?.thumb;return i&&a.push(`${t}Photo Thumb: ${i}`),a}const Ym=e=>{const t=[];return"users"in e&&e.users&&e.users.length>0&&(t.push("Users:"),e.users.forEach((e=>{e&&(t.push(` ID: ${e.id}`),t.push(` Name: ${e.name}`),t.push(` Email: ${e.email}`),t.push(` Title: ${e.title||"N/A"}`),t.push(` Status: ${e.status||"N/A"}`),t.push(` Kind: ${e.kind||"N/A"}`),t.push(...Wm(e," ")),e.teams&&e.teams.length>0&&(t.push(" Teams:"),e.teams.forEach((e=>{e&&t.push(` - ID: ${e.id}, Name: ${e.name}, Guest Team: ${e.is_guest||!1}, Picture URL: ${e.picture_url||"N/A"}`)}))),t.push(""))}))),"teams"in e&&e.teams&&e.teams.length>0&&(t.push("Teams:"),e.teams.forEach((e=>{e&&(t.push(` ID: ${e.id}`),t.push(` Name: ${e.name}`),function(e){return"owners"in e}(e)&&(t.push(` Guest Team: ${e.is_guest||!1}`),t.push(` Picture URL: ${e.picture_url||"N/A"}`),e.owners&&e.owners.length>0&&(t.push(" Owners:"),e.owners.forEach((e=>{t.push(` - ID: ${e.id}, Name: ${e.name}, Email: ${e.email}`)}))),e.users&&e.users.length>0&&(t.push(" Members:"),e.users.forEach((e=>{if(e){const a=[`ID: ${e.id}`,`Name: ${e.name}`,`Email: ${e.email}`,`Title: ${e.title||"N/A"}`,`Kind: ${e.kind||"N/A"}`,...Wm(e)];t.push(` - ${a.join(", ")}`)}})))),t.push(""))}))),0===t.length?"No users or teams found with the specified filters.":t.join("\n").trim()},Km=500,Qm=500,Jm=1e3,Xm=Fd`
1663
+ `;const Wm=[["is_email_confirmed","Email Confirmed"],["became_active_at","Became Active At"],["last_activity","Last Activity"],["location","Location"],["mobile_phone","Mobile Phone"],["phone","Phone"],["time_zone_identifier","Timezone"],["utc_hours_diff","UTC Hours Diff"]];function Ym(e,t=""){const a=Wm.filter((([t])=>{const a=e[t];return null!=a})).map((([a,i])=>`${t}${i}: ${e[a]}`)),i=e.photo_url?.thumb;return i&&a.push(`${t}Photo Thumb: ${i}`),a}const Km=e=>{const t=[];return"users"in e&&e.users&&e.users.length>0&&(t.push("Users:"),e.users.forEach((e=>{e&&(t.push(` ID: ${e.id}`),t.push(` Name: ${e.name}`),t.push(` Email: ${e.email}`),t.push(` Title: ${e.title||"N/A"}`),t.push(` Status: ${e.status||"N/A"}`),t.push(` Kind: ${e.kind||"N/A"}`),t.push(...Ym(e," ")),e.teams&&e.teams.length>0&&(t.push(" Teams:"),e.teams.forEach((e=>{e&&t.push(` - ID: ${e.id}, Name: ${e.name}, Guest Team: ${e.is_guest||!1}, Picture URL: ${e.picture_url||"N/A"}`)}))),t.push(""))}))),"teams"in e&&e.teams&&e.teams.length>0&&(t.push("Teams:"),e.teams.forEach((e=>{e&&(t.push(` ID: ${e.id}`),t.push(` Name: ${e.name}`),function(e){return"owners"in e}(e)&&(t.push(` Guest Team: ${e.is_guest||!1}`),t.push(` Picture URL: ${e.picture_url||"N/A"}`),e.owners&&e.owners.length>0&&(t.push(" Owners:"),e.owners.forEach((e=>{t.push(` - ID: ${e.id}, Name: ${e.name}, Email: ${e.email}`)}))),e.users&&e.users.length>0&&(t.push(" Members:"),e.users.forEach((e=>{if(e){const a=[`ID: ${e.id}`,`Name: ${e.name}`,`Email: ${e.email}`,`Title: ${e.title||"N/A"}`,`Kind: ${e.kind||"N/A"}`,...Ym(e)];t.push(` - ${a.join(", ")}`)}})))),t.push(""))}))),0===t.length?"No users or teams found with the specified filters.":t.join("\n").trim()},Qm=500,Jm=500,Xm=1e3,Zm=Fd`
1642
1664
  query getAccountSlug {
1643
1665
  me {
1644
1666
  account {
@@ -1646,11 +1668,11 @@
1646
1668
  }
1647
1669
  }
1648
1670
  }
1649
- `;async function Zm(e){const t=await e.request(Xm);return t.me?.account?.slug??null}function eu(e,t){return`https://${e}.monday.com/workspaces/${t}`}const tu={userIds:n.z.array(n.z.string()).max(Km).optional().describe("Specific user IDs to fetch.[IMPORTANT] ALWAYS use when you have user IDs in context. PREFER over general search. RETURNS: user profiles including team memberships"),teamIds:n.z.array(n.z.string()).max(Qm).optional().describe("Specific team IDs to fetch.[IMPORTANT] ALWAYS use when you have team IDs in context, NEVER fetch all teams if specific IDs are available.\n RETURNS: Team details with owners and optional member data."),name:n.z.string().optional().describe("Name-based USER search ONLY. STANDALONE parameter - cannot be combined with others. PREFERRED method for finding users when you know names. Performs fuzzy matching.\n CRITICAL: This parameter searches for USERS ONLY, NOT teams. To search for teams, use teamIds parameter instead."),getMe:n.z.boolean().optional().describe('[TOP PRIORITY] Use ALWAYS when requesting current user information. Examples of when it should be used: ["get my user" or "get my teams"].\n This parameter CONFLICTS with all others. '),includeTeams:n.z.boolean().optional().describe("[AVOID] This fetches all teams in the account. To fetch a specific user's teams just fetch that user by id and you will get their team memberships."),teamsOnly:n.z.boolean().optional().describe("Fetch only teams, no users returned. Combine with includeTeamMembers for member details."),includeTeamMembers:n.z.boolean().optional().describe("Set to true only when you need additional member details for teams other than names and ids.")};const au={itemId:n.z.number().describe("The id of the item to which the update will be added"),groupId:n.z.string().describe("The id of the group to which the item will be moved")};const iu=Fd`
1671
+ `;async function eu(e){const t=await e.request(Zm);return t.me?.account?.slug??null}function tu(e,t){return`https://${e}.monday.com/workspaces/${t}`}const au={userIds:n.z.array(n.z.string()).max(Qm).optional().describe("Specific user IDs to fetch.[IMPORTANT] ALWAYS use when you have user IDs in context. PREFER over general search. RETURNS: user profiles including team memberships"),teamIds:n.z.array(n.z.string()).max(Jm).optional().describe("Specific team IDs to fetch.[IMPORTANT] ALWAYS use when you have team IDs in context, NEVER fetch all teams if specific IDs are available.\n RETURNS: Team details with owners and optional member data."),name:n.z.string().optional().describe("Name-based USER search ONLY. STANDALONE parameter - cannot be combined with others. PREFERRED method for finding users when you know names. Performs fuzzy matching.\n CRITICAL: This parameter searches for USERS ONLY, NOT teams. To search for teams, use teamIds parameter instead."),getMe:n.z.boolean().optional().describe('[TOP PRIORITY] Use ALWAYS when requesting current user information. Examples of when it should be used: ["get my user" or "get my teams"].\n This parameter CONFLICTS with all others. '),includeTeams:n.z.boolean().optional().describe("[AVOID] This fetches all teams in the account. To fetch a specific user's teams just fetch that user by id and you will get their team memberships."),teamsOnly:n.z.boolean().optional().describe("Fetch only teams, no users returned. Combine with includeTeamMembers for member details."),includeTeamMembers:n.z.boolean().optional().describe("Set to true only when you need additional member details for teams other than names and ids.")};const iu={itemId:n.z.number().describe("The id of the item to which the update will be added"),groupId:n.z.string().describe("The id of the group to which the item will be moved")};const nu=Fd`
1650
1672
  mutation updateDocName($docId: ID!, $name: String!) {
1651
1673
  update_doc_name(docId: $docId, name: $name)
1652
1674
  }
1653
- `,nu=Fd`
1675
+ `,ou=Fd`
1654
1676
  mutation addContentToDocFromMarkdown($docId: ID!, $markdown: String!, $afterBlockId: String) {
1655
1677
  add_content_to_doc_from_markdown(docId: $docId, markdown: $markdown, afterBlockId: $afterBlockId) {
1656
1678
  success
@@ -1658,13 +1680,13 @@
1658
1680
  error
1659
1681
  }
1660
1682
  }
1661
- `,ou=Fd`
1683
+ `,ru=Fd`
1662
1684
  query getDocIdByObjectId($objectId: [ID!]) {
1663
1685
  docs(object_ids: $objectId) {
1664
1686
  id
1665
1687
  }
1666
1688
  }
1667
- `,ru=Fd`
1689
+ `,su=Fd`
1668
1690
  mutation updateDocBlock($blockId: String!, $content: JSON!) {
1669
1691
  update_doc_block(block_id: $blockId, content: $content) {
1670
1692
  id
@@ -1672,20 +1694,20 @@
1672
1694
  created_at
1673
1695
  }
1674
1696
  }
1675
- `,su=Fd`
1697
+ `,du=Fd`
1676
1698
  mutation deleteDocBlock($blockId: String!) {
1677
1699
  delete_doc_block(block_id: $blockId) {
1678
1700
  id
1679
1701
  }
1680
1702
  }
1681
- `,du=Fd`
1703
+ `,pu=Fd`
1682
1704
  query getDocObjectIdByDocId($docId: [ID!]) {
1683
1705
  docs(ids: $docId) {
1684
1706
  id
1685
1707
  object_id
1686
1708
  }
1687
1709
  }
1688
- `,pu=Fd`
1710
+ `,lu=Fd`
1689
1711
  query getDocBoardItem($boardId: ID!) {
1690
1712
  boards(ids: [$boardId]) {
1691
1713
  items_page(limit: 1) {
@@ -1695,7 +1717,7 @@
1695
1717
  }
1696
1718
  }
1697
1719
  }
1698
- `,lu=Fd`
1720
+ `,cu=Fd`
1699
1721
  query getDocBlockContent($docId: [ID!]) {
1700
1722
  docs(ids: $docId) {
1701
1723
  blocks {
@@ -1705,7 +1727,7 @@
1705
1727
  }
1706
1728
  }
1707
1729
  }
1708
- `,cu=Fd`
1730
+ `,mu=Fd`
1709
1731
  mutation createDocComment($itemId: ID!, $body: String!, $parentId: ID, $mentionsList: [UpdateMention]) {
1710
1732
  create_update(body: $body, item_id: $itemId, parent_id: $parentId, mentions_list: $mentionsList) {
1711
1733
  id
@@ -1713,7 +1735,7 @@
1713
1735
  created_at
1714
1736
  }
1715
1737
  }
1716
- `,mu=Fd`
1738
+ `,uu=Fd`
1717
1739
  mutation createDocBlocks($docId: ID!, $afterBlockId: String, $blocksInput: [CreateBlockInput!]!) {
1718
1740
  create_doc_blocks(docId: $docId, afterBlockId: $afterBlockId, blocksInput: $blocksInput) {
1719
1741
  id
@@ -1781,7 +1803,7 @@
1781
1803
  }
1782
1804
  }
1783
1805
  }
1784
- `,uu="content",hu="version_history",fu=n.z.enum(["ids","object_ids","workspace_ids"]),_u={mode:n.z.enum([uu,hu]).optional().default(uu).describe('The operation mode. "content" (default) fetches documents with their markdown content. "version_history" fetches the edit history of a single document.'),type:fu.optional().describe('Query type for content mode: "ids", "object_ids", or "workspace_ids". Required when mode is "content".'),ids:n.z.array(n.z.string()).optional().describe('Array of ID values. In content mode: matches the query type (ids/object_ids/workspace_ids). In version_history mode: provide the single document object_id here (e.g., ids: ["5001466606"]).'),limit:n.z.number().optional().describe("Number of docs per page (default: 25). Only used in content mode."),order_by:n.z.nativeEnum(xo).optional().describe("Order in which to retrieve docs. Only used in content mode."),page:n.z.number().optional().describe("Page number to return (starts at 1). Only used in content mode."),include_blocks:n.z.boolean().optional().default(!1).describe("If true, includes the blocks array (block IDs, types, positions, content) in the response. Required when you plan to call update_doc. Defaults to false to reduce response size. Only used in content mode."),blocks_limit:n.z.number().optional().describe("Maximum number of blocks to return per document (default: 25). Only used in content mode when include_blocks is true."),blocks_page:n.z.number().optional().describe("Page number for block pagination, starting at 1. Omit to use the API default. Use with blocks_limit to page through documents with more than 25 blocks. Only used in content mode when include_blocks is true."),include_comments:n.z.boolean().optional().default(!1).describe("If true, fetches all comments and replies on the document. Comments are stored at the item level within the doc backing board. Defaults to false. Only used in content mode."),comments_limit:n.z.number().optional().default(50).describe("Maximum number of comments (updates) to fetch per item when include_comments is true. Defaults to 50. Only used in content mode."),version_history_limit:n.z.number().optional().describe('Maximum number of restoring points to return. Use this when the user asks for "last N changes". Only used in version_history mode.'),since:n.z.string().optional().describe('ISO 8601 date string to filter version history from (e.g., "2026-03-15T00:00:00Z"). If omitted, returns the full history. Only used in version_history mode.'),until:n.z.string().optional().describe('ISO 8601 date string to filter version history until (e.g., "2026-03-16T23:59:59Z"). Defaults to now. Only used in version_history mode.'),include_diff:n.z.boolean().optional().default(!1).describe("If true, fetches content diffs between consecutive restoring points. May be slower due to additional API calls. Only used in version_history mode.")};const gu={workspace_id:n.z.number().describe("The ID of the workspace to get information for")};const bu=Fd`
1806
+ `,hu="content",fu="version_history",_u=n.z.enum(["ids","object_ids","workspace_ids"]),gu={mode:n.z.enum([hu,fu]).optional().default(hu).describe('The operation mode. "content" (default) fetches documents with their markdown content. "version_history" fetches the edit history of a single document.'),type:_u.optional().describe('Query type for content mode: "ids", "object_ids", or "workspace_ids". Required when mode is "content".'),ids:n.z.array(n.z.string()).optional().describe('Array of ID values. In content mode: matches the query type (ids/object_ids/workspace_ids). In version_history mode: provide the single document object_id here (e.g., ids: ["5001466606"]).'),limit:n.z.number().optional().describe("Number of docs per page (default: 25). Only used in content mode."),order_by:n.z.nativeEnum(xo).optional().describe("Order in which to retrieve docs. Only used in content mode."),page:n.z.number().optional().describe("Page number to return (starts at 1). Only used in content mode."),include_blocks:n.z.boolean().optional().default(!1).describe("If true, includes the blocks array (block IDs, types, positions, content) in the response. Required when you plan to call update_doc. Defaults to false to reduce response size. Only used in content mode."),blocks_limit:n.z.number().optional().describe("Maximum number of blocks to return per document (default: 25). Only used in content mode when include_blocks is true."),blocks_page:n.z.number().optional().describe("Page number for block pagination, starting at 1. Omit to use the API default. Use with blocks_limit to page through documents with more than 25 blocks. Only used in content mode when include_blocks is true."),include_comments:n.z.boolean().optional().default(!1).describe("If true, fetches all comments and replies on the document. Comments are stored at the item level within the doc backing board. Defaults to false. Only used in content mode."),comments_limit:n.z.number().optional().default(50).describe("Maximum number of comments (updates) to fetch per item when include_comments is true. Defaults to 50. Only used in content mode."),version_history_limit:n.z.number().optional().describe('Maximum number of restoring points to return. Use this when the user asks for "last N changes". Only used in version_history mode.'),since:n.z.string().optional().describe('ISO 8601 date string to filter version history from (e.g., "2026-03-15T00:00:00Z"). If omitted, returns the full history. Only used in version_history mode.'),until:n.z.string().optional().describe('ISO 8601 date string to filter version history until (e.g., "2026-03-16T23:59:59Z"). Defaults to now. Only used in version_history mode.'),include_diff:n.z.boolean().optional().default(!1).describe("If true, fetches content diffs between consecutive restoring points. May be slower due to additional API calls. Only used in version_history mode.")};const bu={workspace_id:n.z.number().describe("The ID of the workspace to get information for")};const vu=Fd`
1785
1807
  query listWorkspaces($limit: Int!, $page: Int!, $membershipKind: WorkspaceMembershipKind!) {
1786
1808
  workspaces(limit: $limit, page: $page, membership_kind: $membershipKind) {
1787
1809
  id
@@ -1789,7 +1811,7 @@
1789
1811
  description
1790
1812
  }
1791
1813
  }
1792
- `;function vu(e){const t=e.workspaces?.filter((e=>null!==e));return t||[]}function yu(e){return Array.isArray(e)&&e.length>0}const Iu={limit:n.z.number().min(1).max(100).default(100).describe("Number of workspaces to return. Default is (100), lower for a smaller response size"),page:n.z.number().min(1).default(1).describe("Page number to return. Default is 1.")};const wu=Fd`
1814
+ `;function yu(e){const t=e.workspaces?.filter((e=>null!==e));return t||[]}function Iu(e){return Array.isArray(e)&&e.length>0}const wu={limit:n.z.number().min(1).max(100).default(100).describe("Number of workspaces to return. Default is (100), lower for a smaller response size"),page:n.z.number().min(1).default(1).describe("Page number to return. Default is 1.")};const Tu=Fd`
1793
1815
  query getItemBoard($itemId: ID!) {
1794
1816
  items(ids: [$itemId]) {
1795
1817
  id
@@ -1802,7 +1824,7 @@
1802
1824
  }
1803
1825
  }
1804
1826
  }
1805
- `,Tu=Fd`
1827
+ `,Eu=Fd`
1806
1828
  mutation createDoc($location: CreateDocInput!, $docOwnerIds: [ID!]) {
1807
1829
  create_doc(location: $location, doc_owner_ids: $docOwnerIds) {
1808
1830
  id
@@ -1811,7 +1833,7 @@
1811
1833
  name
1812
1834
  }
1813
1835
  }
1814
- `,Eu=Fd`
1836
+ `,Au=Fd`
1815
1837
  mutation addContentToDocFromMarkdown($docId: ID!, $markdown: String!, $afterBlockId: String) {
1816
1838
  add_content_to_doc_from_markdown(docId: $docId, markdown: $markdown, afterBlockId: $afterBlockId) {
1817
1839
  success
@@ -1819,11 +1841,11 @@
1819
1841
  error
1820
1842
  }
1821
1843
  }
1822
- `,Au=Fd`
1844
+ `,Su=Fd`
1823
1845
  mutation updateDocName($docId: ID!, $name: String!) {
1824
1846
  update_doc_name(docId: $docId, name: $name)
1825
1847
  }
1826
- `,Su=n.z.enum(["workspace","item"]),Nu=n.z.discriminatedUnion("type",[n.z.object({type:n.z.literal(Su.enum.workspace).describe("Create document in workspace"),workspace_id:n.z.number().describe("Workspace ID under which to create the new document"),doc_kind:n.z.nativeEnum(Wn).optional().describe("Document kind (public/private/share). Defaults to public."),folder_id:n.z.number().optional().describe("Optional folder ID to place the document inside a specific folder")}),n.z.object({type:n.z.literal(Su.enum.item).describe("Create document attached to item"),item_id:n.z.number().describe("Item ID to attach the new document to"),column_id:n.z.string().optional().describe("ID of an existing 'doc' column on the board which contains the item. If not provided, the tool will create a new doc column automatically when creating a doc on an item.")})]),Du={doc_name:n.z.string().describe("Name for the new document."),markdown:n.z.string().describe("Markdown content that will be imported into the newly created document as blocks."),location:n.z.enum(["workspace","item"]).describe("Location where the document should be created - either in a workspace or attached to an item"),docOwnerIds:n.z.array(n.z.string()).min(1).optional().describe("Optional list of user IDs to set as document owners at creation time. Use this to add the agent owner so they retain access to the document. Ownership is set inside the creation mutation itself, bypassing the permission checks that would block a subsequent add_subscribers_to_object call."),workspace_id:n.z.number().optional().describe('[REQUIRED - use only when location="workspace"] Workspace ID under which to create the new document'),doc_kind:n.z.nativeEnum(Wn).optional().describe('[OPTIONAL - use only when location="workspace"] Document kind (public/private/share). Defaults to public.'),folder_id:n.z.number().optional().describe('[OPTIONAL - use only when location="workspace"] Optional folder ID to place the document inside a specific folder'),item_id:n.z.number().optional().describe('[REQUIRED - use only when location="item"] Item ID to attach the new document to'),column_id:n.z.string().optional().describe('[OPTIONAL - use only when location="item"] ID of an existing "doc" column on the board which contains the item. If not provided, the tool will create a new doc column automatically when creating a doc on an item.')};const Ou=Fd`
1848
+ `,Nu=n.z.enum(["workspace","item"]),Du=n.z.discriminatedUnion("type",[n.z.object({type:n.z.literal(Nu.enum.workspace).describe("Create document in workspace"),workspace_id:n.z.number().describe("Workspace ID under which to create the new document"),doc_kind:n.z.nativeEnum(Wn).optional().describe("Document kind (public/private/share). Defaults to public."),folder_id:n.z.number().optional().describe("Optional folder ID to place the document inside a specific folder")}),n.z.object({type:n.z.literal(Nu.enum.item).describe("Create document attached to item"),item_id:n.z.number().describe("Item ID to attach the new document to"),column_id:n.z.string().optional().describe("ID of an existing 'doc' column on the board which contains the item. If not provided, the tool will create a new doc column automatically when creating a doc on an item.")})]),Ou={doc_name:n.z.string().describe("Name for the new document."),markdown:n.z.string().describe("Markdown content that will be imported into the newly created document as blocks."),location:n.z.enum(["workspace","item"]).describe("Location where the document should be created - either in a workspace or attached to an item"),docOwnerIds:n.z.array(n.z.string()).min(1).optional().describe("Optional list of user IDs to set as document owners at creation time. Use this to add the agent owner so they retain access to the document. Ownership is set inside the creation mutation itself, bypassing the permission checks that would block a subsequent add_subscribers_to_object call."),workspace_id:n.z.number().optional().describe('[REQUIRED - use only when location="workspace"] Workspace ID under which to create the new document'),doc_kind:n.z.nativeEnum(Wn).optional().describe('[OPTIONAL - use only when location="workspace"] Document kind (public/private/share). Defaults to public.'),folder_id:n.z.number().optional().describe('[OPTIONAL - use only when location="workspace"] Optional folder ID to place the document inside a specific folder'),item_id:n.z.number().optional().describe('[REQUIRED - use only when location="item"] Item ID to attach the new document to'),column_id:n.z.string().optional().describe('[OPTIONAL - use only when location="item"] ID of an existing "doc" column on the board which contains the item. If not provided, the tool will create a new doc column automatically when creating a doc on an item.')};const ku=Fd`
1827
1849
  mutation addContentToDocFromMarkdown($docId: ID!, $markdown: String!, $afterBlockId: String) {
1828
1850
  add_content_to_doc_from_markdown(docId: $docId, markdown: $markdown, afterBlockId: $afterBlockId) {
1829
1851
  success
@@ -1831,7 +1853,7 @@
1831
1853
  error
1832
1854
  }
1833
1855
  }
1834
- `,ku=Fd`
1856
+ `,Cu=Fd`
1835
1857
  query getDocByObjectId($objectId: [ID!]) {
1836
1858
  docs(object_ids: $objectId) {
1837
1859
  id
@@ -1839,7 +1861,7 @@
1839
1861
  url
1840
1862
  }
1841
1863
  }
1842
- `,Cu=Fd`
1864
+ `,Ru=Fd`
1843
1865
  query getDocById($docId: [ID!]) {
1844
1866
  docs(ids: $docId) {
1845
1867
  id
@@ -1847,7 +1869,7 @@
1847
1869
  url
1848
1870
  }
1849
1871
  }
1850
- `,Ru={doc_id:n.z.string().min(1).optional().describe("The document ID (the id field returned by read_docs). Provide this OR object_id. Takes priority if both are provided."),object_id:n.z.string().min(1).optional().describe("The document object ID (the object_id field from read_docs, also visible in the document URL). Will be resolved to a doc_id. Provide this OR doc_id."),markdown:n.z.string().describe("Markdown content to add to the document."),after_block_id:n.z.string().optional().describe("Block ID after which to insert the new content. If omitted, content is appended at the end. To insert at the beginning, pass the first block ID from read_docs. Block IDs can be obtained from read_docs or from a previous add_content_to_doc response.")};function $u(e){if(e)return e}function xu(e){if(e)return e}function Lu(e){if(e)return{bold:e.bold,italic:e.italic,underline:e.underline,strike:e.strike,code:e.code,link:e.link,color:e.color,background:e.background}}function Uu(e){return e.map((e=>{if("mention"in e.insert){const t=Number(e.insert.mention.id);if(Number.isNaN(t))throw new Error(`Invalid mention id: "${e.insert.mention.id}" is not a valid numeric ID`);return{insert:{blot:{mention:{id:String(t),type:e.insert.mention.type}}}}}return"column_value"in e.insert?{insert:{blot:{column_value:{item_id:String(e.insert.column_value.item_id),column_id:e.insert.column_value.column_id}}}}:{insert:{text:e.insert.text},attributes:Lu(e.attributes)}}))}function Pu(e){return e.map((e=>{if("mention"in e.insert){const t=Number(e.insert.mention.id);if(Number.isNaN(t))throw new Error(`Invalid mention id: "${e.insert.mention.id}" is not a valid numeric ID`);return{insert:{mention:{id:t,type:e.insert.mention.type}}}}return"column_value"in e.insert?{insert:{macro:{type:"COLUMN_VALUE",macroId:t.randomUUID(),macroData:{itemId:Number(e.insert.column_value.item_id),columnId:e.insert.column_value.column_id}}}}:{insert:e.insert.text,attributes:Lu(e.attributes)}}))}function Fu(e,t){const a=e.attributes||{},i=a.comments||[];return{...e,attributes:{...a,comments:[...i,t]}}}function Vu(e,t,a,i){const n=a+i;let o=0;const r=[];for(const i of e){const e=i.insert;if(null==e)throw new Error(`Unexpected delta op at position ${o}: op has no 'insert' field. Block content may be from an unsupported block type.`);const s=o,d=s+("string"==typeof e?e.length:1),p=Math.max(s,a),l=Math.min(d,n);p>=l?r.push(i):"string"!=typeof e?r.push(Fu(i,t)):(p>s&&r.push({...i,insert:e.slice(0,p-s)}),r.push(Fu({...i,insert:e.slice(p-s,l-s)},t)),l<d&&r.push({...i,insert:e.slice(l-s)})),o=d}return r}const Mu=n.z.object({bold:n.z.boolean().optional(),italic:n.z.boolean().optional(),underline:n.z.boolean().optional(),strike:n.z.boolean().optional(),code:n.z.boolean().optional(),link:n.z.string().optional(),color:n.z.string().optional(),background:n.z.string().optional()}).optional(),Bu=n.z.object({mention:n.z.object({id:n.z.union([n.z.string(),n.z.number()]).describe("User, doc, or board ID. Get user IDs from list_users_and_teams."),type:n.z.enum(["USER","DOC","BOARD"]).default("USER").describe("Mention type. USER is most common.")}).describe("Mention blot — tags a user, doc, or board inline. Do not set attributes on mention ops.")}),zu=n.z.object({column_value:n.z.object({item_id:n.z.union([n.z.string(),n.z.number()]).describe("The board item ID."),column_id:n.z.string().describe('The column ID (e.g. "status", "date4"). Get column IDs from get_board_schema.')}).describe("Column value blot — embeds a live board column value inline in the doc.")}),ju=n.z.object({insert:n.z.union([n.z.string().transform((e=>({text:e}))),n.z.object({text:n.z.string()}),Bu,zu]).describe('Content to insert. Use {text: "..."} for plain text, {mention: {id, type}} to tag a user/doc/board, or {column_value: {item_id, column_id}} to embed a live column value. The last operation in the array must be {text: "\\n"}.'),attributes:Mu.describe("Optional formatting: bold, italic, underline, strike, code, link, color, background. Not applicable to mention or column_value ops.")}),qu=n.z.object({block_content_type:n.z.literal("text"),delta_format:n.z.array(ju).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),alignment:n.z.enum(["LEFT","RIGHT","CENTER"]).optional(),direction:n.z.enum(["LTR","RTL"]).optional()}),Gu=n.z.object({block_content_type:n.z.literal("code"),delta_format:n.z.array(ju).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),language:n.z.string().optional().describe('Programming language (e.g. "javascript", "python").')}),Hu=n.z.object({block_content_type:n.z.literal("list_item"),delta_format:n.z.array(ju).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),checked:n.z.boolean().optional().describe("Check state for CHECK_LIST items."),indentation:n.z.number().int().min(0).optional().describe("Nesting level (0 = no indent).")}),Wu=n.z.discriminatedUnion("block_content_type",[qu,Gu,Hu]),Yu=n.z.object({block_type:n.z.literal("text"),text_block_type:n.z.enum(["NORMAL_TEXT","LARGE_TITLE","MEDIUM_TITLE","SMALL_TITLE","QUOTE"]).optional().describe("Block subtype. LARGE_TITLE=H1, MEDIUM_TITLE=H2, SMALL_TITLE=H3."),delta_format:n.z.array(ju).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),alignment:n.z.enum(["LEFT","RIGHT","CENTER"]).optional(),direction:n.z.enum(["LTR","RTL"]).optional()}),Ku=n.z.object({block_type:n.z.literal("list_item"),list_block_type:n.z.enum(["BULLETED_LIST","NUMBERED_LIST","CHECK_LIST"]).optional().describe("List type. Defaults to BULLETED_LIST."),delta_format:n.z.array(ju).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),indentation:n.z.number().int().min(0).optional().describe("Nesting level (0 = no indent).")}),Qu=n.z.object({block_type:n.z.literal("code"),delta_format:n.z.array(ju).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),language:n.z.string().optional().describe('Programming language (e.g. "javascript", "python").')}),Ju=n.z.object({block_type:n.z.literal("divider")}),Xu=n.z.object({block_type:n.z.literal("page_break")}),Zu=n.z.object({block_type:n.z.literal("image"),public_url:n.z.string().url().optional().describe("Publicly accessible image URL. Provide either public_url or asset_id."),asset_id:n.z.union([n.z.number().int(),n.z.string().regex(/^\d+$/).transform(Number)]).optional().describe("monday.com asset ID for the image. The image block will reference the asset directly. Provide either public_url or asset_id."),width:n.z.number().int().min(1).optional().describe("Width in pixels.")}),eh=n.z.object({block_type:n.z.literal("video"),raw_url:n.z.string().url().describe("Video URL (YouTube, Vimeo, or direct video URL)."),width:n.z.number().int().min(1).optional().describe("Width in pixels.")}),th=n.z.object({block_type:n.z.literal("notice_box"),theme:n.z.enum(["INFO","TIPS","WARNING","GENERAL"]).describe("Visual style of the notice box.")}),ah=n.z.object({block_type:n.z.literal("table"),row_count:n.z.number().int().min(1).max(25).describe("Number of rows (1–25)."),column_count:n.z.number().int().min(1).max(10).describe("Number of columns (1–10)."),width:n.z.number().int().optional().describe("Table width in pixels."),column_style:n.z.array(n.z.object({width:n.z.number().int()})).optional().describe("Column widths. Array length must match column_count. Widths must sum to 100.")}),ih=n.z.object({block_type:n.z.literal("layout"),column_count:n.z.number().int().min(2).max(6).describe("Number of columns (2–6)."),column_style:n.z.array(n.z.object({width:n.z.number().int()})).optional().describe("Column widths. Array length must match column_count. Widths must sum to 100.")}),nh=n.z.discriminatedUnion("block_type",[Yu,Ku,Qu,Ju,Xu,Zu,eh,th,ah,ih]),oh=n.z.object({operation_type:n.z.literal("set_name"),name:n.z.string().min(1).describe("New document name.")}),rh=n.z.object({operation_type:n.z.literal("add_markdown_content"),markdown:n.z.string().describe("Markdown content to convert and append (or insert) as blocks."),after_block_id:n.z.string().optional().describe("Insert after this block ID. Omit to append at end. Block IDs come from read_docs.")}),sh=n.z.object({operation_type:n.z.literal("update_block"),block_id:n.z.string().describe("ID of the block to update. Get block IDs from read_docs."),content:Wu.describe("New content for the block. Use block_content_type to select: text (updates text/heading/quote content), code (updates code content), list_item (updates bullets/numbered/todo content). Cannot change block subtype — use replace_block for that.")}),dh=n.z.object({operation_type:n.z.literal("create_block"),after_block_id:n.z.string().optional().describe("Insert after this block ID. Omit to append at end. Block IDs come from read_docs."),parent_block_id:n.z.string().optional().describe("Parent block ID for nested blocks. Only works for notice_box containers — use the notice_box block ID directly. Table/layout cell nesting is NOT supported by the API. IMPORTANT: A notice_box created in the same call cannot be referenced — use a separate call first to create it, then a second call to nest content inside it."),block:nh.describe("The block to create. Use block_type to select the block type.")}),ph=n.z.object({operation_type:n.z.literal("delete_block"),block_id:n.z.string().describe("ID of the block to permanently delete. Works for all block types including BOARD, WIDGET, DOC embed, GIPHY.")}),lh=n.z.object({operation_type:n.z.literal("replace_block"),block_id:n.z.string().describe("ID of the block to delete."),after_block_id:n.z.string().optional().describe("Insert replacement after this block ID. Provide the ID of the block that precedes the deleted block."),parent_block_id:n.z.string().optional().describe("Parent block ID for the replacement block."),block:nh.describe("The new block to create in place of the deleted one.")}),ch=n.z.object({operation_type:n.z.literal("add_comment"),body:n.z.string().min(1).describe("The comment text. Use HTML tags for formatting (not markdown). Do not use @ to mention users — use mentions_list instead."),parent_update_id:n.z.number().optional().describe("The ID of an existing comment (update) to reply to. Omit to create a new top-level comment. Get comment IDs from read_docs with include_comments: true."),mentions_list:n.z.string().optional().describe('Optional JSON array of mentions: [{"id": "123", "type": "User"}, {"id": "456", "type": "Team"}]. Valid types: User, Team, Board, Project.'),block_id:n.z.union([n.z.string(),n.z.array(n.z.string()).min(1)]).optional().describe("Block ID (string) or array of block IDs to anchor the comment to. When an array is provided, the same comment highlights all specified blocks. Only works on text-content blocks (text, code, list_item, title, quote) — not on divider, table, layout, notice_box, image, video, or giphy. Get block IDs from read_docs with include_blocks: true. Omit to create a general doc-level comment. Pair with selection_from + selection_length (single block_id only) to comment on a specific text range."),selection_from:n.z.number().int().min(0).optional().describe("Start character offset (0-indexed) of the selected text within the block. Requires block_id. Omit to comment on the entire block."),selection_length:n.z.number().int().min(1).optional().describe("Number of characters in the text selection. Requires block_id and selection_from. Only works for text, code, and list_item blocks that have a delta format.")}),mh=n.z.discriminatedUnion("operation_type",[oh,rh,sh,dh,ph,lh,ch]),uh={doc_id:n.z.string().min(1).optional().describe("The document ID (the id field from read_docs). Takes priority over object_id if both are provided."),object_id:n.z.string().min(1).optional().describe("The document object ID (the object_id field from read_docs, visible in the document URL). Resolved to doc_id."),operations:n.z.array(mh).min(1).max(25).describe('Ordered list of operations to perform. Executed sequentially. Stops at first failure.\n\nOperation types:\n- set_name: Rename the document.\n- add_markdown_content: Append markdown as blocks (simplest for text/lists/tables).\n- update_block: Change content of an existing text/code/list/divider block.\n- create_block: Create a new block at a specific position (supports text, list_item, code, divider, page_break, image, video, notice_box, table, layout).\n- delete_block: Permanently remove a block. Works for ALL block types including BOARD, WIDGET, DOC embed, GIPHY.\n- replace_block: Delete a block and create a new one in its place. Use for: changing image/video source, table restructure, notice_box theme change.\n- add_comment: Create a new comment or reply on the document. Use parent_update_id to reply to an existing comment. Format text with HTML. Uses the doc\'s backing board item.\n\nWHEN TO USE WHICH:\n- Adding new text sections → add_markdown_content\n- Adding asset-based images → create_block with block_type "image" and asset_id (add_markdown_content does NOT support asset images)\n- Mixed content with asset images → alternate add_markdown_content (for text) and create_block (for each image) in sequence\n- Editing existing text block → update_block\n- Changing an image URL → replace_block (image URL is immutable after creation)\n- Changing video URL → replace_block\n- Restructuring a table → replace_block\n- BOARD/WIDGET/DOC/GIPHY blocks → delete_block only (no public API to create these)\n\nNESTING CONTENT IN CONTAINERS:\n- notice_box: Fully supported. Create the notice_box first, then in a separate call create child blocks with parent_block_id set to the notice_box ID. You cannot reference a block ID created in the same call.\n- table: Cell-level API nesting is NOT supported. To create a table with content, use add_markdown_content with a markdown table (e.g. "| H1 | H2 |\\n| --- | --- |\\n| A | B |"). This creates a pre-populated table in one shot. Empty tables created via create_block cannot have their cells populated through the API.\n- layout: Cell-level API nesting is NOT supported and there is no markdown equivalent. Layouts can only be created empty via create_block. No workaround exists to populate layout columns through the API.\nDeleting a container does NOT delete its children — delete children first for clean removal.\n\nBlock IDs are available in the blocks array returned by read_docs.')};const hh=Fd`
1872
+ `,$u={doc_id:n.z.string().min(1).optional().describe("The document ID (the id field returned by read_docs). Provide this OR object_id. Takes priority if both are provided."),object_id:n.z.string().min(1).optional().describe("The document object ID (the object_id field from read_docs, also visible in the document URL). Will be resolved to a doc_id. Provide this OR doc_id."),markdown:n.z.string().describe("Markdown content to add to the document."),after_block_id:n.z.string().optional().describe("Block ID after which to insert the new content. If omitted, content is appended at the end. To insert at the beginning, pass the first block ID from read_docs. Block IDs can be obtained from read_docs or from a previous add_content_to_doc response.")};function xu(e){if(e)return e}function Lu(e){if(e)return e}function Uu(e){if(e)return{bold:e.bold,italic:e.italic,underline:e.underline,strike:e.strike,code:e.code,link:e.link,color:e.color,background:e.background}}function Pu(e){return e.map((e=>{if("mention"in e.insert){const t=Number(e.insert.mention.id);if(Number.isNaN(t))throw new Error(`Invalid mention id: "${e.insert.mention.id}" is not a valid numeric ID`);return{insert:{blot:{mention:{id:String(t),type:e.insert.mention.type}}}}}return"column_value"in e.insert?{insert:{blot:{column_value:{item_id:String(e.insert.column_value.item_id),column_id:e.insert.column_value.column_id}}}}:{insert:{text:e.insert.text},attributes:Uu(e.attributes)}}))}function Fu(e){return e.map((e=>{if("mention"in e.insert){const t=Number(e.insert.mention.id);if(Number.isNaN(t))throw new Error(`Invalid mention id: "${e.insert.mention.id}" is not a valid numeric ID`);return{insert:{mention:{id:t,type:e.insert.mention.type}}}}return"column_value"in e.insert?{insert:{macro:{type:"COLUMN_VALUE",macroId:t.randomUUID(),macroData:{itemId:Number(e.insert.column_value.item_id),columnId:e.insert.column_value.column_id}}}}:{insert:e.insert.text,attributes:Uu(e.attributes)}}))}function Vu(e,t){const a=e.attributes||{},i=a.comments||[];return{...e,attributes:{...a,comments:[...i,t]}}}function Mu(e,t,a,i){const n=a+i;let o=0;const r=[];for(const i of e){const e=i.insert;if(null==e)throw new Error(`Unexpected delta op at position ${o}: op has no 'insert' field. Block content may be from an unsupported block type.`);const s=o,d=s+("string"==typeof e?e.length:1),p=Math.max(s,a),l=Math.min(d,n);p>=l?r.push(i):"string"!=typeof e?r.push(Vu(i,t)):(p>s&&r.push({...i,insert:e.slice(0,p-s)}),r.push(Vu({...i,insert:e.slice(p-s,l-s)},t)),l<d&&r.push({...i,insert:e.slice(l-s)})),o=d}return r}const Bu=n.z.object({bold:n.z.boolean().optional(),italic:n.z.boolean().optional(),underline:n.z.boolean().optional(),strike:n.z.boolean().optional(),code:n.z.boolean().optional(),link:n.z.string().optional(),color:n.z.string().optional(),background:n.z.string().optional()}).optional(),zu=n.z.object({mention:n.z.object({id:n.z.union([n.z.string(),n.z.number()]).describe("User, doc, or board ID. Get user IDs from list_users_and_teams."),type:n.z.enum(["USER","DOC","BOARD"]).default("USER").describe("Mention type. USER is most common.")}).describe("Mention blot — tags a user, doc, or board inline. Do not set attributes on mention ops.")}),ju=n.z.object({column_value:n.z.object({item_id:n.z.union([n.z.string(),n.z.number()]).describe("The board item ID."),column_id:n.z.string().describe('The column ID (e.g. "status", "date4"). Get column IDs from get_board_schema.')}).describe("Column value blot — embeds a live board column value inline in the doc.")}),qu=n.z.object({insert:n.z.union([n.z.string().transform((e=>({text:e}))),n.z.object({text:n.z.string()}),zu,ju]).describe('Content to insert. Use {text: "..."} for plain text, {mention: {id, type}} to tag a user/doc/board, or {column_value: {item_id, column_id}} to embed a live column value. The last operation in the array must be {text: "\\n"}.'),attributes:Bu.describe("Optional formatting: bold, italic, underline, strike, code, link, color, background. Not applicable to mention or column_value ops.")}),Gu=n.z.object({block_content_type:n.z.literal("text"),delta_format:n.z.array(qu).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),alignment:n.z.enum(["LEFT","RIGHT","CENTER"]).optional(),direction:n.z.enum(["LTR","RTL"]).optional()}),Hu=n.z.object({block_content_type:n.z.literal("code"),delta_format:n.z.array(qu).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),language:n.z.string().optional().describe('Programming language (e.g. "javascript", "python").')}),Wu=n.z.object({block_content_type:n.z.literal("list_item"),delta_format:n.z.array(qu).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),checked:n.z.boolean().optional().describe("Check state for CHECK_LIST items."),indentation:n.z.number().int().min(0).optional().describe("Nesting level (0 = no indent).")}),Yu=n.z.discriminatedUnion("block_content_type",[Gu,Hu,Wu]),Ku=n.z.object({block_type:n.z.literal("text"),text_block_type:n.z.enum(["NORMAL_TEXT","LARGE_TITLE","MEDIUM_TITLE","SMALL_TITLE","QUOTE"]).optional().describe("Block subtype. LARGE_TITLE=H1, MEDIUM_TITLE=H2, SMALL_TITLE=H3."),delta_format:n.z.array(qu).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),alignment:n.z.enum(["LEFT","RIGHT","CENTER"]).optional(),direction:n.z.enum(["LTR","RTL"]).optional()}),Qu=n.z.object({block_type:n.z.literal("list_item"),list_block_type:n.z.enum(["BULLETED_LIST","NUMBERED_LIST","CHECK_LIST"]).optional().describe("List type. Defaults to BULLETED_LIST."),delta_format:n.z.array(qu).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),indentation:n.z.number().int().min(0).optional().describe("Nesting level (0 = no indent).")}),Ju=n.z.object({block_type:n.z.literal("code"),delta_format:n.z.array(qu).min(1).describe('Array of delta operations. Last op must be {insert: {text: "\\n"}}.'),language:n.z.string().optional().describe('Programming language (e.g. "javascript", "python").')}),Xu=n.z.object({block_type:n.z.literal("divider")}),Zu=n.z.object({block_type:n.z.literal("page_break")}),eh=n.z.object({block_type:n.z.literal("image"),public_url:n.z.string().url().optional().describe("Publicly accessible image URL. Provide either public_url or asset_id."),asset_id:n.z.union([n.z.number().int(),n.z.string().regex(/^\d+$/).transform(Number)]).optional().describe("monday.com asset ID for the image. The image block will reference the asset directly. Provide either public_url or asset_id."),width:n.z.number().int().min(1).optional().describe("Width in pixels.")}),th=n.z.object({block_type:n.z.literal("video"),raw_url:n.z.string().url().describe("Video URL (YouTube, Vimeo, or direct video URL)."),width:n.z.number().int().min(1).optional().describe("Width in pixels.")}),ah=n.z.object({block_type:n.z.literal("notice_box"),theme:n.z.enum(["INFO","TIPS","WARNING","GENERAL"]).describe("Visual style of the notice box.")}),ih=n.z.object({block_type:n.z.literal("table"),row_count:n.z.number().int().min(1).max(25).describe("Number of rows (1–25)."),column_count:n.z.number().int().min(1).max(10).describe("Number of columns (1–10)."),width:n.z.number().int().optional().describe("Table width in pixels."),column_style:n.z.array(n.z.object({width:n.z.number().int()})).optional().describe("Column widths. Array length must match column_count. Widths must sum to 100.")}),nh=n.z.object({block_type:n.z.literal("layout"),column_count:n.z.number().int().min(2).max(6).describe("Number of columns (2–6)."),column_style:n.z.array(n.z.object({width:n.z.number().int()})).optional().describe("Column widths. Array length must match column_count. Widths must sum to 100.")}),oh=n.z.discriminatedUnion("block_type",[Ku,Qu,Ju,Xu,Zu,eh,th,ah,ih,nh]),rh=n.z.object({operation_type:n.z.literal("set_name"),name:n.z.string().min(1).describe("New document name.")}),sh=n.z.object({operation_type:n.z.literal("add_markdown_content"),markdown:n.z.string().describe("Markdown content to convert and append (or insert) as blocks."),after_block_id:n.z.string().optional().describe("Insert after this block ID. Omit to append at end. Block IDs come from read_docs.")}),dh=n.z.object({operation_type:n.z.literal("update_block"),block_id:n.z.string().describe("ID of the block to update. Get block IDs from read_docs."),content:Yu.describe("New content for the block. Use block_content_type to select: text (updates text/heading/quote content), code (updates code content), list_item (updates bullets/numbered/todo content). Cannot change block subtype — use replace_block for that.")}),ph=n.z.object({operation_type:n.z.literal("create_block"),after_block_id:n.z.string().optional().describe("Insert after this block ID. Omit to append at end. Block IDs come from read_docs."),parent_block_id:n.z.string().optional().describe("Parent block ID for nested blocks. Only works for notice_box containers — use the notice_box block ID directly. Table/layout cell nesting is NOT supported by the API. IMPORTANT: A notice_box created in the same call cannot be referenced — use a separate call first to create it, then a second call to nest content inside it."),block:oh.describe("The block to create. Use block_type to select the block type.")}),lh=n.z.object({operation_type:n.z.literal("delete_block"),block_id:n.z.string().describe("ID of the block to permanently delete. Works for all block types including BOARD, WIDGET, DOC embed, GIPHY.")}),ch=n.z.object({operation_type:n.z.literal("replace_block"),block_id:n.z.string().describe("ID of the block to delete."),after_block_id:n.z.string().optional().describe("Insert replacement after this block ID. Provide the ID of the block that precedes the deleted block."),parent_block_id:n.z.string().optional().describe("Parent block ID for the replacement block."),block:oh.describe("The new block to create in place of the deleted one.")}),mh=n.z.object({operation_type:n.z.literal("add_comment"),body:n.z.string().min(1).describe("The comment text. Use HTML tags for formatting (not markdown). Do not use @ to mention users — use mentions_list instead."),parent_update_id:n.z.number().optional().describe("The ID of an existing comment (update) to reply to. Omit to create a new top-level comment. Get comment IDs from read_docs with include_comments: true."),mentions_list:n.z.string().optional().describe('Optional JSON array of mentions: [{"id": "123", "type": "User"}, {"id": "456", "type": "Team"}]. Valid types: User, Team, Board, Project.'),block_id:n.z.union([n.z.string(),n.z.array(n.z.string()).min(1)]).optional().describe("Block ID (string) or array of block IDs to anchor the comment to. When an array is provided, the same comment highlights all specified blocks. Only works on text-content blocks (text, code, list_item, title, quote) — not on divider, table, layout, notice_box, image, video, or giphy. Get block IDs from read_docs with include_blocks: true. Omit to create a general doc-level comment. Pair with selection_from + selection_length (single block_id only) to comment on a specific text range."),selection_from:n.z.number().int().min(0).optional().describe("Start character offset (0-indexed) of the selected text within the block. Requires block_id. Omit to comment on the entire block."),selection_length:n.z.number().int().min(1).optional().describe("Number of characters in the text selection. Requires block_id and selection_from. Only works for text, code, and list_item blocks that have a delta format.")}),uh=n.z.discriminatedUnion("operation_type",[rh,sh,dh,ph,lh,ch,mh]),hh={doc_id:n.z.string().min(1).optional().describe("The document ID (the id field from read_docs). Takes priority over object_id if both are provided."),object_id:n.z.string().min(1).optional().describe("The document object ID (the object_id field from read_docs, visible in the document URL). Resolved to doc_id."),operations:n.z.array(uh).min(1).max(25).describe('Ordered list of operations to perform. Executed sequentially. Stops at first failure.\n\nOperation types:\n- set_name: Rename the document.\n- add_markdown_content: Append markdown as blocks (simplest for text/lists/tables).\n- update_block: Change content of an existing text/code/list/divider block.\n- create_block: Create a new block at a specific position (supports text, list_item, code, divider, page_break, image, video, notice_box, table, layout).\n- delete_block: Permanently remove a block. Works for ALL block types including BOARD, WIDGET, DOC embed, GIPHY.\n- replace_block: Delete a block and create a new one in its place. Use for: changing image/video source, table restructure, notice_box theme change.\n- add_comment: Create a new comment or reply on the document. Use parent_update_id to reply to an existing comment. Format text with HTML. Uses the doc\'s backing board item.\n\nWHEN TO USE WHICH:\n- Adding new text sections → add_markdown_content\n- Adding asset-based images → create_block with block_type "image" and asset_id (add_markdown_content does NOT support asset images)\n- Mixed content with asset images → alternate add_markdown_content (for text) and create_block (for each image) in sequence\n- Editing existing text block → update_block\n- Changing an image URL → replace_block (image URL is immutable after creation)\n- Changing video URL → replace_block\n- Restructuring a table → replace_block\n- BOARD/WIDGET/DOC/GIPHY blocks → delete_block only (no public API to create these)\n\nNESTING CONTENT IN CONTAINERS:\n- notice_box: Fully supported. Create the notice_box first, then in a separate call create child blocks with parent_block_id set to the notice_box ID. You cannot reference a block ID created in the same call.\n- table: Cell-level API nesting is NOT supported. To create a table with content, use add_markdown_content with a markdown table (e.g. "| H1 | H2 |\\n| --- | --- |\\n| A | B |"). This creates a pre-populated table in one shot. Empty tables created via create_block cannot have their cells populated through the API.\n- layout: Cell-level API nesting is NOT supported and there is no markdown equivalent. Layouts can only be created empty via create_block. No workaround exists to populate layout columns through the API.\nDeleting a container does NOT delete its children — delete children first for clean removal.\n\nBlock IDs are available in the blocks array returned by read_docs.')};const fh=Fd`
1851
1873
  mutation CreateDashboard(
1852
1874
  $name: String!
1853
1875
  $workspace_id: ID!
@@ -1869,14 +1891,14 @@
1869
1891
  board_folder_id
1870
1892
  }
1871
1893
  }
1872
- `,fh=Fd`
1894
+ `,_h=Fd`
1873
1895
  query GetAllWidgetsSchema {
1874
1896
  all_widgets_schema {
1875
1897
  widget_type
1876
1898
  schema
1877
1899
  }
1878
1900
  }
1879
- `,_h=Fd`
1901
+ `,gh=Fd`
1880
1902
  mutation CreateWidget($parent: WidgetParentInput!, $kind: ExternalWidget!, $name: String!, $settings: JSON!) {
1881
1903
  create_widget(parent: $parent, kind: $kind, name: $name, settings: $settings) {
1882
1904
  id
@@ -1888,14 +1910,14 @@
1888
1910
  }
1889
1911
  }
1890
1912
  }
1891
- `,gh={name:n.z.string().min(1,"Dashboard name is required").describe("Human-readable dashboard title (UTF-8 chars)"),workspace_id:n.z.string().describe("ID of the workspace that will own the dashboard"),board_ids:n.z.array(n.z.string()).min(1,"At least one board ID is required").max(50,"A maximum of 50 board IDs are allowed").describe("List of board IDs as strings (min 1 element)"),kind:n.z.nativeEnum(Ao).default(Ao.Public).describe("Visibility level: PUBLIC or PRIVATE"),board_folder_id:n.z.string().optional().describe("Optional folder ID within workspace to place this dashboard (if not provided, dashboard will be placed in workspace root)")};const bh={parent_container_id:n.z.string().describe("ID of the parent container (dashboard ID or board view ID)"),parent_container_type:n.z.nativeEnum(us).describe("Type of parent container: DASHBOARD or BOARD_VIEW"),widget_kind:n.z.nativeEnum(Po).describe("Type of widget to create: i.e CHART, NUMBER, BATTERY"),widget_name:n.z.string().min(1,"Widget name is required").max(255,"Widget name must be 255 characters or less").describe("Widget display name (1-255 UTF-8 chars)"),settings:n.z.record(n.z.unknown()).optional().describe("Widget-specific settings as JSON object conforming to widget schema. Use all_widgets_schema tool to get the required schema for each widget type.")};const vh=Fd`
1913
+ `,bh={name:n.z.string().min(1,"Dashboard name is required").describe("Human-readable dashboard title (UTF-8 chars)"),workspace_id:n.z.string().describe("ID of the workspace that will own the dashboard"),board_ids:n.z.array(n.z.string()).min(1,"At least one board ID is required").max(50,"A maximum of 50 board IDs are allowed").describe("List of board IDs as strings (min 1 element)"),kind:n.z.nativeEnum(Ao).default(Ao.Public).describe("Visibility level: PUBLIC or PRIVATE"),board_folder_id:n.z.string().optional().describe("Optional folder ID within workspace to place this dashboard (if not provided, dashboard will be placed in workspace root)")};const vh={parent_container_id:n.z.string().describe("ID of the parent container (dashboard ID or board view ID)"),parent_container_type:n.z.nativeEnum(us).describe("Type of parent container: DASHBOARD or BOARD_VIEW"),widget_kind:n.z.nativeEnum(Po).describe("Type of widget to create: i.e CHART, NUMBER, BATTERY"),widget_name:n.z.string().min(1,"Widget name is required").max(255,"Widget name must be 255 characters or less").describe("Widget display name (1-255 UTF-8 chars)"),settings:n.z.record(n.z.unknown()).optional().describe("Widget-specific settings as JSON object conforming to widget schema. Use all_widgets_schema tool to get the required schema for each widget type.")};const yh=Fd`
1892
1914
  mutation updateWorkspace($id: ID!, $attributes: UpdateWorkspaceAttributesInput!) {
1893
1915
  update_workspace(id: $id, attributes: $attributes) {
1894
1916
  id
1895
1917
  name
1896
1918
  }
1897
1919
  }
1898
- `,yh={id:n.z.string().describe("The ID of the workspace to update"),attributeAccountProductId:n.z.number().optional().describe("The target account product's ID to move the workspace to"),attributeDescription:n.z.string().optional().describe("The description of the workspace to update"),attributeKind:n.z.nativeEnum(hs).optional().describe("The kind of the workspace to update (open / closed / template)"),attributeName:n.z.string().optional().describe("The name of the workspace to update")};const Ih=Fd`
1920
+ `,Ih={id:n.z.string().describe("The ID of the workspace to update"),attributeAccountProductId:n.z.number().optional().describe("The target account product's ID to move the workspace to"),attributeDescription:n.z.string().optional().describe("The description of the workspace to update"),attributeKind:n.z.nativeEnum(hs).optional().describe("The kind of the workspace to update (open / closed / template)"),attributeName:n.z.string().optional().describe("The name of the workspace to update")};const wh=Fd`
1899
1921
  mutation updateFolder(
1900
1922
  $folderId: ID!
1901
1923
  $name: String
@@ -1922,7 +1944,7 @@
1922
1944
  name
1923
1945
  }
1924
1946
  }
1925
- `,wh={folderId:n.z.string().describe("The ID of the folder to update"),name:n.z.string().optional().describe("The new name of the folder"),color:n.z.nativeEnum(Bo).optional().describe("The new color of the folder"),fontWeight:n.z.nativeEnum(jo).optional().describe("The new font weight of the folder"),customIcon:n.z.nativeEnum(zo).optional().describe("The new custom icon of the folder"),parentFolderId:n.z.string().optional().describe("The ID of the new parent folder"),workspaceId:n.z.string().optional().describe("The ID of the workspace containing the folder"),accountProductId:n.z.string().optional().describe("The account product ID associated with the folder"),position_object_id:n.z.string().optional().describe("The ID of the object to position the folder relative to. If this parameter is provided, position_object_type must be also provided."),position_object_type:n.z.nativeEnum(wr).optional().describe("The type of object to position the folder relative to. If this parameter is provided, position_object_id must be also provided."),position_is_after:n.z.boolean().optional().describe("Whether to position the folder after the object")};const Th=Fd`
1947
+ `,Th={folderId:n.z.string().describe("The ID of the folder to update"),name:n.z.string().optional().describe("The new name of the folder"),color:n.z.nativeEnum(Bo).optional().describe("The new color of the folder"),fontWeight:n.z.nativeEnum(jo).optional().describe("The new font weight of the folder"),customIcon:n.z.nativeEnum(zo).optional().describe("The new custom icon of the folder"),parentFolderId:n.z.string().optional().describe("The ID of the new parent folder"),workspaceId:n.z.string().optional().describe("The ID of the workspace containing the folder"),accountProductId:n.z.string().optional().describe("The account product ID associated with the folder"),position_object_id:n.z.string().optional().describe("The ID of the object to position the folder relative to. If this parameter is provided, position_object_type must be also provided."),position_object_type:n.z.nativeEnum(wr).optional().describe("The type of object to position the folder relative to. If this parameter is provided, position_object_id must be also provided."),position_is_after:n.z.boolean().optional().describe("Whether to position the folder after the object")};const Eh=Fd`
1926
1948
  mutation createWorkspace(
1927
1949
  $name: String!
1928
1950
  $workspaceKind: WorkspaceKind!
@@ -1939,7 +1961,7 @@
1939
1961
  name
1940
1962
  }
1941
1963
  }
1942
- `,Eh={name:n.z.string().describe("The name of the new workspace to be created"),workspaceKind:n.z.nativeEnum(hs).describe("The kind of workspace to create"),description:n.z.string().optional().describe("The description of the new workspace"),accountProductId:n.z.string().optional().describe("The account product ID associated with the workspace")};const Ah=Fd`
1964
+ `,Ah={name:n.z.string().describe("The name of the new workspace to be created"),workspaceKind:n.z.nativeEnum(hs).describe("The kind of workspace to create"),description:n.z.string().optional().describe("The description of the new workspace"),accountProductId:n.z.string().optional().describe("The account product ID associated with the workspace")};const Sh=Fd`
1943
1965
  mutation createFolder(
1944
1966
  $workspaceId: ID!
1945
1967
  $name: String!
@@ -1960,7 +1982,7 @@
1960
1982
  name
1961
1983
  }
1962
1984
  }
1963
- `,Sh={workspaceId:n.z.string().describe("The ID of the workspace where the folder will be created"),name:n.z.string().describe("The name of the folder to be created"),color:n.z.nativeEnum(Bo).optional().describe("The color of the folder"),fontWeight:n.z.nativeEnum(jo).optional().describe("The font weight of the folder"),customIcon:n.z.nativeEnum(zo).optional().describe("The custom icon of the folder"),parentFolderId:n.z.string().optional().describe("The ID of the parent folder")};const Nh=Fd`
1985
+ `,Nh={workspaceId:n.z.string().describe("The ID of the workspace where the folder will be created"),name:n.z.string().describe("The name of the folder to be created"),color:n.z.nativeEnum(Bo).optional().describe("The color of the folder"),fontWeight:n.z.nativeEnum(jo).optional().describe("The font weight of the folder"),customIcon:n.z.nativeEnum(zo).optional().describe("The custom icon of the folder"),parentFolderId:n.z.string().optional().describe("The ID of the parent folder")};const Dh=Fd`
1964
1986
  mutation updateBoardHierarchy($boardId: ID!, $attributes: UpdateBoardHierarchyAttributesInput!) {
1965
1987
  update_board_hierarchy(board_id: $boardId, attributes: $attributes) {
1966
1988
  success
@@ -1970,7 +1992,7 @@
1970
1992
  }
1971
1993
  }
1972
1994
  }
1973
- `,Dh=Fd`
1995
+ `,Oh=Fd`
1974
1996
  mutation updateOverviewHierarchy($overviewId: ID!, $attributes: UpdateOverviewHierarchyAttributesInput!) {
1975
1997
  update_overview_hierarchy(overview_id: $overviewId, attributes: $attributes) {
1976
1998
  success
@@ -1980,7 +2002,7 @@
1980
2002
  }
1981
2003
  }
1982
2004
  }
1983
- `,Oh={objectType:n.z.nativeEnum(wr).describe("The type of object to move"),id:n.z.string().describe("The ID of the object to move"),position_object_id:n.z.string().optional().describe("The ID of the object to position the object relative to. If this parameter is provided, position_object_type must be also provided."),position_object_type:n.z.nativeEnum(wr).optional().describe("The type of object to position the object relative to. If this parameter is provided, position_object_id must be also provided."),position_is_after:n.z.boolean().optional().describe("Whether to position the object after the object"),parentFolderId:n.z.string().optional().describe("The ID of the new parent folder. Required if moving to a different folder."),workspaceId:n.z.string().optional().describe("The ID of the workspace containing the object. Required if moving to a different workspace."),accountProductId:n.z.string().optional().describe("The ID of the account product containing the object. Required if moving to a different account product.")};const kh=Fd`
2005
+ `,kh={objectType:n.z.nativeEnum(wr).describe("The type of object to move"),id:n.z.string().describe("The ID of the object to move"),position_object_id:n.z.string().optional().describe("The ID of the object to position the object relative to. If this parameter is provided, position_object_type must be also provided."),position_object_type:n.z.nativeEnum(wr).optional().describe("The type of object to position the object relative to. If this parameter is provided, position_object_id must be also provided."),position_is_after:n.z.boolean().optional().describe("Whether to position the object after the object"),parentFolderId:n.z.string().optional().describe("The ID of the new parent folder. Required if moving to a different folder."),workspaceId:n.z.string().optional().describe("The ID of the workspace containing the object. Required if moving to a different workspace."),accountProductId:n.z.string().optional().describe("The ID of the account product containing the object. Required if moving to a different account product.")};const Ch=Fd`
1984
2006
  query aggregateBoardInsights($query: AggregateQueryInput!, $boardId: ID!) {
1985
2007
  boards(ids: [$boardId]) {
1986
2008
  name
@@ -2002,14 +2024,14 @@
2002
2024
  }
2003
2025
  }
2004
2026
  }
2005
- `,Ch=new Set([In.Case,In.Between,In.Left,In.Raw,In.None,In.CountKeys]),Rh=Object.values(In).filter((e=>!Ch.has(e))),$h=new Set([In.Left,In.Trim,In.Upper,In.Lower,In.DateTruncDay,In.DateTruncWeek,In.DateTruncMonth,In.DateTruncQuarter,In.DateTruncYear,In.Color,In.Label,In.EndDate,In.StartDate,In.Hour,In.PhoneCountryShortName,In.Person,In.Upper,In.Lower,In.Order,In.Length,In.Flatten,In.IsDone]);function xh(e){return{column_id:e}}new Set([In.Count,In.CountDistinct,In.CountSubitems,In.CountItems,In.First,In.Sum,In.Average,In.Median,In.Min,In.Max,In.MinMax]);const Lh={boardId:n.z.number().describe("The id of the board to get insights for"),aggregations:n.z.array(n.z.object({function:n.z.enum(Rh).describe("The function of the aggregation. For simple column value leave undefined").optional(),columnId:n.z.string().describe("The id of the column to aggregate")})).describe(`The aggregations to get. Before sending the aggregations, read guidelines.aggregation from get_column_type_info with fetchMode "${Np.Guidelines}" for a relevant column type on this board. Transformative functions and plain columns (no function) must be in group by.`).optional(),groupBy:n.z.array(n.z.string()).describe("The columns to group by. All columns in the group by must be in the aggregations as well without a function.").optional(),limit:n.z.number().describe("The limit of the results").max(1e3).optional().default(1e3),filters:cm,filtersOperator:mm,orderBy:n.z.array(n.z.object({columnId:n.z.string().describe("The id of the column to order by"),direction:n.z.nativeEnum(rr).optional().default(rr.Asc).describe("The direction to order by")})).optional().describe("The columns to order by, will control the order of the items in the response")};const Uh=Fd`
2027
+ `,Rh=new Set([In.Case,In.Between,In.Left,In.Raw,In.None,In.CountKeys]),$h=Object.values(In).filter((e=>!Rh.has(e))),xh=new Set([In.Left,In.Trim,In.Upper,In.Lower,In.DateTruncDay,In.DateTruncWeek,In.DateTruncMonth,In.DateTruncQuarter,In.DateTruncYear,In.Color,In.Label,In.EndDate,In.StartDate,In.Hour,In.PhoneCountryShortName,In.Person,In.Upper,In.Lower,In.Order,In.Length,In.Flatten,In.IsDone]);function Lh(e){return{column_id:e}}new Set([In.Count,In.CountDistinct,In.CountSubitems,In.CountItems,In.First,In.Sum,In.Average,In.Median,In.Min,In.Max,In.MinMax]);const Uh={boardId:n.z.number().describe("The id of the board to get insights for"),aggregations:n.z.array(n.z.object({function:n.z.enum($h).describe("The function of the aggregation. For simple column value leave undefined").optional(),columnId:n.z.string().describe("The id of the column to aggregate")})).describe(`The aggregations to get. Before sending the aggregations, read guidelines.aggregation from get_column_type_info with fetchMode "${Dp.Guidelines}" for a relevant column type on this board. Transformative functions and plain columns (no function) must be in group by.`).optional(),groupBy:n.z.array(n.z.string()).describe("The columns to group by. All columns in the group by must be in the aggregations as well without a function.").optional(),limit:n.z.number().describe("The limit of the results").max(1e3).optional().default(1e3),filters:mm,filtersOperator:um,orderBy:n.z.array(n.z.object({columnId:n.z.string().describe("The id of the column to order by"),direction:n.z.nativeEnum(rr).optional().default(rr.Asc).describe("The direction to order by")})).optional().describe("The columns to order by, will control the order of the items in the response")};const Ph=Fd`
2006
2028
  query GetFolders($page: Int!, $limit: Int!, $workspace_ids: [ID]) {
2007
2029
  folders(page: $page, limit: $limit, workspace_ids: $workspace_ids) {
2008
2030
  id
2009
2031
  name
2010
2032
  }
2011
2033
  }
2012
- `,Ph=Fd`
2034
+ `,Fh=Fd`
2013
2035
  query SearchItems($query: String!, $limit: Int, $workspaceIds: [ID!]) {
2014
2036
  search {
2015
2037
  items(query: $query, limit: $limit, workspace_ids: $workspaceIds) {
@@ -2024,7 +2046,7 @@
2024
2046
  }
2025
2047
  }
2026
2048
  }
2027
- `,Fh=Fd`
2049
+ `,Vh=Fd`
2028
2050
  query SearchBoards($query: String!, $limit: Int, $workspaceIds: [ID!]) {
2029
2051
  search {
2030
2052
  boards(query: $query, limit: $limit, workspace_ids: $workspaceIds) {
@@ -2039,7 +2061,7 @@
2039
2061
  }
2040
2062
  }
2041
2063
  }
2042
- `,Vh=Fd`
2064
+ `,Mh=Fd`
2043
2065
  query SearchDocs($query: String!, $limit: Int, $workspaceIds: [ID!]) {
2044
2066
  search {
2045
2067
  docs(query: $query, limit: $limit, workspace_ids: $workspaceIds) {
@@ -2053,7 +2075,7 @@
2053
2075
  }
2054
2076
  }
2055
2077
  }
2056
- `,Mh=Fd`
2078
+ `,Bh=Fd`
2057
2079
  query SearchWorkspaces($query: String!, $limit: Int) {
2058
2080
  search {
2059
2081
  workspaces(query: $query, limit: $limit) {
@@ -2068,7 +2090,7 @@
2068
2090
  }
2069
2091
  }
2070
2092
  }
2071
- `,Bh=Fd`
2093
+ `,zh=Fd`
2072
2094
  query SearchUpdates($query: String!, $limit: Int, $boardIds: [ID!], $creatorIds: [ID!]) {
2073
2095
  search {
2074
2096
  updates(query: $query, limit: $limit, board_ids: $boardIds, creator_ids: $creatorIds) {
@@ -2085,7 +2107,7 @@
2085
2107
  }
2086
2108
  }
2087
2109
  }
2088
- `,zh=Fd`
2110
+ `,jh=Fd`
2089
2111
  query SearchTimelineItems($query: String!, $limit: Int) {
2090
2112
  search {
2091
2113
  timeline_items(query: $query, limit: $limit) {
@@ -2101,14 +2123,14 @@
2101
2123
  }
2102
2124
  }
2103
2125
  }
2104
- `,jh=e=>e.toLocaleLowerCase().replace(/[^\p{L}\d]/gu,"");var qh;!function(e){e.BOARD="BOARD",e.DOCUMENTS="DOCUMENTS",e.FOLDERS="FOLDERS",e.WORKSPACES="WORKSPACES",e.UPDATES="UPDATES",e.ITEMS="ITEMS",e.TIMELINE_ITEMS="TIMELINE_ITEMS"}(qh||(qh={}));const Gh={searchTerm:n.z.string().min(1).describe("The search term to use."),searchType:n.z.nativeEnum(qh).describe("The type of search to perform. Valid values: BOARD, DOCUMENTS, FOLDERS, WORKSPACES, UPDATES, ITEMS, TIMELINE_ITEMS."),limit:n.z.number().max(20).optional().default(20).describe("The number of items to get. Maximum is 20 — do not exceed this value."),workspaceIds:n.z.array(n.z.number()).optional().describe("Array of workspace IDs (numbers) to search in. Required for FOLDERS search. For BOARD and DOCUMENTS search, only pass this if the user explicitly asked to search within specific workspaces. Example: [12345, 67890]."),boardIds:n.z.array(n.z.number()).optional().describe("Array of board IDs (numbers) to scope the search to. Only applies to UPDATES search, and only pass it if the user explicitly asked to search within specific boards. Example: [12345, 67890]."),creatorIds:n.z.array(n.z.number()).optional().describe("Array of user IDs (numbers) whose updates to search. Only applies to UPDATES search, and only pass it if the user explicitly asked to search updates by specific authors. Example: [12345, 67890].")};const Hh=n.z.object({id:n.z.string().describe("The ID of the entity to mention"),type:n.z.nativeEnum(_r).describe("The type of mention: User, Team, Board, or Project")}),Wh=n.z.array(Hh),Yh={itemId:n.z.number().describe("The id of the item to which the update will be added"),body:n.z.string().describe("The update text to be created. Do not use @ to mention users, use the mentionsList field instead."),mentionsList:n.z.string().optional().describe('Optional JSON array of mentions in the format: [{"id": "123", "type": "User"}, {"id": "456", "type": "Team"}]. Valid types are: User, Team, Board, Project')};const Kh=Fd`
2126
+ `,qh=e=>e.toLocaleLowerCase().replace(/[^\p{L}\d]/gu,"");var Gh;!function(e){e.BOARD="BOARD",e.DOCUMENTS="DOCUMENTS",e.FOLDERS="FOLDERS",e.WORKSPACES="WORKSPACES",e.UPDATES="UPDATES",e.ITEMS="ITEMS",e.TIMELINE_ITEMS="TIMELINE_ITEMS"}(Gh||(Gh={}));const Hh={searchTerm:n.z.string().min(1).describe("The search term to use."),searchType:n.z.nativeEnum(Gh).describe("The type of search to perform. Valid values: BOARD, DOCUMENTS, FOLDERS, WORKSPACES, UPDATES, ITEMS, TIMELINE_ITEMS."),limit:n.z.number().max(20).optional().default(20).describe("The number of items to get. Maximum is 20 — do not exceed this value."),workspaceIds:n.z.array(n.z.number()).optional().describe("Array of workspace IDs (numbers) to search in. Required for FOLDERS search. For BOARD and DOCUMENTS search, only pass this if the user explicitly asked to search within specific workspaces. Example: [12345, 67890]."),boardIds:n.z.array(n.z.number()).optional().describe("Array of board IDs (numbers) to scope the search to. Only applies to UPDATES search, and only pass it if the user explicitly asked to search within specific boards. Example: [12345, 67890]."),creatorIds:n.z.array(n.z.number()).optional().describe("Array of user IDs (numbers) whose updates to search. Only applies to UPDATES search, and only pass it if the user explicitly asked to search updates by specific authors. Example: [12345, 67890].")};const Wh=n.z.object({id:n.z.string().describe("The ID of the entity to mention"),type:n.z.nativeEnum(_r).describe("The type of mention: User, Team, Board, or Project")}),Yh=n.z.array(Wh),Kh={itemId:n.z.number().describe("The id of the item to which the update will be added"),body:n.z.string().describe("The update text to be created. Do not use @ to mention users, use the mentionsList field instead."),mentionsList:n.z.string().optional().describe('Optional JSON array of mentions in the format: [{"id": "123", "type": "User"}, {"id": "456", "type": "Team"}]. Valid types are: User, Team, Board, Project')};const Qh=Fd`
2105
2127
  mutation updateAssetsOnItem($boardId: ID!, $itemId: ID!, $columnId: String!, $files: [FileInput!]!) {
2106
2128
  update_assets_on_item(board_id: $boardId, item_id: $itemId, column_id: $columnId, files: $files) {
2107
2129
  id
2108
2130
  name
2109
2131
  }
2110
2132
  }
2111
- `,Qh=n.z.object({fileType:n.z.enum(["google_drive","dropbox","box","onedrive","link","asset","doc"]).describe('The type of file: "asset" for uploaded files (requires assetId), "doc" for monday docs (requires objectId), "link" for generic links, "google_drive", "dropbox", "box", "onedrive" for cloud storage links (all link types require linkToFile)'),name:n.z.string().describe("File display name"),linkToFile:n.z.string().optional().describe("File link URL. Required for link, google_drive, dropbox, box, and onedrive file types"),assetId:n.z.number().optional().describe("The asset's ID. Required when fileType is 'asset'"),objectId:n.z.number().optional().describe("The doc's ID. Required when fileType is 'doc'")}),Jh={boardId:n.z.string().describe("The board's unique identifier"),itemId:n.z.string().describe("The item's unique identifier"),columnId:n.z.string().describe("The file or doc column's unique identifier"),files:n.z.array(Qh).describe("Array of file values to set on the column")};const Xh=Fd`
2133
+ `,Jh=n.z.object({fileType:n.z.enum(["google_drive","dropbox","box","onedrive","link","asset","doc"]).describe('The type of file: "asset" for uploaded files (requires assetId), "doc" for monday docs (requires objectId), "link" for generic links, "google_drive", "dropbox", "box", "onedrive" for cloud storage links (all link types require linkToFile)'),name:n.z.string().describe("File display name"),linkToFile:n.z.string().optional().describe("File link URL. Required for link, google_drive, dropbox, box, and onedrive file types"),assetId:n.z.number().optional().describe("The asset's ID. Required when fileType is 'asset'"),objectId:n.z.number().optional().describe("The doc's ID. Required when fileType is 'doc'")}),Xh={boardId:n.z.string().describe("The board's unique identifier"),itemId:n.z.string().describe("The item's unique identifier"),columnId:n.z.string().describe("The file or doc column's unique identifier"),files:n.z.array(Jh).describe("Array of file values to set on the column")};const Zh=Fd`
2112
2134
  query getAssets($ids: [ID!]!) {
2113
2135
  assets(ids: $ids) {
2114
2136
  id
@@ -2126,7 +2148,7 @@
2126
2148
  }
2127
2149
  }
2128
2150
  }
2129
- `,Zh={ids:n.z.array(n.z.string()).min(1).describe("Array of asset IDs to fetch")};const ef=Fd`
2151
+ `,ef={ids:n.z.array(n.z.string()).min(1).describe("Array of asset IDs to fetch")};const tf=Fd`
2130
2152
  query getUserContext {
2131
2153
  me {
2132
2154
  id
@@ -2163,7 +2185,7 @@
2163
2185
  }
2164
2186
  }
2165
2187
  }
2166
- `,tf=Fd`
2188
+ `,af=Fd`
2167
2189
  query getFavoriteDetails(
2168
2190
  $boardIds: [ID!]
2169
2191
  $folderIds: [ID!]
@@ -2187,7 +2209,7 @@
2187
2209
  name
2188
2210
  }
2189
2211
  }
2190
- `,af={[tr.Board]:"boardIds",[tr.Folder]:"folderIds",[tr.Workspace]:"workspaceIds",[tr.Dashboard]:"dashboardIds"},nf={[tr.Board]:"boards",[tr.Folder]:"folders",[tr.Workspace]:"workspaces",[tr.Dashboard]:"dashboards"};const of=Fd`
2212
+ `,nf={[tr.Board]:"boardIds",[tr.Folder]:"folderIds",[tr.Workspace]:"workspaceIds",[tr.Dashboard]:"dashboardIds"},of={[tr.Board]:"boards",[tr.Folder]:"folders",[tr.Workspace]:"workspaces",[tr.Dashboard]:"dashboards"};const rf=Fd`
2191
2213
  query GetNotetakerMeetings(
2192
2214
  $limit: Int
2193
2215
  $cursor: String
@@ -2240,13 +2262,13 @@
2240
2262
  }
2241
2263
  }
2242
2264
  }
2243
- `,rf={ids:n.z.array(n.z.string()).optional().describe("Filter by specific meeting IDs. Use this to fetch one or more specific meetings in a single call."),access:n.z.enum(["OWN","SHARED_WITH_ME","SHARED_WITH_ACCOUNT","ALL"]).optional().default("OWN").describe("Filter meetings by access level. OWN: meetings the user participated in or invited the bot to. SHARED_WITH_ME: meetings shared with the user or their team. SHARED_WITH_ACCOUNT: meetings shared with the entire account. ALL: all meetings the user has access to."),limit:n.z.number().min(1).max(100).optional().default(25).describe("Maximum number of notetaker meetings to return per page (1-100)."),cursor:n.z.string().optional().describe("Cursor for pagination. Use cursor from the previous page_info to fetch the next page."),search:n.z.string().optional().describe("Search notetaker meetings by title, participant name, or email."),include_summary:n.z.boolean().optional().default(!1).describe("Whether to include the AI-generated summary for each meeting."),include_topics:n.z.boolean().optional().default(!1).describe("Whether to include discussion topics and talking points for each meeting."),include_action_items:n.z.boolean().optional().default(!1).describe("Whether to include action items for each meeting."),include_transcript:n.z.boolean().optional().default(!1).describe("Whether to include the full transcript for each meeting. Transcripts can be very large.")};const sf=Fd`
2265
+ `,sf={ids:n.z.array(n.z.string()).optional().describe("Filter by specific meeting IDs. Use this to fetch one or more specific meetings in a single call."),access:n.z.enum(["OWN","SHARED_WITH_ME","SHARED_WITH_ACCOUNT","ALL"]).optional().default("OWN").describe("Filter meetings by access level. OWN: meetings the user participated in or invited the bot to. SHARED_WITH_ME: meetings shared with the user or their team. SHARED_WITH_ACCOUNT: meetings shared with the entire account. ALL: all meetings the user has access to."),limit:n.z.number().min(1).max(100).optional().default(25).describe("Maximum number of notetaker meetings to return per page (1-100)."),cursor:n.z.string().optional().describe("Cursor for pagination. Use cursor from the previous page_info to fetch the next page."),search:n.z.string().optional().describe("Search notetaker meetings by title, participant name, or email."),include_summary:n.z.boolean().optional().default(!1).describe("Whether to include the AI-generated summary for each meeting."),include_topics:n.z.boolean().optional().default(!1).describe("Whether to include discussion topics and talking points for each meeting."),include_action_items:n.z.boolean().optional().default(!1).describe("Whether to include action items for each meeting."),include_transcript:n.z.boolean().optional().default(!1).describe("Whether to include the full transcript for each meeting. Transcripts can be very large.")};const df=Fd`
2244
2266
  mutation BatchUndo($boardId: ID!, $undoRecordId: ID!) {
2245
2267
  batch_undo(board_id: $boardId, undo_record_id: $undoRecordId) {
2246
2268
  success
2247
2269
  }
2248
2270
  }
2249
- `,df={boardId:n.z.number().describe("The id of the board where the action was performed"),undoRecordId:n.z.string().describe("The undo record ID (action_record_uuid) from the activity log data field. Use get_board_activity with includeData=true to find this value.")};const pf=Fd`
2271
+ `,pf={boardId:n.z.number().describe("The id of the board where the action was performed"),undoRecordId:n.z.string().describe("The undo record ID (action_record_uuid) from the activity log data field. Use get_board_activity with includeData=true to find this value.")};const lf=Fd`
2250
2272
  mutation CreateUpload($input: CreateUploadInput!) {
2251
2273
  create_upload(input: $input) {
2252
2274
  upload_id
@@ -2260,7 +2282,7 @@
2260
2282
  expires_at
2261
2283
  }
2262
2284
  }
2263
- `,lf={fileName:n.z.string().describe('The name of the file to upload, including extension (e.g. "report.pdf")'),contentType:n.z.string().describe('The MIME type of the file (e.g. "application/pdf", "image/png", "text/plain")'),fileSize:n.z.number().int().positive().max(524288e3).describe("The file size in bytes. Maximum 500MB (524288000 bytes)")};const cf=Fd`
2285
+ `,cf={fileName:n.z.string().describe('The name of the file to upload, including extension (e.g. "report.pdf")'),contentType:n.z.string().describe('The MIME type of the file (e.g. "application/pdf", "image/png", "text/plain")'),fileSize:n.z.number().int().positive().max(524288e3).describe("The file size in bytes. Maximum 500MB (524288000 bytes)")};const mf=Fd`
2264
2286
  mutation CompleteUpload($input: CompleteUploadInput!) {
2265
2287
  complete_upload(input: $input) {
2266
2288
  id
@@ -2272,13 +2294,13 @@
2272
2294
  filelink
2273
2295
  }
2274
2296
  }
2275
- `,mf=Fd`
2297
+ `,uf=Fd`
2276
2298
  mutation ChangeColumnValue($boardId: ID!, $itemId: ID!, $columnId: String!, $value: JSON!) {
2277
2299
  change_column_value(board_id: $boardId, item_id: $itemId, column_id: $columnId, value: $value) {
2278
2300
  id
2279
2301
  }
2280
2302
  }
2281
- `,uf={uploadId:n.z.string().describe("The upload_id returned by get_asset_upload_url"),etag:n.z.string().describe("The ETag header value from the PUT response when uploading to the presigned URL"),boardId:n.z.string().describe("The board's unique identifier"),itemId:n.z.string().describe("The item's unique identifier"),columnId:n.z.string().describe("The file or doc column's unique identifier to attach the uploaded asset to")};const hf="\n**Board-relation linking — do in order**\n\n1. **Fetch (target board, one query)**\n- **has_more: true** (and under **~500** items / **~5** pages for this pass) → your **only** next action is\n **get_board_items_page** with **cursor=nextCursor**; same **boardId** and the same **searchTerm** / **filters**\n / **itemIds** — **do not** change **filters** on a cursor call. **No** user turn until **has_more** is false\n or you stop at the cap. The first page alone is never “the whole board” while **has_more** is still true.\n- **Shrink the query first** when you can: **columnIds**;\n **filters**; **searchTerm**; or **itemIds** (max **100** per call, split big lists). Search **timeout** or\n error → **narrower** **searchTerm** or smaller **limit** / columns, then continue with **nextCursor** as\n in the first bullet.\n\n2. **Match (after the fetch for that pass is done)**\n- Apply a **clear** rule to names/values you already loaded (e.g. same name as source, or value user gave).\n- One unambiguous match → link without asking. **No** vague “best” pick without a rule.\n\n3. **If the user must be involved (only after step 1 is done for that query)**\n- If step 1 is incomplete, **no** questions (see step 1’s first bullet).\n- **True tie** (2+ items match the rule equally) → show **only those tied rows** (or a tiny shortlist),\n not the full result set and never all ~500.\n- **No way to name a target yet** (not a tie) → ask **once** for a **name** or **search phrase** to use in\n **searchTerm** / **filters**, not a menu of the board.\n\n4. **Write** — On the owning board’s board-relation column using change_item_column_values\n".trim(),ff={};const _f=Fd`
2303
+ `,hf={uploadId:n.z.string().describe("The upload_id returned by get_asset_upload_url"),etag:n.z.string().describe("The ETag header value from the PUT response when uploading to the presigned URL"),boardId:n.z.string().describe("The board's unique identifier"),itemId:n.z.string().describe("The item's unique identifier"),columnId:n.z.string().describe("The file or doc column's unique identifier to attach the uploaded asset to")};const ff="\n**Board-relation linking — do in order**\n\n1. **Fetch (target board, one query)**\n- **has_more: true** (and under **~500** items / **~5** pages for this pass) → your **only** next action is\n **get_board_items_page** with **cursor=nextCursor**; same **boardId** and the same **searchTerm** / **filters**\n / **itemIds** — **do not** change **filters** on a cursor call. **No** user turn until **has_more** is false\n or you stop at the cap. The first page alone is never “the whole board” while **has_more** is still true.\n- **Shrink the query first** when you can: **columnIds**;\n **filters**; **searchTerm**; or **itemIds** (max **100** per call, split big lists). Search **timeout** or\n error → **narrower** **searchTerm** or smaller **limit** / columns, then continue with **nextCursor** as\n in the first bullet.\n\n2. **Match (after the fetch for that pass is done)**\n- Apply a **clear** rule to names/values you already loaded (e.g. same name as source, or value user gave).\n- One unambiguous match → link without asking. **No** vague “best” pick without a rule.\n\n3. **If the user must be involved (only after step 1 is done for that query)**\n- If step 1 is incomplete, **no** questions (see step 1’s first bullet).\n- **True tie** (2+ items match the rule equally) → show **only those tied rows** (or a tiny shortlist),\n not the full result set and never all ~500.\n- **No way to name a target yet** (not a tie) → ask **once** for a **name** or **search phrase** to use in\n **searchTerm** / **filters**, not a menu of the board.\n\n4. **Write** — On the owning board’s board-relation column using change_item_column_values\n".trim(),_f={};const gf=Fd`
2282
2304
  query GetItemAssets($itemId: [ID!]!, $columnId: [String!]!) {
2283
2305
  items(ids: $itemId) {
2284
2306
  assets(column_ids: $columnId) {
@@ -2288,7 +2310,7 @@
2288
2310
  }
2289
2311
  }
2290
2312
  }
2291
- `,gf=10485760,bf=5e4,vf=new Set([".png",".jpg",".jpeg",".gif",".webp",".svg",".bmp",".ico"]),yf=new Set([".pdf"]),If=new Set([".docx"]),wf=new Set([".xlsx"]),Tf=new Set([".xls"]),Ef=new Set([".txt",".md",".csv",".json"]),Af={item_id:n.z.string().describe("The ID of the item that contains the file. Obtained from get_board_items_page results."),column_id:n.z.string().describe("The ID of the files column containing the file. Obtained from the board schema."),file_name:n.z.string().optional().describe('Optional file name hint used to determine the file type when the asset name is ambiguous. Include the extension (e.g. "report.pdf").'),offset:n.z.number().int().min(0).optional().describe("Character offset to start reading from. Use when a previous response indicated the content was truncated (has_more: true). Defaults to 0.")};function Sf(e){const t=e.lastIndexOf(".");return-1===t?"":e.slice(t).toLowerCase()}function Nf(e){if(null==e)return"";if("number"==typeof e||"boolean"==typeof e||"string"==typeof e)return String(e);if(e instanceof Date)return e.toISOString();if("object"==typeof e){if("result"in e)return Nf(e.result);if("richText"in e)return e.richText.map((e=>e.text)).join("");if("hyperlink"in e)return e.text??""}return""}async function Df(e,t,a){const i=function(e,t){if(t){const e=Sf(t);if(e)return e}return e.file_extension?e.file_extension.startsWith(".")?e.file_extension.toLowerCase():`.${e.file_extension.toLowerCase()}`:Sf(e.name)}(e,a);try{if(vf.has(i))return{file_name:e.name,file_extension:i,content_type:"image",public_url:e.public_url,message:"Image file — use the public_url to view or analyze its content."};if(Tf.has(i))return{file_name:e.name,file_extension:i,message:"Legacy .xls format is not supported. Please convert the file to .xlsx and re-upload."};const a=await async function(e){const t=await fetch(e,{signal:AbortSignal.timeout(3e4)});if(!t.ok)throw new Error(`Failed to download file: HTTP ${t.status}`);const a=t.headers.get("content-length");if(a&&parseInt(a,10)>gf)throw new Error(`File exceeds the 10 MB size limit (Content-Length: ${a} bytes)`);if(!t.body)throw new Error("Response body is empty");const i=t.body.getReader(),n=[];let o=0;try{let e=await i.read();for(;!e.done;){const{value:t}=e;if(o+=t.byteLength,o>gf)throw await i.cancel().catch((()=>{})),new Error("File exceeds the 10 MB size limit");n.push(t),e=await i.read()}}catch(e){throw await i.cancel().catch((()=>{})),e}return Buffer.concat(n)}(e.public_url);let n,o;yf.has(i)?(n=await async function(e){const t=await m.getDocumentProxy(new Uint8Array(e)),{text:a}=await m.extractText(t,{mergePages:!0});return a}(a),o="pdf"):If.has(i)?(n=await async function(e){return(await O.default.extractRawText({buffer:e})).value}(a),o="word"):wf.has(i)?(n=await async function(e){const t=new k.default.Workbook;await t.xlsx.load(e);const a=[];return t.eachSheet((e=>{const t=[];e.eachRow((e=>{const a=e.values.slice(1);t.push(a.map(Nf).join(","))})),a.push(`=== Sheet: ${e.name} ===\n${t.join("\n")}`)})),a.join("\n\n")}(a),o="excel"):Ef.has(i)?(n=a.toString("utf-8"),o="text"):(n=a.toString("utf-8"),o="unknown");const r=n.slice(t,t+bf),s=n.length>t+bf;return{file_name:e.name,file_extension:i,content_type:o,text:r,total_length:n.length,...yf.has(i)&&{public_url:e.public_url},...s&&{has_more:!0,next_offset:t+bf}}}catch(t){return{message:`Failed to fetch file content: ${t instanceof Error?t.message:String(t)}`,file_name:e.name,file_extension:i}}}var Of,kf,Cf,Rf,$f,xf,Lf,Uf,Pf,Ff,Vf,Mf,Bf,zf,jf,qf,Gf,Hf,Wf,Yf,Kf,Qf,Jf,Xf,Zf,e_,t_,a_,i_,n_,o_,r_,s_,d_,p_,l_,c_,m_,u_,h_,f_,__,g_,b_,v_,y_,I_,w_,T_,E_,A_,S_,N_,D_,O_,k_,C_,R_,$_,x_,L_,U_,P_,F_,V_,M_,B_,z_,j_,q_,G_,H_,W_,Y_,K_,Q_,J_,X_,Z_,eg,tg,ag,ig,ng,og,rg,sg,dg,pg,lg,cg,mg,ug,hg,fg,_g,gg,bg,vg,yg,Ig,wg,Tg,Eg,Ag,Sg,Ng,Dg,Og,kg,Cg,Rg,$g,xg,Lg,Ug,Pg,Fg,Vg,Mg,Bg,zg,jg,qg,Gg,Hg,Wg,Yg,Kg,Qg,Jg,Xg,Zg,eb,tb,ab,ib,nb,ob,rb,sb,db,pb,lb,cb,mb,ub,hb,fb,_b,gb,bb,vb,yb,Ib,wb,Tb,Eb,Ab,Sb,Nb,Db,Ob,kb,Cb,Rb,$b,xb,Lb,Ub,Pb,Fb,Vb,Mb,Bb,zb,jb,qb,Gb,Hb,Wb,Yb,Kb,Qb,Jb,Xb,Zb,ev,tv,av,iv,nv,ov,rv,sv,dv,pv,lv,cv,mv,uv,hv,fv,_v,gv,bv,vv,yv,Iv,wv,Tv,Ev,Av,Sv,Nv,Dv,Ov,kv,Cv,Rv,$v,xv,Lv,Uv,Pv,Fv,Vv,Mv,Bv,zv,jv,qv;!function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(Of||(Of={})),function(e){e.Audio="AUDIO",e.Board="BOARD",e.Doc="DOC",e.Html="HTML",e.Image="IMAGE",e.Item="ITEM",e.Update="UPDATE",e.VibeApp="VIBE_APP",e.Video="VIDEO",e.View="VIEW"}(kf||(kf={})),function(e){e.Asset="ASSET",e.MondayEntity="MONDAY_ENTITY"}(Cf||(Cf={})),function(e){e.AccountLevel="ACCOUNT_LEVEL",e.External="EXTERNAL",e.Personal="PERSONAL"}(Rf||(Rf={})),function(e){e.Member="MEMBER",e.Owner="OWNER"}($f||($f={})),function(e){e.ClaudeFable_5="CLAUDE_FABLE_5",e.ClaudeOpus_4_7="CLAUDE_OPUS_4_7",e.ClaudeSonnet_4_6="CLAUDE_SONNET_4_6",e.Gemini_2_5Flash="GEMINI_2_5_FLASH",e.Gpt_5_2="GPT_5_2"}(xf||(xf={})),function(e){e.ActionIntent="ACTION_INTENT",e.ClarificationReceived="CLARIFICATION_RECEIVED",e.ClarificationRequested="CLARIFICATION_REQUESTED",e.FeedbackGiven="FEEDBACK_GIVEN",e.PlanCreated="PLAN_CREATED",e.RunCompleted="RUN_COMPLETED",e.RunFailed="RUN_FAILED",e.RunStarted="RUN_STARTED",e.RunStopped="RUN_STOPPED",e.StepCompleted="STEP_COMPLETED",e.StepFailed="STEP_FAILED",e.StepRetry="STEP_RETRY",e.StepStarted="STEP_STARTED",e.StepSummary="STEP_SUMMARY",e.Thinking="THINKING",e.ToolCalled="TOOL_CALLED",e.ToolCompleted="TOOL_COMPLETED",e.ToolFailed="TOOL_FAILED"}(Lf||(Lf={})),function(e){e.Active="ACTIVE",e.Archived="ARCHIVED",e.Deleted="DELETED",e.Failed="FAILED",e.Inactive="INACTIVE"}(Uf||(Uf={})),function(e){e.Team="TEAM",e.User="USER"}(Pf||(Pf={})),function(e){e.DataView="DATA_VIEW",e.Table="TABLE"}(Ff||(Ff={})),function(e){e.AnyOf="ANY_OF",e.EndsWith="ENDS_WITH",e.GreaterThan="GREATER_THAN",e.GreaterThanOrEquals="GREATER_THAN_OR_EQUALS",e.IsEmpty="IS_EMPTY",e.IsNotEmpty="IS_NOT_EMPTY",e.LowerThan="LOWER_THAN",e.LowerThanOrEqual="LOWER_THAN_OR_EQUAL",e.NotAnyOf="NOT_ANY_OF",e.StartsWith="STARTS_WITH"}(Vf||(Vf={})),function(e){e.Table="TABLE",e.Union="UNION"}(Mf||(Mf={})),function(e){e.Average="AVERAGE",e.Color="COLOR",e.Count="COUNT",e.CountDistinct="COUNT_DISTINCT",e.CountItems="COUNT_ITEMS",e.DateTruncDay="DATE_TRUNC_DAY",e.DateTruncMonth="DATE_TRUNC_MONTH",e.DateTruncQuarter="DATE_TRUNC_QUARTER",e.DateTruncWeek="DATE_TRUNC_WEEK",e.DateTruncYear="DATE_TRUNC_YEAR",e.First="FIRST",e.Id="ID",e.IsDone="IS_DONE",e.Label="LABEL",e.Length="LENGTH",e.Lower="LOWER",e.Max="MAX",e.Median="MEDIAN",e.Min="MIN",e.Sum="SUM",e.Trim="TRIM",e.Upper="UPPER"}(Bf||(Bf={})),function(e){e.And="AND",e.Or="OR"}(zf||(zf={})),function(e){e.Column="COLUMN",e.Function="FUNCTION"}(jf||(jf={})),function(e){e.Asc="ASC",e.Desc="DESC"}(qf||(qf={})),function(e){e.Table="TABLE"}(Gf||(Gf={})),function(e){e.Column="COLUMN",e.Function="FUNCTION"}(Hf||(Hf={})),function(e){e.Average="AVERAGE",e.Between="BETWEEN",e.Case="CASE",e.Color="COLOR",e.Count="COUNT",e.CountDistinct="COUNT_DISTINCT",e.CountItems="COUNT_ITEMS",e.CountKeys="COUNT_KEYS",e.CountSubitems="COUNT_SUBITEMS",e.Date="DATE",e.DateTruncDay="DATE_TRUNC_DAY",e.DateTruncMonth="DATE_TRUNC_MONTH",e.DateTruncQuarter="DATE_TRUNC_QUARTER",e.DateTruncWeek="DATE_TRUNC_WEEK",e.DateTruncYear="DATE_TRUNC_YEAR",e.DurationRunning="DURATION_RUNNING",e.EndDate="END_DATE",e.Equals="EQUALS",e.First="FIRST",e.Flatten="FLATTEN",e.Hour="HOUR",e.Id="ID",e.IsDone="IS_DONE",e.Label="LABEL",e.Left="LEFT",e.Length="LENGTH",e.Lower="LOWER",e.Max="MAX",e.Median="MEDIAN",e.Min="MIN",e.MinMax="MIN_MAX",e.None="NONE",e.Order="ORDER",e.Person="PERSON",e.PhoneCountryShortName="PHONE_COUNTRY_SHORT_NAME",e.Raw="RAW",e.StartDate="START_DATE",e.Sum="SUM",e.Trim="TRIM",e.Upper="UPPER"}(Wf||(Wf={})),function(e){e.CompanyName="company_name",e.Custom="custom",e.Date="date",e.DomainName="domain_name",e.EmailAddress="email_address",e.FirstName="first_name",e.LastName="last_name",e.PhoneNumber="phone_number",e.Time="time",e.Url="url",e.Year="year"}(Yf||(Yf={})),function(e){e.Longer="longer",e.Same="same",e.Shorter="shorter"}(Kf||(Kf={})),function(e){e.Arabic="arabic",e.Bengali="bengali",e.Chinese="chinese",e.Danish="danish",e.Dutch="dutch",e.English="english",e.French="french",e.German="german",e.Hebrew="hebrew",e.Hindi="hindi",e.Indonesian="indonesian",e.Italian="italian",e.Japanese="japanese",e.Korean="korean",e.Norwegian="norwegian",e.Polish="polish",e.Portuguese="portuguese",e.Russian="russian",e.Spanish="spanish",e.Swedish="swedish",e.Thai="thai",e.Turkish="turkish",e.Vietnamese="vietnamese"}(Qf||(Qf={})),function(e){e.Brief="brief",e.InDepth="in_depth",e.Paragraph="paragraph",e.Sentence="sentence"}(Jf||(Jf={})),function(e){e.HighCreativity="high_creativity",e.MinimalChanges="minimal_changes",e.ModerateChanges="moderate_changes"}(Xf||(Xf={})),function(e){e.Column="column",e.EmailsAndActivities="emails_and_activities",e.ItemName="item_name",e.Thread="thread"}(Zf||(Zf={})),function(e){e.Casual="casual",e.Confident="confident",e.Empathic="empathic",e.Friendly="friendly",e.Natural="natural",e.Professional="professional",e.Promotional="promotional",e.Same="same"}(e_||(e_={})),function(e){e.MondayFast="MONDAY_FAST",e.MondayPowerful="MONDAY_POWERFUL",e.MondayStandard="MONDAY_STANDARD"}(t_||(t_={})),function(e){e.ApplicationPdf="APPLICATION_PDF",e.ApplicationXlsx="APPLICATION_XLSX",e.ImageAvif="IMAGE_AVIF",e.ImageGif="IMAGE_GIF",e.ImageHeic="IMAGE_HEIC",e.ImageJpeg="IMAGE_JPEG",e.ImagePng="IMAGE_PNG",e.ImageSvg="IMAGE_SVG",e.ImageWebp="IMAGE_WEBP",e.TextCsv="TEXT_CSV",e.TextMarkdown="TEXT_MARKDOWN",e.TextPlain="TEXT_PLAIN",e.VideoMp4="VIDEO_MP4",e.VideoOgg="VIDEO_OGG",e.VideoQuicktime="VIDEO_QUICKTIME",e.VideoWebm="VIDEO_WEBM"}(a_||(a_={})),function(e){e.ClientSideCode="CLIENT_SIDE_CODE",e.ExternalHosting="EXTERNAL_HOSTING",e.ServerSideCode="SERVER_SIDE_CODE"}(i_||(i_={})),function(e){e.AccountSettingsView="ACCOUNT_SETTINGS_VIEW",e.AdminView="ADMIN_VIEW",e.Ai="AI",e.AiAgent="AI_AGENT",e.AiAgentSkill="AI_AGENT_SKILL",e.AiBoardMainMenuHeader="AI_BOARD_MAIN_MENU_HEADER",e.AiDocContextualMenu="AI_DOC_CONTEXTUAL_MENU",e.AiDocQuickStart="AI_DOC_QUICK_START",e.AiDocSlashCommand="AI_DOC_SLASH_COMMAND",e.AiDocTopBar="AI_DOC_TOP_BAR",e.AiEmailsAndActivitiesHeaderActions="AI_EMAILS_AND_ACTIVITIES_HEADER_ACTIONS",e.AiFormula="AI_FORMULA",e.AiIcAssistantHelpCenter="AI_IC_ASSISTANT_HELP_CENTER",e.AiItemEmailsAndActivitiesActions="AI_ITEM_EMAILS_AND_ACTIVITIES_ACTIONS",e.AiItemUpdateActions="AI_ITEM_UPDATE_ACTIONS",e.AiPlatformAgent="AI_PLATFORM_AGENT",e.AppWizard="APP_WIZARD",e.Block="BLOCK",e.BoardColumnAction="BOARD_COLUMN_ACTION",e.BoardColumnExtension="BOARD_COLUMN_EXTENSION",e.BoardHeaderAction="BOARD_HEADER_ACTION",e.BoardView="BOARD_VIEW",e.Column="COLUMN",e.ColumnTemplate="COLUMN_TEMPLATE",e.Credentials="CREDENTIALS",e.DashboardWidget="DASHBOARD_WIDGET",e.DataEntity="DATA_ENTITY",e.Dialog="DIALOG",e.DigitalWorker="DIGITAL_WORKER",e.DocActions="DOC_ACTIONS",e.FieldType="FIELD_TYPE",e.GroupMenuAction="GROUP_MENU_ACTION",e.GrowthConfig="GROWTH_CONFIG",e.Integration="INTEGRATION",e.ItemBatchAction="ITEM_BATCH_ACTION",e.ItemMenuAction="ITEM_MENU_ACTION",e.ItemView="ITEM_VIEW",e.Modal="MODAL",e.NotificationKind="NOTIFICATION_KIND",e.NotificationSettingKind="NOTIFICATION_SETTING_KIND",e.Oauth="OAUTH",e.Object="OBJECT",e.PackagedBlock="PACKAGED_BLOCK",e.Product="PRODUCT",e.ProductView="PRODUCT_VIEW",e.Skill="SKILL",e.Solution="SOLUTION",e.SubWorkflow="SUB_WORKFLOW",e.SurfaceView="SURFACE_VIEW",e.SyncableResource="SYNCABLE_RESOURCE",e.Topbar="TOPBAR",e.VibeItemView="VIBE_ITEM_VIEW",e.VibeObject="VIBE_OBJECT",e.WorkflowTemplate="WORKFLOW_TEMPLATE",e.WorkspaceView="WORKSPACE_VIEW"}(n_||(n_={})),function(e){e.Private="PRIVATE",e.Public="PUBLIC"}(o_||(o_={})),function(e){e.AccountRead="ACCOUNT_READ",e.AssetsRead="ASSETS_READ",e.BoardsRead="BOARDS_READ",e.BoardsWrite="BOARDS_WRITE",e.DepartmentsRead="DEPARTMENTS_READ",e.DepartmentsWrite="DEPARTMENTS_WRITE",e.DocsRead="DOCS_READ",e.DocsWrite="DOCS_WRITE",e.MeRead="ME_READ",e.NotificationsWrite="NOTIFICATIONS_WRITE",e.TagsRead="TAGS_READ",e.TeamsRead="TEAMS_READ",e.TeamsWrite="TEAMS_WRITE",e.UpdatesRead="UPDATES_READ",e.UpdatesWrite="UPDATES_WRITE",e.UsersRead="USERS_READ",e.UsersWrite="USERS_WRITE",e.WebhooksRead="WEBHOOKS_READ",e.WebhooksWrite="WEBHOOKS_WRITE",e.WorkspacesRead="WORKSPACES_READ",e.WorkspacesWrite="WORKSPACES_WRITE"}(r_||(r_={})),function(e){e.Draft="DRAFT",e.Live="LIVE"}(s_||(s_={})),function(e){e.Deprecated="DEPRECATED",e.Draft="DRAFT",e.Live="LIVE",e.Promoting="PROMOTING"}(d_||(d_={})),function(e){e.Active="ACTIVE",e.Deleted="DELETED"}(p_||(p_={})),function(e){e.Completed="COMPLETED",e.Failed="FAILED",e.None="NONE",e.Pending="PENDING"}(l_||(l_={})),function(e){e.Account="ACCOUNT",e.AiAgentBrain="AI_AGENT_BRAIN",e.AiAgentConversation="AI_AGENT_CONVERSATION",e.Channel="CHANNEL",e.Initiative="INITIATIVE",e.Item="ITEM",e.Post="POST",e.VibeApp="VIBE_APP",e.Workspace="WORKSPACE"}(c_||(c_={})),function(e){e.All="all",e.Columns="columns",e.Gallery="gallery"}(m_||(m_={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND",e.UserNotMemberOfTeam="USER_NOT_MEMBER_OF_TEAM",e.ViewersOrGuests="VIEWERS_OR_GUESTS"}(u_||(u_={})),function(e){e.Agent="AGENT"}(h_||(h_={})),function(e){e.Admin="ADMIN",e.Guest="GUEST",e.Member="MEMBER",e.ViewOnly="VIEW_ONLY"}(f_||(f_={})),function(e){e.Center="CENTER",e.Left="LEFT",e.Right="RIGHT"}(__||(__={})),function(e){e.Ltr="LTR",e.Rtl="RTL"}(g_||(g_={})),function(e){e.Edit="edit",e.View="view"}(b_||(b_={})),function(e){e.Communication="communication",e.Description="description",e.ItemNickname="item_nickname",e.Name="name"}(v_||(v_={})),function(e){e.AssignedContributor="assigned_contributor",e.Contributor="contributor",e.Editor="editor",e.Viewer="viewer"}(y_||(y_={})),function(e){e.Assignee="assignee",e.Collaborators="collaborators",e.Everyone="everyone",e.Owners="owners"}(I_||(I_={})),function(e){e.Classic="classic",e.MultiLevel="multi_level"}(w_||(w_={})),function(e){e.Private="private",e.Public="public",e.Share="share"}(T_||(T_={})),function(e){e.CurrentUserMuteAll="CURRENT_USER_MUTE_ALL",e.CustomSettings="CUSTOM_SETTINGS",e.MentionsAndAssignsOnly="MENTIONS_AND_ASSIGNS_ONLY",e.MuteAll="MUTE_ALL",e.NotMuted="NOT_MUTED"}(E_||(E_={})),function(e){e.Board="board",e.CustomObject="custom_object",e.Document="document",e.SubItemsBoard="sub_items_board"}(A_||(A_={})),function(e){e.Owner="owner",e.Subscriber="subscriber"}(S_||(S_={})),function(e){e.ConnectToPortfolio="CONNECT_TO_PORTFOLIO",e.ConvertToProject="CONVERT_TO_PROJECT"}(N_||(N_={})),function(e){e.Edit="edit",e.View="view"}(D_||(D_={})),function(e){e.CreatedAt="created_at",e.UsedAt="used_at"}(O_||(O_={})),function(e){e.AccountCapacityExceeded="ACCOUNT_CAPACITY_EXCEEDED",e.AuthorizationFailed="AUTHORIZATION_FAILED",e.BoardCapacityExceeded="BOARD_CAPACITY_EXCEEDED",e.FileTooLarge="FILE_TOO_LARGE",e.InternalError="INTERNAL_ERROR",e.InvalidUpload="INVALID_UPLOAD",e.PermissionDenied="PERMISSION_DENIED"}(k_||(k_={})),function(e){e.Completed="COMPLETED",e.Failed="FAILED",e.Processing="PROCESSING",e.Rejected="REJECTED",e.UploadPending="UPLOAD_PENDING"}(C_||(C_={})),function(e){e.CountKeys="COUNT_KEYS",e.Max="MAX",e.Min="MIN",e.MinMax="MIN_MAX",e.None="NONE",e.Sum="SUM"}(R_||(R_={})),function(e){e.EmailBounced="EMAIL_BOUNCED",e.EmailClicked="EMAIL_CLICKED",e.EmailDelivered="EMAIL_DELIVERED",e.EmailDropped="EMAIL_DROPPED",e.EmailOpened="EMAIL_OPENED",e.EmailRecipientComplaint="EMAIL_RECIPIENT_COMPLAINT",e.EmailRecipientGroupResubscribed="EMAIL_RECIPIENT_GROUP_RESUBSCRIBED",e.EmailRecipientGroupUnsubscribed="EMAIL_RECIPIENT_GROUP_UNSUBSCRIBED",e.EmailRecipientUnsubscribed="EMAIL_RECIPIENT_UNSUBSCRIBED",e.EmailSent="EMAIL_SENT"}($_||($_={})),function(e){e.Accent="ACCENT",e.Other="OTHER",e.Primary="PRIMARY",e.Secondary="SECONDARY",e.Text="TEXT"}(x_||(x_={})),function(e){e.Attachment="ATTACHMENT",e.PrimaryLogo="PRIMARY_LOGO",e.SecondaryLogo="SECONDARY_LOGO"}(L_||(L_={})),function(e){e.Confirmed="CONFIRMED",e.Pending="PENDING"}(U_||(U_={})),function(e){e.CompetitorMove="COMPETITOR_MOVE",e.CrisisEvent="CRISIS_EVENT",e.CustomerBehavior="CUSTOMER_BEHAVIOR",e.EmergingTechnology="EMERGING_TECHNOLOGY",e.MarketTrend="MARKET_TREND",e.Other="OTHER",e.ProductLaunch="PRODUCT_LAUNCH",e.RegulatoryChange="REGULATORY_CHANGE"}(P_||(P_={})),function(e){e.Active="ACTIVE",e.Consumed="CONSUMED",e.Dismissed="DISMISSED"}(F_||(F_={})),function(e){e.Later="LATER",e.Now="NOW"}(V_||(V_={})),function(e){e.CreatedAt="CREATED_AT",e.Name="NAME"}(M_||(M_={})),function(e){e.Asc="ASC",e.Desc="DESC"}(B_||(B_={})),function(e){e.Blocked="BLOCKED",e.Draft="DRAFT",e.Failed="FAILED",e.Generating="GENERATING",e.Ongoing="ONGOING",e.OnHold="ON_HOLD",e.Processing="PROCESSING",e.ReadyToSend="READY_TO_SEND",e.Scheduled="SCHEDULED",e.Sending="SENDING",e.Sent="SENT"}(z_||(z_={})),function(e){e.Description="description",e.Settings="settings",e.Title="title"}(j_||(j_={})),function(e){e.AllRelatedNotificationsDontHaveChannel="AllRelatedNotificationsDontHaveChannel",e.AlwaysEnabled="AlwaysEnabled",e.Editable="Editable"}(q_||(q_={})),function(e){e.Email="Email",e.Monday="Monday",e.Slack="Slack"}(G_||(G_={})),function(e){e.Deactivate="DEACTIVATE",e.Reactivate="REACTIVATE"}(H_||(H_={})),function(e){e.Calculated="CALCULATED",e.Visibility="VISIBILITY"}(W_||(W_={})),function(e){e.Description="description",e.Title="title"}(Y_||(Y_={})),function(e){e.AutoNumber="auto_number",e.BoardRelation="board_relation",e.Button="button",e.Checkbox="checkbox",e.ColorPicker="color_picker",e.Country="country",e.CreationLog="creation_log",e.Date="date",e.Dependency="dependency",e.DirectDoc="direct_doc",e.Doc="doc",e.Dropdown="dropdown",e.Email="email",e.File="file",e.Formula="formula",e.Group="group",e.Hour="hour",e.Integration="integration",e.ItemAssignees="item_assignees",e.ItemId="item_id",e.LastUpdated="last_updated",e.Link="link",e.Location="location",e.LongText="long_text",e.Mirror="mirror",e.Name="name",e.Numbers="numbers",e.People="people",e.Person="person",e.Phone="phone",e.Progress="progress",e.Rating="rating",e.Status="status",e.Subtasks="subtasks",e.Tags="tags",e.Team="team",e.Text="text",e.TimeTracking="time_tracking",e.Timeline="timeline",e.Unsupported="unsupported",e.Vote="vote",e.Week="week",e.WorldClock="world_clock"}(K_||(K_={})),function(e){e.Or="OR"}(Q_||(Q_={})),function(e){e.InProgress="IN_PROGRESS",e.NotNow="NOT_NOW",e.Pending="PENDING",e.Todo="TODO"}(J_||(J_={})),function(e){e.Account="ACCOUNT",e.User="USER"}(X_||(X_={})),function(e){e.BrinkPink="BRINK_PINK",e.CelticBlue="CELTIC_BLUE",e.CornflowerBlue="CORNFLOWER_BLUE",e.DingyDungeon="DINGY_DUNGEON",e.GoGreen="GO_GREEN",e.Gray="GRAY",e.LightDeepPink="LIGHT_DEEP_PINK",e.LightHotPink="LIGHT_HOT_PINK",e.MayaBlue="MAYA_BLUE",e.MediumTurquoise="MEDIUM_TURQUOISE",e.ParadisePink="PARADISE_PINK",e.PhilippineGreen="PHILIPPINE_GREEN",e.PhilippineYellow="PHILIPPINE_YELLOW",e.SlateBlue="SLATE_BLUE",e.VividCerulean="VIVID_CERULEAN",e.YankeesBlue="YANKEES_BLUE",e.YellowGreen="YELLOW_GREEN",e.YellowOrange="YELLOW_ORANGE"}(Z_||(Z_={})),function(e){e.Ascending="ASCENDING",e.Camera="CAMERA",e.Conference="CONFERENCE",e.Flag="FLAG",e.Gift="GIFT",e.Headphones="HEADPHONES",e.Homekeys="HOMEKEYS",e.Location="LOCATION",e.Notebook="NOTEBOOK",e.Paperplane="PAPERPLANE",e.Plane="PLANE",e.Pliers="PLIERS",e.Tripod="TRIPOD",e.Twoflags="TWOFLAGS",e.Utencils="UTENCILS"}(eg||(eg={})),function(e){e.AutomationNotify="AUTOMATION_NOTIFY",e.ImAssigned="IM_ASSIGNED",e.ImMentioned="IM_MENTIONED"}(tg||(tg={})),function(e){e.Private="PRIVATE",e.Public="PUBLIC"}(ag||(ag={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(ig||(ig={})),function(e){e.Ff="FF",e.Fs="FS",e.Sf="SF",e.Ss="SS"}(ng||(ng={})),function(e){e.JobRole="JOB_ROLE",e.Location="LOCATION",e.Skills="SKILLS"}(og||(og={})),function(e){e.Guest="GUEST",e.User="USER",e.Viewer="VIEWER"}(rg||(rg={})),function(e){e.Monthly="MONTHLY",e.Yearly="YEARLY"}(sg||(sg={})),function(e){e.BulletedList="bulleted_list",e.CheckList="check_list",e.Code="code",e.Divider="divider",e.Image="image",e.LargeTitle="large_title",e.Layout="layout",e.MediumTitle="medium_title",e.NormalText="normal_text",e.NoticeBox="notice_box",e.NumberedList="numbered_list",e.PageBreak="page_break",e.Quote="quote",e.SmallTitle="small_title",e.Table="table",e.Video="video"}(dg||(dg={})),function(e){e.Private="private",e.Public="public",e.Share="share"}(pg||(pg={})),function(e){e.Board="BOARD",e.Doc="DOC",e.User="USER"}(lg||(lg={})),function(e){e.CreatedAt="created_at",e.UsedAt="used_at"}(cg||(cg={})),function(e){e.DuplicateBoardWithPulses="duplicate_board_with_pulses",e.DuplicateBoardWithPulsesAndUpdates="duplicate_board_with_pulses_and_updates",e.DuplicateBoardWithStructure="duplicate_board_with_structure"}(mg||(mg={})),function(e){e.DuplicateDocWithContent="duplicate_doc_with_content",e.DuplicateDocWithContentAndUpdates="duplicate_doc_with_content_and_updates"}(ug||(ug={})),function(e){e.Allocated="ALLOCATED",e.Available="AVAILABLE",e.Planned="PLANNED",e.Spent="SPENT"}(hg||(hg={})),function(e){e.Daily="DAILY",e.Fte="FTE",e.Monthly="MONTHLY",e.Total="TOTAL",e.Weekly="WEEKLY"}(fg||(fg={})),function(e){e.BoardInaccessible="BOARD_INACCESSIBLE",e.BoardUnavailable="BOARD_UNAVAILABLE",e.InternalError="INTERNAL_ERROR",e.InvalidRequest="INVALID_REQUEST",e.ItemLimitExceeded="ITEM_LIMIT_EXCEEDED",e.NotFound="NOT_FOUND"}(_g||(_g={})),function(e){e.Csv="CSV",e.Xlsx="XLSX"}(gg||(gg={})),function(e){e.Completed="COMPLETED",e.Failed="FAILED",e.Running="RUNNING"}(bg||(bg={})),function(e){e.ClaudeManagedAgent="CLAUDE_MANAGED_AGENT",e.CustomAgent="CUSTOM_AGENT",e.Openai="OPENAI"}(vg||(vg={})),function(e){e.AppFeature="APP_FEATURE",e.Battery="BATTERY",e.Calendar="CALENDAR",e.Chart="CHART",e.EmbeddedSite="EMBEDDED_SITE",e.Gantt="GANTT",e.Listview="LISTVIEW",e.Map="MAP",e.Number="NUMBER",e.Table="TABLE"}(yg||(yg={})),function(e){e.Negative="NEGATIVE",e.Positive="POSITIVE"}(Ig||(Ig={})),function(e){e.Custom="CUSTOM",e.Interface="INTERFACE",e.Primitive="PRIMITIVE"}(wg||(wg={})),function(e){e.Active="ACTIVE",e.Deleted="DELETED"}(Tg||(Tg={})),function(e){e.Asset="asset",e.Box="box",e.Doc="doc",e.Dropbox="dropbox",e.GoogleDrive="google_drive",e.Link="link",e.Onedrive="onedrive"}(Eg||(Eg={})),function(e){e.Box="box",e.Dropbox="dropbox",e.GoogleDrive="google_drive",e.Link="link",e.Onedrive="onedrive"}(Ag||(Ag={})),function(e){e.Monday="monday",e.Sunday="sunday"}(Sg||(Sg={})),function(e){e.Aquamarine="AQUAMARINE",e.BrightBlue="BRIGHT_BLUE",e.BrightGreen="BRIGHT_GREEN",e.ChiliBlue="CHILI_BLUE",e.DarkOrange="DARK_ORANGE",e.DarkPurple="DARK_PURPLE",e.DarkRed="DARK_RED",e.DoneGreen="DONE_GREEN",e.Indigo="INDIGO",e.Lipstick="LIPSTICK",e.Null="NULL",e.Purple="PURPLE",e.SofiaPink="SOFIA_PINK",e.StuckRed="STUCK_RED",e.Sunset="SUNSET",e.WorkingOrange="WORKING_ORANGE"}(Ng||(Ng={})),function(e){e.Folder="FOLDER",e.Morebelow="MOREBELOW",e.Morebelowfilled="MOREBELOWFILLED",e.Null="NULL",e.Work="WORK"}(Dg||(Dg={})),function(e){e.FontWeightBold="FONT_WEIGHT_BOLD",e.FontWeightLight="FONT_WEIGHT_LIGHT",e.FontWeightNormal="FONT_WEIGHT_NORMAL",e.FontWeightVeryLight="FONT_WEIGHT_VERY_LIGHT",e.Null="NULL"}(Og||(Og={})),function(e){e.Center="Center",e.FullLeft="FullLeft",e.FullRight="FullRight",e.Left="Left",e.Right="Right"}(kg||(kg={})),function(e){e.Color="Color",e.Image="Image",e.None="None"}(Cg||(Cg={})),function(e){e.LtR="LtR",e.Rtl="Rtl"}(Rg||(Rg={})),function(e){e.Large="Large",e.Medium="Medium",e.Small="Small"}($g||($g={})),function(e){e.Card="CARD",e.Flat="FLAT"}(xg||(xg={})),function(e){e.Auto="Auto",e.Center="Center",e.Left="Left",e.Right="Right"}(Lg||(Lg={})),function(e){e.ExtraLarge="ExtraLarge",e.Large="Large",e.Medium="Medium",e.Small="Small"}(Ug||(Ug={})),function(e){e.Account="Account",e.QueryParam="QueryParam"}(Pg||(Pg={})),function(e){e.Dropdown="Dropdown",e.Horizontal="Horizontal",e.Vertical="Vertical"}(Fg||(Fg={})),function(e){e.Alphabetical="Alphabetical",e.Custom="Custom",e.Random="Random"}(Vg||(Vg={})),function(e){e.Boolean="Boolean",e.ConnectedBoards="ConnectedBoards",e.Country="Country",e.DisplayText="DISPLAY_TEXT",e.Date="Date",e.DateRange="DateRange",e.Email="Email",e.File="File",e.Hour="HOUR",e.Link="Link",e.Location="Location",e.LongText="LongText",e.MultiSelect="MultiSelect",e.Name="Name",e.Number="Number",e.PageBlock="PAGE_BLOCK",e.People="People",e.Phone="Phone",e.Rating="Rating",e.ShortText="ShortText",e.Signature="Signature",e.SingleSelect="SingleSelect",e.Subitems="Subitems",e.Updates="Updates"}(Mg||(Mg={})),function(e){e.Board="Board",e.Dashboard="Dashboard",e.Folder="Folder",e.Workspace="Workspace"}(Bg||(Bg={})),function(e){e.Color="color",e.Position="position",e.RelativePositionAfter="relative_position_after",e.RelativePositionBefore="relative_position_before",e.Title="title"}(zg||(zg={})),function(e){e.JobRole="JOB_ROLE",e.Location="LOCATION",e.ResourceManager="RESOURCE_MANAGER",e.Skills="SKILLS",e.Teams="TEAMS"}(jg||(jg={})),function(e){e.And="AND",e.Or="OR"}(qg||(qg={})),function(e){e.ColumnId="COLUMN_ID",e.Title="TITLE"}(Gg||(Gg={})),function(e){e.DataLimit="DATA_LIMIT",e.PlanLimit="PLAN_LIMIT"}(Hg||(Hg={})),function(e){e.AccountLevel="ACCOUNT_LEVEL",e.AppFeatureObject="APP_FEATURE_OBJECT",e.Board="BOARD"}(Wg||(Wg={})),function(e){e.AccountLevelBlocking="ACCOUNT_LEVEL_BLOCKING",e.DeactivatedByUser="DEACTIVATED_BY_USER",e.RunsRateLimitExceeded="RUNS_RATE_LIMIT_EXCEEDED"}(Yg||(Yg={})),function(e){e.AgentUserCreation="AGENT_USER_CREATION",e.ApiUserCreation="API_USER_CREATION",e.AuthDomain="AUTH_DOMAIN",e.Consolidation="CONSOLIDATION",e.FirstUser="FIRST_USER",e.InternalCreation="INTERNAL_CREATION",e.Scim="SCIM",e.ServicePortalAuthDomain="SERVICE_PORTAL_AUTH_DOMAIN",e.ServicePortalUserInvitation="SERVICE_PORTAL_USER_INVITATION",e.Sso="SSO",e.SystemCreation="SYSTEM_CREATION",e.Unknown="UNKNOWN",e.User="USER"}(Kg||(Kg={})),function(e){e.Error="ERROR"}(Qg||(Qg={})),function(e){e.AnyOf="ANY_OF",e.EndsWith="ENDS_WITH",e.GreaterThan="GREATER_THAN",e.GreaterThanOrEquals="GREATER_THAN_OR_EQUALS",e.IsEmpty="IS_EMPTY",e.IsNotEmpty="IS_NOT_EMPTY",e.LowerThan="LOWER_THAN",e.LowerThanOrEqual="LOWER_THAN_OR_EQUAL",e.NotAnyOf="NOT_ANY_OF",e.StartsWith="STARTS_WITH"}(Jg||(Jg={})),function(e){e.Table="TABLE"}(Xg||(Xg={})),function(e){e.Average="AVERAGE",e.Color="COLOR",e.Count="COUNT",e.CountDistinct="COUNT_DISTINCT",e.CountItems="COUNT_ITEMS",e.First="FIRST",e.Id="ID",e.IsDone="IS_DONE",e.Label="LABEL",e.Length="LENGTH",e.Lower="LOWER",e.Max="MAX",e.Median="MEDIAN",e.Min="MIN",e.Sum="SUM",e.Trim="TRIM",e.Upper="UPPER"}(Zg||(Zg={})),function(e){e.And="AND",e.Or="OR"}(eb||(eb={})),function(e){e.Column="COLUMN",e.Function="FUNCTION"}(tb||(tb={})),function(e){e.Asc="ASC",e.Desc="DESC"}(ab||(ab={})),function(e){e.Asc="asc",e.Desc="desc"}(ib||(ib={})),function(e){e.Calculated="CALCULATED",e.Visibility="VISIBILITY"}(nb||(nb={})),function(e){e.AutoNumber="auto_number",e.BoardRelation="board_relation",e.Button="button",e.Checkbox="checkbox",e.ColorPicker="color_picker",e.Country="country",e.CreationLog="creation_log",e.Date="date",e.Dependency="dependency",e.DirectDoc="direct_doc",e.Doc="doc",e.Dropdown="dropdown",e.Email="email",e.File="file",e.Formula="formula",e.Hour="hour",e.ItemId="item_id",e.LastUpdated="last_updated",e.Link="link",e.Location="location",e.LongText="long_text",e.Mirror="mirror",e.Numbers="numbers",e.People="people",e.Phone="phone",e.Progress="progress",e.Rating="rating",e.Status="status",e.Subtasks="subtasks",e.Tags="tags",e.Text="text",e.TimeTracking="time_tracking",e.Timeline="timeline",e.Unsupported="unsupported",e.Vote="vote",e.Week="week",e.WorldClock="world_clock"}(ob||(ob={})),function(e){e.And="and",e.Or="or"}(rb||(rb={})),function(e){e.AnyOf="any_of",e.Between="between",e.ContainsTerms="contains_terms",e.ContainsText="contains_text",e.EndsWith="ends_with",e.GreaterThan="greater_than",e.GreaterThanOrEquals="greater_than_or_equals",e.IsEmpty="is_empty",e.IsNotEmpty="is_not_empty",e.LowerThan="lower_than",e.LowerThanOrEqual="lower_than_or_equal",e.NotAnyOf="not_any_of",e.NotContainsText="not_contains_text",e.StartsWith="starts_with",e.WithinTheLast="within_the_last",e.WithinTheNext="within_the_next"}(sb||(sb={})),function(e){e.Cancelled="CANCELLED",e.Completed="COMPLETED",e.Expired="EXPIRED",e.Failed="FAILED",e.Pending="PENDING",e.Running="RUNNING"}(db||(db={})),function(e){e.Agent="agent",e.Person="person",e.Team="team"}(pb||(pb={})),function(e){e.Read="READ",e.ReadWrite="READ_WRITE"}(lb||(lb={})),function(e){e.Board="BOARD",e.Doc="DOC",e.Workspace="WORKSPACE"}(cb||(cb={})),function(e){e.File="FILE"}(mb||(mb={})),function(e){e.Active="ACTIVE",e.Deleted="DELETED",e.Pending="PENDING"}(ub||(ub={})),function(e){e.BulletedList="BULLETED_LIST",e.CheckList="CHECK_LIST",e.NumberedList="NUMBERED_LIST"}(hb||(hb={})),function(e){e.Active="active",e.Deleted="deleted",e.Inactive="inactive"}(fb||(fb={})),function(e){e.Dropdown="dropdown",e.Status="status"}(_b||(_b={})),function(e){e.Own="OWN",e.SharedWithAccount="SHARED_WITH_ACCOUNT",e.SharedWithMe="SHARED_WITH_ME"}(gb||(gb={})),function(e){e.All="ALL",e.Own="OWN",e.SharedWithAccount="SHARED_WITH_ACCOUNT",e.SharedWithMe="SHARED_WITH_ME"}(bb||(bb={})),function(e){e.Agent="Agent",e.Board="Board",e.Project="Project",e.Team="Team",e.User="User"}(vb||(vb={})),function(e){e.Earliest="EARLIEST",e.EarliestToLatest="EARLIEST_TO_LATEST",e.Latest="LATEST"}(yb||(yb={})),function(e){e.AllStatuses="ALL_STATUSES",e.DoneOnly="DONE_ONLY"}(Ib||(Ib={})),function(e){e.Error="ERROR",e.Include="INCLUDE",e.Skip="SKIP"}(wb||(wb={})),function(e){e.General="GENERAL",e.Info="INFO",e.Tips="TIPS",e.Warning="WARNING"}(Tb||(Tb={})),function(e){e.Post="Post",e.Project="Project"}(Eb||(Eb={})),function(e){e.Left="left",e.Right="right"}(Ab||(Ab={})),function(e){e.CreateObjectSchemaColumns="CREATE_OBJECT_SCHEMA_COLUMNS",e.DeleteObjectSchemaColumns="DELETE_OBJECT_SCHEMA_COLUMNS",e.UpdateObjectSchemaColumns="UPDATE_OBJECT_SCHEMA_COLUMNS"}(Sb||(Sb={})),function(e){e.Active="ACTIVE",e.Archived="ARCHIVED",e.Deleted="DELETED"}(Nb||(Nb={})),function(e){e.Board="Board",e.Folder="Folder",e.Overview="Overview"}(Db||(Db={})),function(e){e.Skip="SKIP",e.Upsert="UPSERT"}(Ob||(Ob={})),function(e){e.CreatedAt="CREATED_AT",e.UsedAt="USED_AT"}(kb||(kb={})),function(e){e.Placeholder="PLACEHOLDER",e.User="USER"}(Cb||(Cb={})),function(e){e.AfterAt="after_at",e.BeforeAt="before_at"}(Rb||(Rb={})),function(e){e.Boolean="BOOLEAN",e.Date="DATE",e.Float="FLOAT",e.Hour="HOUR",e.Number="NUMBER",e.String="STRING"}($b||($b={})),function(e){e.Private="PRIVATE",e.Public="PUBLIC"}(xb||(xb={})),function(e){e.Crm="crm",e.Dev="dev",e.Forms="forms",e.Knowledge="knowledge",e.Service="service",e.Whiteboard="whiteboard",e.WorkManagement="work_management",e.Workflows="workflows"}(Lb||(Lb={})),function(e){e.Incoming="INCOMING",e.Outgoing="OUTGOING"}(Ub||(Ub={})),function(e){e.Alias="ALIAS",e.Dependency="DEPENDENCY"}(Pb||(Pb={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND",e.UserNotMemberOfTeam="USER_NOT_MEMBER_OF_TEAM",e.ViewersOrGuests="VIEWERS_OR_GUESTS"}(Fb||(Fb={})),function(e){e.BaseRole="BASE_ROLE",e.Email="EMAIL",e.JobRole="JOB_ROLE",e.Location="LOCATION",e.Name="NAME",e.ResourceManager="RESOURCE_MANAGER",e.Skills="SKILLS",e.Status="STATUS",e.Teams="TEAMS"}(Vb||(Vb={})),function(e){e.Failed="failed",e.Pending="pending",e.Processing="processing",e.Rollback="rollback",e.Success="success"}(Mb||(Mb={})),function(e){e.AnyOf="ANY_OF",e.Between="BETWEEN",e.ContainsText="CONTAINS_TEXT",e.Equals="EQUALS",e.GreaterThan="GREATER_THAN",e.GreaterThanOrEquals="GREATER_THAN_OR_EQUALS",e.IsEmpty="IS_EMPTY",e.IsNotEmpty="IS_NOT_EMPTY",e.LowerThan="LOWER_THAN",e.LowerThanOrEqual="LOWER_THAN_OR_EQUAL",e.NotAnyOf="NOT_ANY_OF",e.NotContainsText="NOT_CONTAINS_TEXT",e.NotEquals="NOT_EQUALS",e.StartsWithText="STARTS_WITH_TEXT"}(Bb||(Bb={})),function(e){e.Api="API",e.Assigned="ASSIGNED",e.Automation="AUTOMATION",e.Chat="CHAT",e.Mention="MENTION",e.Schedule="SCHEDULE"}(zb||(zb={})),function(e){e.Completed="COMPLETED",e.Executing="EXECUTING",e.Failed="FAILED",e.NeedsConfirmation="NEEDS_CONFIRMATION",e.Running="RUNNING",e.Stopped="STOPPED",e.StoppedBySystem="STOPPED_BY_SYSTEM",e.Thinking="THINKING",e.WaitingClarification="WAITING_CLARIFICATION"}(jb||(jb={})),function(e){e.AccountNewUserDefaults="AccountNewUserDefaults",e.User="User"}(qb||(qb={})),function(e){e.Balanced="BALANCED",e.Quality="QUALITY",e.Speed="SPEED"}(Gb||(Gb={})),function(e){e.Board="BOARD"}(Hb||(Hb={})),function(e){e.Active="ACTIVE",e.Deleted="DELETED",e.Inactive="INACTIVE",e.MissingConfig="MISSING_CONFIG"}(Wb||(Wb={})),function(e){e.Failed="failed",e.Pending="pending",e.Processing="processing",e.Rollback="rollback",e.Success="success"}(Yb||(Yb={})),function(e){e.Asc="ASC",e.Desc="DESC"}(Kb||(Kb={})),function(e){e.Complete="COMPLETE",e.Start="START"}(Qb||(Qb={})),function(e){e.Active="ACTIVE",e.Completed="COMPLETED",e.Planned="PLANNED"}(Jb||(Jb={})),function(e){e.Active="active",e.All="all",e.Archived="archived",e.Deleted="deleted"}(Xb||(Xb={})),function(e){e.CountKeys="COUNT_KEYS"}(Zb||(Zb={})),function(e){e.AmericanGray="american_gray",e.Aquamarine="aquamarine",e.Berry="berry",e.Blackish="blackish",e.BrightBlue="bright_blue",e.BrightGreen="bright_green",e.Brown="brown",e.Bubble="bubble",e.ChiliBlue="chili_blue",e.Coffee="coffee",e.DarkBlue="dark_blue",e.DarkIndigo="dark_indigo",e.DarkOrange="dark_orange",e.DarkPurple="dark_purple",e.DarkRed="dark_red",e.DoneGreen="done_green",e.EggYolk="egg_yolk",e.Explosive="explosive",e.GrassGreen="grass_green",e.Indigo="indigo",e.Lavender="lavender",e.Lilac="lilac",e.Lipstick="lipstick",e.Navy="navy",e.Orchid="orchid",e.Peach="peach",e.Pecan="pecan",e.Purple="purple",e.River="river",e.Royal="royal",e.Saladish="saladish",e.Sky="sky",e.SofiaPink="sofia_pink",e.Steel="steel",e.StuckRed="stuck_red",e.Sunset="sunset",e.Tan="tan",e.Teal="teal",e.Winter="winter",e.WorkingOrange="working_orange"}(ev||(ev={})),function(e){e.Owner="OWNER",e.Subscriber="SUBSCRIBER"}(tv||(tv={})),function(e){e.Nominal="nominal",e.Percent="percent"}(av||(av={})),function(e){e.OneTime="one_time",e.Recurring="recurring"}(iv||(iv={})),function(e){e.Monthly="monthly",e.Yearly="yearly"}(nv||(nv={})),function(e){e.Active="active",e.Inactive="inactive"}(ov||(ov={})),function(e){e.Board="BOARD",e.Dashboard="DASHBOARD"}(rv||(rv={})),function(e){e.Create="CREATE",e.Update="UPDATE"}(sv||(sv={})),function(e){e.UpdateMention="UPDATE_MENTION",e.UserAssigned="USER_ASSIGNED"}(dv||(dv={})),function(e){e.Done="DONE",e.InProgress="IN_PROGRESS",e.NotATask="NOT_A_TASK",e.NotNow="NOT_NOW",e.NoLongerRelevant="NO_LONGER_RELEVANT",e.Pending="PENDING",e.Todo="TODO"}(pv||(pv={})),function(e){e.Complete="COMPLETE",e.Failed="FAILED",e.InProgress="IN_PROGRESS",e.Pending="PENDING"}(lv||(lv={})),function(e){e.Code="CODE",e.LargeTitle="LARGE_TITLE",e.MediumTitle="MEDIUM_TITLE",e.NormalText="NORMAL_TEXT",e.Quote="QUOTE",e.SmallTitle="SMALL_TITLE"}(cv||(cv={})),function(e){e.Days="DAYS",e.Months="MONTHS",e.Quarters="QUARTERS",e.Weeks="WEEKS",e.Years="YEARS"}(mv||(mv={})),function(e){e.Custom="CUSTOM",e.Holiday="HOLIDAY"}(uv||(uv={})),function(e){e.Activity="activity",e.AiAssistant="aiAssistant",e.AiReply="aiReply",e.AiSummary="aiSummary",e.Campaigns="campaigns",e.Custom="custom",e.CustomInternalApp="customInternalApp",e.DemoEmail="demoEmail",e.Email="email",e.Form="form",e.GoogleCalendar="googleCalendar",e.Meeting="meeting",e.MergedTickets="mergedTickets",e.Note="note",e.OutlookCalendar="outlookCalendar",e.OutreachExpertPhoneCall="outreachExpertPhoneCall",e.OutreachExpertPhoneCallV2="outreachExpertPhoneCallV2",e.PhoneCall="phoneCall",e.Portal="portal",e.PortfolioStatus="portfolio_status",e.SequencesEmail="sequencesEmail",e.VideoMeeting="videoMeeting",e.Zoom="zoom"}(hv||(hv={})),function(e){e.Crm="crm",e.Service="service"}(fv||(fv={})),function(e){e.Exhausted="exhausted",e.Failure="failure",e.Success="success"}(_v||(_v={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UpdateEmailDomainError="UPDATE_EMAIL_DOMAIN_ERROR",e.UserNotFound="USER_NOT_FOUND"}(gv||(gv={})),function(e){e.InvalidField="INVALID_FIELD"}(bv||(bv={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(vv||(vv={})),function(e){e.All="all",e.Guests="guests",e.NonGuests="non_guests",e.NonPending="non_pending"}(yv||(yv={})),function(e){e.Admin="ADMIN",e.AgentMember="AGENT_MEMBER",e.AgentSignupUser="AGENT_SIGNUP_USER",e.AiPlatformAgentApiUser="AI_PLATFORM_AGENT_API_USER",e.Basic="BASIC",e.CampaignsApiUser="CAMPAIGNS_API_USER",e.CrmCommerceApiUser="CRM_COMMERCE_API_USER",e.DataRetentionApiUser="DATA_RETENTION_API_USER",e.DependenciesApiUser="DEPENDENCIES_API_USER",e.ExternalAgentDetachedMember="EXTERNAL_AGENT_DETACHED_MEMBER",e.ExternalAgentMember="EXTERNAL_AGENT_MEMBER",e.GoalsApiUser="GOALS_API_USER",e.Guest="GUEST",e.HistoricalTrackingBackfillApiUser="HISTORICAL_TRACKING_BACKFILL_API_USER",e.Member="MEMBER",e.MondayServiceApiUser="MONDAY_SERVICE_API_USER",e.NexusApiUser="NEXUS_API_USER",e.OmnichannelApiUser="OMNICHANNEL_API_USER",e.PersonalAgentMember="PERSONAL_AGENT_MEMBER",e.Portal="PORTAL",e.PortfolioApiUser="PORTFOLIO_API_USER",e.ProjectsApiUser="PROJECTS_API_USER",e.ResourceDirectoryApiUser="RESOURCE_DIRECTORY_API_USER",e.ServiceUser="SERVICE_USER",e.SprintManagementApiUser="SPRINT_MANAGEMENT_API_USER",e.VibeUser="VIBE_USER",e.ViewOnly="VIEW_ONLY"}(Iv||(Iv={})),function(e){e.Admin="ADMIN",e.Guest="GUEST",e.Member="MEMBER",e.ViewOnly="VIEW_ONLY"}(wv||(wv={})),function(e){e.Active="ACTIVE",e.Inactive="INACTIVE",e.Pending="PENDING"}(Tv||(Tv={})),function(e){e.Asc="ASC",e.Desc="DESC"}(Ev||(Ev={})),function(e){e.CreatedAt="CREATED_AT"}(Av||(Av={})),function(e){e.Allocated="ALLOCATED",e.Available="AVAILABLE",e.Spent="SPENT"}(Sv||(Sv={})),function(e){e.Board="board"}(Nv||(Nv={})),function(e){e.Current="current",e.Deprecated="deprecated",e.Dev="dev",e.Maintenance="maintenance",e.OldMaintenance="old__maintenance",e.OldPreviousMaintenance="old_previous_maintenance",e.PreviousMaintenance="previous_maintenance",e.ReleaseCandidate="release_candidate"}(Dv||(Dv={})),function(e){e.Board="BOARD",e.Item="ITEM"}(Ov||(Ov={})),function(e){e.App="APP",e.Dashboard="DASHBOARD",e.Form="FORM",e.Table="TABLE"}(kv||(kv={})),function(e){e.Create="CREATE",e.Update="UPDATE"}(Cv||(Cv={})),function(e){e.ChangeColumnValue="change_column_value",e.ChangeName="change_name",e.ChangeSpecificColumnValue="change_specific_column_value",e.ChangeStatusColumnValue="change_status_column_value",e.ChangeSubitemColumnValue="change_subitem_column_value",e.ChangeSubitemName="change_subitem_name",e.CreateColumn="create_column",e.CreateItem="create_item",e.CreateSubitem="create_subitem",e.CreateSubitemUpdate="create_subitem_update",e.CreateUpdate="create_update",e.DeleteUpdate="delete_update",e.EditUpdate="edit_update",e.ItemArchived="item_archived",e.ItemDeleted="item_deleted",e.ItemMovedToAnyGroup="item_moved_to_any_group",e.ItemMovedToSpecificGroup="item_moved_to_specific_group",e.ItemRestored="item_restored",e.MoveSubitem="move_subitem",e.SubitemArchived="subitem_archived",e.SubitemDeleted="subitem_deleted"}(Rv||(Rv={})),function(e){e.Friday="FRIDAY",e.Monday="MONDAY",e.Saturday="SATURDAY",e.Sunday="SUNDAY",e.Thursday="THURSDAY",e.Tuesday="TUESDAY",e.Wednesday="WEDNESDAY"}($v||($v={})),function(e){e.BoardView="BOARD_VIEW",e.Dashboard="DASHBOARD"}(xv||(xv={})),function(e){e.Error="ERROR",e.Ok="OK"}(Lv||(Lv={})),function(e){e.Wait="WAIT"}(Uv||(Uv={})),function(e){e.Private="PRIVATE",e.Public="PUBLIC",e.Shareable="SHAREABLE"}(Pv||(Pv={})),function(e){e.LiteBuilder="LITE_BUILDER"}(Fv||(Fv={})),function(e){e.ExternalContextProvider="external_context_provider",e.HostMetadata="host_metadata",e.NodeResults="node_results",e.Reference="reference",e.UserConfig="user_config"}(Vv||(Vv={})),function(e){e.Closed="closed",e.Open="open",e.Template="template"}(Mv||(Mv={})),function(e){e.All="all",e.Member="member"}(Bv||(Bv={})),function(e){e.Owner="owner",e.Subscriber="subscriber"}(zv||(zv={})),function(e){e.CreatedAt="created_at"}(jv||(jv={})),function(e){e.Core="core",e.Crm="crm",e.Forms="forms",e.Marketing="marketing",e.ProjectManagement="project_management",e.Service="service",e.Software="software",e.Whiteboard="whiteboard"}(qv||(qv={}));const Gv=Fd`
2313
+ `,bf=10485760,vf=5e4,yf=new Set([".png",".jpg",".jpeg",".gif",".webp",".svg",".bmp",".ico"]),If=new Set([".pdf"]),wf=new Set([".docx"]),Tf=new Set([".xlsx"]),Ef=new Set([".xls"]),Af=new Set([".txt",".md",".csv",".json"]),Sf={item_id:n.z.string().describe("The ID of the item that contains the file. Obtained from get_board_items_page results."),column_id:n.z.string().describe("The ID of the files column containing the file. Obtained from the board schema."),file_name:n.z.string().optional().describe('Optional file name hint used to determine the file type when the asset name is ambiguous. Include the extension (e.g. "report.pdf").'),offset:n.z.number().int().min(0).optional().describe("Character offset to start reading from. Use when a previous response indicated the content was truncated (has_more: true). Defaults to 0.")};function Nf(e){const t=e.lastIndexOf(".");return-1===t?"":e.slice(t).toLowerCase()}function Df(e){if(null==e)return"";if("number"==typeof e||"boolean"==typeof e||"string"==typeof e)return String(e);if(e instanceof Date)return e.toISOString();if("object"==typeof e){if("result"in e)return Df(e.result);if("richText"in e)return e.richText.map((e=>e.text)).join("");if("hyperlink"in e)return e.text??""}return""}async function Of(e,t,a){const i=function(e,t){if(t){const e=Nf(t);if(e)return e}return e.file_extension?e.file_extension.startsWith(".")?e.file_extension.toLowerCase():`.${e.file_extension.toLowerCase()}`:Nf(e.name)}(e,a);try{if(yf.has(i))return{file_name:e.name,file_extension:i,content_type:"image",public_url:e.public_url,message:"Image file — use the public_url to view or analyze its content."};if(Ef.has(i))return{file_name:e.name,file_extension:i,message:"Legacy .xls format is not supported. Please convert the file to .xlsx and re-upload."};const a=await async function(e){const t=await fetch(e,{signal:AbortSignal.timeout(3e4)});if(!t.ok)throw new Error(`Failed to download file: HTTP ${t.status}`);const a=t.headers.get("content-length");if(a&&parseInt(a,10)>bf)throw new Error(`File exceeds the 10 MB size limit (Content-Length: ${a} bytes)`);if(!t.body)throw new Error("Response body is empty");const i=t.body.getReader(),n=[];let o=0;try{let e=await i.read();for(;!e.done;){const{value:t}=e;if(o+=t.byteLength,o>bf)throw await i.cancel().catch((()=>{})),new Error("File exceeds the 10 MB size limit");n.push(t),e=await i.read()}}catch(e){throw await i.cancel().catch((()=>{})),e}return Buffer.concat(n)}(e.public_url);let n,o;If.has(i)?(n=await async function(e){const t=await m.getDocumentProxy(new Uint8Array(e)),{text:a}=await m.extractText(t,{mergePages:!0});return a}(a),o="pdf"):wf.has(i)?(n=await async function(e){return(await O.default.extractRawText({buffer:e})).value}(a),o="word"):Tf.has(i)?(n=await async function(e){const t=new k.default.Workbook;await t.xlsx.load(e);const a=[];return t.eachSheet((e=>{const t=[];e.eachRow((e=>{const a=e.values.slice(1);t.push(a.map(Df).join(","))})),a.push(`=== Sheet: ${e.name} ===\n${t.join("\n")}`)})),a.join("\n\n")}(a),o="excel"):Af.has(i)?(n=a.toString("utf-8"),o="text"):(n=a.toString("utf-8"),o="unknown");const r=n.slice(t,t+vf),s=n.length>t+vf;return{file_name:e.name,file_extension:i,content_type:o,text:r,total_length:n.length,...If.has(i)&&{public_url:e.public_url},...s&&{has_more:!0,next_offset:t+vf}}}catch(t){return{message:`Failed to fetch file content: ${t instanceof Error?t.message:String(t)}`,file_name:e.name,file_extension:i}}}var kf,Cf,Rf,$f,xf,Lf,Uf,Pf,Ff,Vf,Mf,Bf,zf,jf,qf,Gf,Hf,Wf,Yf,Kf,Qf,Jf,Xf,Zf,e_,t_,a_,i_,n_,o_,r_,s_,d_,p_,l_,c_,m_,u_,h_,f_,__,g_,b_,v_,y_,I_,w_,T_,E_,A_,S_,N_,D_,O_,k_,C_,R_,$_,x_,L_,U_,P_,F_,V_,M_,B_,z_,j_,q_,G_,H_,W_,Y_,K_,Q_,J_,X_,Z_,eg,tg,ag,ig,ng,og,rg,sg,dg,pg,lg,cg,mg,ug,hg,fg,_g,gg,bg,vg,yg,Ig,wg,Tg,Eg,Ag,Sg,Ng,Dg,Og,kg,Cg,Rg,$g,xg,Lg,Ug,Pg,Fg,Vg,Mg,Bg,zg,jg,qg,Gg,Hg,Wg,Yg,Kg,Qg,Jg,Xg,Zg,eb,tb,ab,ib,nb,ob,rb,sb,db,pb,lb,cb,mb,ub,hb,fb,_b,gb,bb,vb,yb,Ib,wb,Tb,Eb,Ab,Sb,Nb,Db,Ob,kb,Cb,Rb,$b,xb,Lb,Ub,Pb,Fb,Vb,Mb,Bb,zb,jb,qb,Gb,Hb,Wb,Yb,Kb,Qb,Jb,Xb,Zb,ev,tv,av,iv,nv,ov,rv,sv,dv,pv,lv,cv,mv,uv,hv,fv,_v,gv,bv,vv,yv,Iv,wv,Tv,Ev,Av,Sv,Nv,Dv,Ov,kv,Cv,Rv,$v,xv,Lv,Uv,Pv,Fv,Vv,Mv,Bv,zv,jv,qv,Gv;!function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(kf||(kf={})),function(e){e.Audio="AUDIO",e.Board="BOARD",e.Doc="DOC",e.Html="HTML",e.Image="IMAGE",e.Item="ITEM",e.Update="UPDATE",e.VibeApp="VIBE_APP",e.Video="VIDEO",e.View="VIEW"}(Cf||(Cf={})),function(e){e.Asset="ASSET",e.MondayEntity="MONDAY_ENTITY"}(Rf||(Rf={})),function(e){e.AccountLevel="ACCOUNT_LEVEL",e.External="EXTERNAL",e.Personal="PERSONAL"}($f||($f={})),function(e){e.Member="MEMBER",e.Owner="OWNER"}(xf||(xf={})),function(e){e.ClaudeFable_5="CLAUDE_FABLE_5",e.ClaudeOpus_4_7="CLAUDE_OPUS_4_7",e.ClaudeSonnet_4_6="CLAUDE_SONNET_4_6",e.Gemini_2_5Flash="GEMINI_2_5_FLASH",e.Gpt_5_2="GPT_5_2"}(Lf||(Lf={})),function(e){e.ActionIntent="ACTION_INTENT",e.ClarificationReceived="CLARIFICATION_RECEIVED",e.ClarificationRequested="CLARIFICATION_REQUESTED",e.FeedbackGiven="FEEDBACK_GIVEN",e.PlanCreated="PLAN_CREATED",e.RunCompleted="RUN_COMPLETED",e.RunFailed="RUN_FAILED",e.RunStarted="RUN_STARTED",e.RunStopped="RUN_STOPPED",e.StepCompleted="STEP_COMPLETED",e.StepFailed="STEP_FAILED",e.StepRetry="STEP_RETRY",e.StepStarted="STEP_STARTED",e.StepSummary="STEP_SUMMARY",e.Thinking="THINKING",e.ToolCalled="TOOL_CALLED",e.ToolCompleted="TOOL_COMPLETED",e.ToolFailed="TOOL_FAILED"}(Uf||(Uf={})),function(e){e.Active="ACTIVE",e.Archived="ARCHIVED",e.Deleted="DELETED",e.Failed="FAILED",e.Inactive="INACTIVE"}(Pf||(Pf={})),function(e){e.Team="TEAM",e.User="USER"}(Ff||(Ff={})),function(e){e.DataView="DATA_VIEW",e.Table="TABLE"}(Vf||(Vf={})),function(e){e.AnyOf="ANY_OF",e.EndsWith="ENDS_WITH",e.GreaterThan="GREATER_THAN",e.GreaterThanOrEquals="GREATER_THAN_OR_EQUALS",e.IsEmpty="IS_EMPTY",e.IsNotEmpty="IS_NOT_EMPTY",e.LowerThan="LOWER_THAN",e.LowerThanOrEqual="LOWER_THAN_OR_EQUAL",e.NotAnyOf="NOT_ANY_OF",e.StartsWith="STARTS_WITH"}(Mf||(Mf={})),function(e){e.Table="TABLE",e.Union="UNION"}(Bf||(Bf={})),function(e){e.Average="AVERAGE",e.Color="COLOR",e.Count="COUNT",e.CountDistinct="COUNT_DISTINCT",e.CountItems="COUNT_ITEMS",e.DateTruncDay="DATE_TRUNC_DAY",e.DateTruncMonth="DATE_TRUNC_MONTH",e.DateTruncQuarter="DATE_TRUNC_QUARTER",e.DateTruncWeek="DATE_TRUNC_WEEK",e.DateTruncYear="DATE_TRUNC_YEAR",e.First="FIRST",e.Id="ID",e.IsDone="IS_DONE",e.Label="LABEL",e.Length="LENGTH",e.Lower="LOWER",e.Max="MAX",e.Median="MEDIAN",e.Min="MIN",e.Sum="SUM",e.Trim="TRIM",e.Upper="UPPER"}(zf||(zf={})),function(e){e.And="AND",e.Or="OR"}(jf||(jf={})),function(e){e.Column="COLUMN",e.Function="FUNCTION"}(qf||(qf={})),function(e){e.Asc="ASC",e.Desc="DESC"}(Gf||(Gf={})),function(e){e.Table="TABLE"}(Hf||(Hf={})),function(e){e.Column="COLUMN",e.Function="FUNCTION"}(Wf||(Wf={})),function(e){e.Average="AVERAGE",e.Between="BETWEEN",e.Case="CASE",e.Color="COLOR",e.Count="COUNT",e.CountDistinct="COUNT_DISTINCT",e.CountItems="COUNT_ITEMS",e.CountKeys="COUNT_KEYS",e.CountSubitems="COUNT_SUBITEMS",e.Date="DATE",e.DateTruncDay="DATE_TRUNC_DAY",e.DateTruncMonth="DATE_TRUNC_MONTH",e.DateTruncQuarter="DATE_TRUNC_QUARTER",e.DateTruncWeek="DATE_TRUNC_WEEK",e.DateTruncYear="DATE_TRUNC_YEAR",e.DurationRunning="DURATION_RUNNING",e.EndDate="END_DATE",e.Equals="EQUALS",e.First="FIRST",e.Flatten="FLATTEN",e.Hour="HOUR",e.Id="ID",e.IsDone="IS_DONE",e.Label="LABEL",e.Left="LEFT",e.Length="LENGTH",e.Lower="LOWER",e.Max="MAX",e.Median="MEDIAN",e.Min="MIN",e.MinMax="MIN_MAX",e.None="NONE",e.Order="ORDER",e.Person="PERSON",e.PhoneCountryShortName="PHONE_COUNTRY_SHORT_NAME",e.Raw="RAW",e.StartDate="START_DATE",e.Sum="SUM",e.Trim="TRIM",e.Upper="UPPER"}(Yf||(Yf={})),function(e){e.CompanyName="company_name",e.Custom="custom",e.Date="date",e.DomainName="domain_name",e.EmailAddress="email_address",e.FirstName="first_name",e.LastName="last_name",e.PhoneNumber="phone_number",e.Time="time",e.Url="url",e.Year="year"}(Kf||(Kf={})),function(e){e.Longer="longer",e.Same="same",e.Shorter="shorter"}(Qf||(Qf={})),function(e){e.Arabic="arabic",e.Bengali="bengali",e.Chinese="chinese",e.Danish="danish",e.Dutch="dutch",e.English="english",e.French="french",e.German="german",e.Hebrew="hebrew",e.Hindi="hindi",e.Indonesian="indonesian",e.Italian="italian",e.Japanese="japanese",e.Korean="korean",e.Norwegian="norwegian",e.Polish="polish",e.Portuguese="portuguese",e.Russian="russian",e.Spanish="spanish",e.Swedish="swedish",e.Thai="thai",e.Turkish="turkish",e.Vietnamese="vietnamese"}(Jf||(Jf={})),function(e){e.Brief="brief",e.InDepth="in_depth",e.Paragraph="paragraph",e.Sentence="sentence"}(Xf||(Xf={})),function(e){e.HighCreativity="high_creativity",e.MinimalChanges="minimal_changes",e.ModerateChanges="moderate_changes"}(Zf||(Zf={})),function(e){e.Column="column",e.EmailsAndActivities="emails_and_activities",e.ItemName="item_name",e.Thread="thread"}(e_||(e_={})),function(e){e.Casual="casual",e.Confident="confident",e.Empathic="empathic",e.Friendly="friendly",e.Natural="natural",e.Professional="professional",e.Promotional="promotional",e.Same="same"}(t_||(t_={})),function(e){e.MondayFast="MONDAY_FAST",e.MondayPowerful="MONDAY_POWERFUL",e.MondayStandard="MONDAY_STANDARD"}(a_||(a_={})),function(e){e.ApplicationPdf="APPLICATION_PDF",e.ApplicationXlsx="APPLICATION_XLSX",e.ImageAvif="IMAGE_AVIF",e.ImageGif="IMAGE_GIF",e.ImageHeic="IMAGE_HEIC",e.ImageJpeg="IMAGE_JPEG",e.ImagePng="IMAGE_PNG",e.ImageSvg="IMAGE_SVG",e.ImageWebp="IMAGE_WEBP",e.TextCsv="TEXT_CSV",e.TextMarkdown="TEXT_MARKDOWN",e.TextPlain="TEXT_PLAIN",e.VideoMp4="VIDEO_MP4",e.VideoOgg="VIDEO_OGG",e.VideoQuicktime="VIDEO_QUICKTIME",e.VideoWebm="VIDEO_WEBM"}(i_||(i_={})),function(e){e.ClientSideCode="CLIENT_SIDE_CODE",e.ExternalHosting="EXTERNAL_HOSTING",e.ServerSideCode="SERVER_SIDE_CODE"}(n_||(n_={})),function(e){e.AccountSettingsView="ACCOUNT_SETTINGS_VIEW",e.AdminView="ADMIN_VIEW",e.Ai="AI",e.AiAgent="AI_AGENT",e.AiAgentSkill="AI_AGENT_SKILL",e.AiBoardMainMenuHeader="AI_BOARD_MAIN_MENU_HEADER",e.AiDocContextualMenu="AI_DOC_CONTEXTUAL_MENU",e.AiDocQuickStart="AI_DOC_QUICK_START",e.AiDocSlashCommand="AI_DOC_SLASH_COMMAND",e.AiDocTopBar="AI_DOC_TOP_BAR",e.AiEmailsAndActivitiesHeaderActions="AI_EMAILS_AND_ACTIVITIES_HEADER_ACTIONS",e.AiFormula="AI_FORMULA",e.AiIcAssistantHelpCenter="AI_IC_ASSISTANT_HELP_CENTER",e.AiItemEmailsAndActivitiesActions="AI_ITEM_EMAILS_AND_ACTIVITIES_ACTIONS",e.AiItemUpdateActions="AI_ITEM_UPDATE_ACTIONS",e.AiPlatformAgent="AI_PLATFORM_AGENT",e.AppWizard="APP_WIZARD",e.Block="BLOCK",e.BoardColumnAction="BOARD_COLUMN_ACTION",e.BoardColumnExtension="BOARD_COLUMN_EXTENSION",e.BoardHeaderAction="BOARD_HEADER_ACTION",e.BoardView="BOARD_VIEW",e.Column="COLUMN",e.ColumnTemplate="COLUMN_TEMPLATE",e.Credentials="CREDENTIALS",e.DashboardWidget="DASHBOARD_WIDGET",e.DataEntity="DATA_ENTITY",e.Dialog="DIALOG",e.DigitalWorker="DIGITAL_WORKER",e.DocActions="DOC_ACTIONS",e.FieldType="FIELD_TYPE",e.GroupMenuAction="GROUP_MENU_ACTION",e.GrowthConfig="GROWTH_CONFIG",e.Integration="INTEGRATION",e.ItemBatchAction="ITEM_BATCH_ACTION",e.ItemMenuAction="ITEM_MENU_ACTION",e.ItemView="ITEM_VIEW",e.Modal="MODAL",e.NotificationKind="NOTIFICATION_KIND",e.NotificationSettingKind="NOTIFICATION_SETTING_KIND",e.Oauth="OAUTH",e.Object="OBJECT",e.PackagedBlock="PACKAGED_BLOCK",e.Product="PRODUCT",e.ProductView="PRODUCT_VIEW",e.Skill="SKILL",e.Solution="SOLUTION",e.SubWorkflow="SUB_WORKFLOW",e.SurfaceView="SURFACE_VIEW",e.SyncableResource="SYNCABLE_RESOURCE",e.Topbar="TOPBAR",e.VibeItemView="VIBE_ITEM_VIEW",e.VibeObject="VIBE_OBJECT",e.WorkflowTemplate="WORKFLOW_TEMPLATE",e.WorkspaceView="WORKSPACE_VIEW"}(o_||(o_={})),function(e){e.Private="PRIVATE",e.Public="PUBLIC"}(r_||(r_={})),function(e){e.AccountRead="ACCOUNT_READ",e.AssetsRead="ASSETS_READ",e.BoardsRead="BOARDS_READ",e.BoardsWrite="BOARDS_WRITE",e.DepartmentsRead="DEPARTMENTS_READ",e.DepartmentsWrite="DEPARTMENTS_WRITE",e.DocsRead="DOCS_READ",e.DocsWrite="DOCS_WRITE",e.MeRead="ME_READ",e.NotificationsWrite="NOTIFICATIONS_WRITE",e.TagsRead="TAGS_READ",e.TeamsRead="TEAMS_READ",e.TeamsWrite="TEAMS_WRITE",e.UpdatesRead="UPDATES_READ",e.UpdatesWrite="UPDATES_WRITE",e.UsersRead="USERS_READ",e.UsersWrite="USERS_WRITE",e.WebhooksRead="WEBHOOKS_READ",e.WebhooksWrite="WEBHOOKS_WRITE",e.WorkspacesRead="WORKSPACES_READ",e.WorkspacesWrite="WORKSPACES_WRITE"}(s_||(s_={})),function(e){e.Draft="DRAFT",e.Live="LIVE"}(d_||(d_={})),function(e){e.Deprecated="DEPRECATED",e.Draft="DRAFT",e.Live="LIVE",e.Promoting="PROMOTING"}(p_||(p_={})),function(e){e.Active="ACTIVE",e.Deleted="DELETED"}(l_||(l_={})),function(e){e.Completed="COMPLETED",e.Failed="FAILED",e.None="NONE",e.Pending="PENDING"}(c_||(c_={})),function(e){e.Account="ACCOUNT",e.AiAgentBrain="AI_AGENT_BRAIN",e.AiAgentConversation="AI_AGENT_CONVERSATION",e.Channel="CHANNEL",e.Initiative="INITIATIVE",e.Item="ITEM",e.Post="POST",e.VibeApp="VIBE_APP",e.Workspace="WORKSPACE"}(m_||(m_={})),function(e){e.All="all",e.Columns="columns",e.Gallery="gallery"}(u_||(u_={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND",e.UserNotMemberOfTeam="USER_NOT_MEMBER_OF_TEAM",e.ViewersOrGuests="VIEWERS_OR_GUESTS"}(h_||(h_={})),function(e){e.Agent="AGENT"}(f_||(f_={})),function(e){e.Admin="ADMIN",e.Guest="GUEST",e.Member="MEMBER",e.ViewOnly="VIEW_ONLY"}(__||(__={})),function(e){e.Center="CENTER",e.Left="LEFT",e.Right="RIGHT"}(g_||(g_={})),function(e){e.Ltr="LTR",e.Rtl="RTL"}(b_||(b_={})),function(e){e.Edit="edit",e.View="view"}(v_||(v_={})),function(e){e.Communication="communication",e.Description="description",e.ItemNickname="item_nickname",e.Name="name"}(y_||(y_={})),function(e){e.AssignedContributor="assigned_contributor",e.Contributor="contributor",e.Editor="editor",e.Viewer="viewer"}(I_||(I_={})),function(e){e.Assignee="assignee",e.Collaborators="collaborators",e.Everyone="everyone",e.Owners="owners"}(w_||(w_={})),function(e){e.Classic="classic",e.MultiLevel="multi_level"}(T_||(T_={})),function(e){e.Private="private",e.Public="public",e.Share="share"}(E_||(E_={})),function(e){e.CurrentUserMuteAll="CURRENT_USER_MUTE_ALL",e.CustomSettings="CUSTOM_SETTINGS",e.MentionsAndAssignsOnly="MENTIONS_AND_ASSIGNS_ONLY",e.MuteAll="MUTE_ALL",e.NotMuted="NOT_MUTED"}(A_||(A_={})),function(e){e.Board="board",e.CustomObject="custom_object",e.Document="document",e.SubItemsBoard="sub_items_board"}(S_||(S_={})),function(e){e.Owner="owner",e.Subscriber="subscriber"}(N_||(N_={})),function(e){e.ConnectToPortfolio="CONNECT_TO_PORTFOLIO",e.ConvertToProject="CONVERT_TO_PROJECT"}(D_||(D_={})),function(e){e.Edit="edit",e.View="view"}(O_||(O_={})),function(e){e.CreatedAt="created_at",e.UsedAt="used_at"}(k_||(k_={})),function(e){e.AccountCapacityExceeded="ACCOUNT_CAPACITY_EXCEEDED",e.AuthorizationFailed="AUTHORIZATION_FAILED",e.BoardCapacityExceeded="BOARD_CAPACITY_EXCEEDED",e.FileTooLarge="FILE_TOO_LARGE",e.InternalError="INTERNAL_ERROR",e.InvalidUpload="INVALID_UPLOAD",e.PermissionDenied="PERMISSION_DENIED"}(C_||(C_={})),function(e){e.Completed="COMPLETED",e.Failed="FAILED",e.Processing="PROCESSING",e.Rejected="REJECTED",e.UploadPending="UPLOAD_PENDING"}(R_||(R_={})),function(e){e.CountKeys="COUNT_KEYS",e.Max="MAX",e.Min="MIN",e.MinMax="MIN_MAX",e.None="NONE",e.Sum="SUM"}($_||($_={})),function(e){e.EmailBounced="EMAIL_BOUNCED",e.EmailClicked="EMAIL_CLICKED",e.EmailDelivered="EMAIL_DELIVERED",e.EmailDropped="EMAIL_DROPPED",e.EmailOpened="EMAIL_OPENED",e.EmailRecipientComplaint="EMAIL_RECIPIENT_COMPLAINT",e.EmailRecipientGroupResubscribed="EMAIL_RECIPIENT_GROUP_RESUBSCRIBED",e.EmailRecipientGroupUnsubscribed="EMAIL_RECIPIENT_GROUP_UNSUBSCRIBED",e.EmailRecipientUnsubscribed="EMAIL_RECIPIENT_UNSUBSCRIBED",e.EmailSent="EMAIL_SENT"}(x_||(x_={})),function(e){e.Accent="ACCENT",e.Other="OTHER",e.Primary="PRIMARY",e.Secondary="SECONDARY",e.Text="TEXT"}(L_||(L_={})),function(e){e.Attachment="ATTACHMENT",e.PrimaryLogo="PRIMARY_LOGO",e.SecondaryLogo="SECONDARY_LOGO"}(U_||(U_={})),function(e){e.Confirmed="CONFIRMED",e.Pending="PENDING"}(P_||(P_={})),function(e){e.CompetitorMove="COMPETITOR_MOVE",e.CrisisEvent="CRISIS_EVENT",e.CustomerBehavior="CUSTOMER_BEHAVIOR",e.EmergingTechnology="EMERGING_TECHNOLOGY",e.MarketTrend="MARKET_TREND",e.Other="OTHER",e.ProductLaunch="PRODUCT_LAUNCH",e.RegulatoryChange="REGULATORY_CHANGE"}(F_||(F_={})),function(e){e.Active="ACTIVE",e.Consumed="CONSUMED",e.Dismissed="DISMISSED"}(V_||(V_={})),function(e){e.Later="LATER",e.Now="NOW"}(M_||(M_={})),function(e){e.CreatedAt="CREATED_AT",e.Name="NAME"}(B_||(B_={})),function(e){e.Asc="ASC",e.Desc="DESC"}(z_||(z_={})),function(e){e.Blocked="BLOCKED",e.Draft="DRAFT",e.Failed="FAILED",e.Generating="GENERATING",e.Ongoing="ONGOING",e.OnHold="ON_HOLD",e.Processing="PROCESSING",e.ReadyToSend="READY_TO_SEND",e.Scheduled="SCHEDULED",e.Sending="SENDING",e.Sent="SENT"}(j_||(j_={})),function(e){e.Description="description",e.Settings="settings",e.Title="title"}(q_||(q_={})),function(e){e.AllRelatedNotificationsDontHaveChannel="AllRelatedNotificationsDontHaveChannel",e.AlwaysEnabled="AlwaysEnabled",e.Editable="Editable"}(G_||(G_={})),function(e){e.Email="Email",e.Monday="Monday",e.Slack="Slack"}(H_||(H_={})),function(e){e.Deactivate="DEACTIVATE",e.Reactivate="REACTIVATE"}(W_||(W_={})),function(e){e.Calculated="CALCULATED",e.Visibility="VISIBILITY"}(Y_||(Y_={})),function(e){e.Description="description",e.Title="title"}(K_||(K_={})),function(e){e.AutoNumber="auto_number",e.BoardRelation="board_relation",e.Button="button",e.Checkbox="checkbox",e.ColorPicker="color_picker",e.Country="country",e.CreationLog="creation_log",e.Date="date",e.Dependency="dependency",e.DirectDoc="direct_doc",e.Doc="doc",e.Dropdown="dropdown",e.Email="email",e.File="file",e.Formula="formula",e.Group="group",e.Hour="hour",e.Integration="integration",e.ItemAssignees="item_assignees",e.ItemId="item_id",e.LastUpdated="last_updated",e.Link="link",e.Location="location",e.LongText="long_text",e.Mirror="mirror",e.Name="name",e.Numbers="numbers",e.People="people",e.Person="person",e.Phone="phone",e.Progress="progress",e.Rating="rating",e.Status="status",e.Subtasks="subtasks",e.Tags="tags",e.Team="team",e.Text="text",e.TimeTracking="time_tracking",e.Timeline="timeline",e.Unsupported="unsupported",e.Vote="vote",e.Week="week",e.WorldClock="world_clock"}(Q_||(Q_={})),function(e){e.Or="OR"}(J_||(J_={})),function(e){e.InProgress="IN_PROGRESS",e.NotNow="NOT_NOW",e.Pending="PENDING",e.Todo="TODO"}(X_||(X_={})),function(e){e.Account="ACCOUNT",e.User="USER"}(Z_||(Z_={})),function(e){e.BrinkPink="BRINK_PINK",e.CelticBlue="CELTIC_BLUE",e.CornflowerBlue="CORNFLOWER_BLUE",e.DingyDungeon="DINGY_DUNGEON",e.GoGreen="GO_GREEN",e.Gray="GRAY",e.LightDeepPink="LIGHT_DEEP_PINK",e.LightHotPink="LIGHT_HOT_PINK",e.MayaBlue="MAYA_BLUE",e.MediumTurquoise="MEDIUM_TURQUOISE",e.ParadisePink="PARADISE_PINK",e.PhilippineGreen="PHILIPPINE_GREEN",e.PhilippineYellow="PHILIPPINE_YELLOW",e.SlateBlue="SLATE_BLUE",e.VividCerulean="VIVID_CERULEAN",e.YankeesBlue="YANKEES_BLUE",e.YellowGreen="YELLOW_GREEN",e.YellowOrange="YELLOW_ORANGE"}(eg||(eg={})),function(e){e.Ascending="ASCENDING",e.Camera="CAMERA",e.Conference="CONFERENCE",e.Flag="FLAG",e.Gift="GIFT",e.Headphones="HEADPHONES",e.Homekeys="HOMEKEYS",e.Location="LOCATION",e.Notebook="NOTEBOOK",e.Paperplane="PAPERPLANE",e.Plane="PLANE",e.Pliers="PLIERS",e.Tripod="TRIPOD",e.Twoflags="TWOFLAGS",e.Utencils="UTENCILS"}(tg||(tg={})),function(e){e.AutomationNotify="AUTOMATION_NOTIFY",e.ImAssigned="IM_ASSIGNED",e.ImMentioned="IM_MENTIONED"}(ag||(ag={})),function(e){e.Private="PRIVATE",e.Public="PUBLIC"}(ig||(ig={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(ng||(ng={})),function(e){e.Ff="FF",e.Fs="FS",e.Sf="SF",e.Ss="SS"}(og||(og={})),function(e){e.JobRole="JOB_ROLE",e.Location="LOCATION",e.Skills="SKILLS"}(rg||(rg={})),function(e){e.Guest="GUEST",e.User="USER",e.Viewer="VIEWER"}(sg||(sg={})),function(e){e.Monthly="MONTHLY",e.Yearly="YEARLY"}(dg||(dg={})),function(e){e.BulletedList="bulleted_list",e.CheckList="check_list",e.Code="code",e.Divider="divider",e.Image="image",e.LargeTitle="large_title",e.Layout="layout",e.MediumTitle="medium_title",e.NormalText="normal_text",e.NoticeBox="notice_box",e.NumberedList="numbered_list",e.PageBreak="page_break",e.Quote="quote",e.SmallTitle="small_title",e.Table="table",e.Video="video"}(pg||(pg={})),function(e){e.Private="private",e.Public="public",e.Share="share"}(lg||(lg={})),function(e){e.Board="BOARD",e.Doc="DOC",e.User="USER"}(cg||(cg={})),function(e){e.CreatedAt="created_at",e.UsedAt="used_at"}(mg||(mg={})),function(e){e.DuplicateBoardWithPulses="duplicate_board_with_pulses",e.DuplicateBoardWithPulsesAndUpdates="duplicate_board_with_pulses_and_updates",e.DuplicateBoardWithStructure="duplicate_board_with_structure"}(ug||(ug={})),function(e){e.DuplicateDocWithContent="duplicate_doc_with_content",e.DuplicateDocWithContentAndUpdates="duplicate_doc_with_content_and_updates"}(hg||(hg={})),function(e){e.Allocated="ALLOCATED",e.Available="AVAILABLE",e.Planned="PLANNED",e.Spent="SPENT"}(fg||(fg={})),function(e){e.Daily="DAILY",e.Fte="FTE",e.Monthly="MONTHLY",e.Total="TOTAL",e.Weekly="WEEKLY"}(_g||(_g={})),function(e){e.BoardInaccessible="BOARD_INACCESSIBLE",e.BoardUnavailable="BOARD_UNAVAILABLE",e.InternalError="INTERNAL_ERROR",e.InvalidRequest="INVALID_REQUEST",e.ItemLimitExceeded="ITEM_LIMIT_EXCEEDED",e.NotFound="NOT_FOUND"}(gg||(gg={})),function(e){e.Csv="CSV",e.Xlsx="XLSX"}(bg||(bg={})),function(e){e.Completed="COMPLETED",e.Failed="FAILED",e.Running="RUNNING"}(vg||(vg={})),function(e){e.ClaudeManagedAgent="CLAUDE_MANAGED_AGENT",e.CustomAgent="CUSTOM_AGENT",e.Openai="OPENAI"}(yg||(yg={})),function(e){e.AppFeature="APP_FEATURE",e.Battery="BATTERY",e.Calendar="CALENDAR",e.Chart="CHART",e.EmbeddedSite="EMBEDDED_SITE",e.Gantt="GANTT",e.Listview="LISTVIEW",e.Map="MAP",e.Number="NUMBER",e.Table="TABLE"}(Ig||(Ig={})),function(e){e.Negative="NEGATIVE",e.Positive="POSITIVE"}(wg||(wg={})),function(e){e.Custom="CUSTOM",e.Interface="INTERFACE",e.Primitive="PRIMITIVE"}(Tg||(Tg={})),function(e){e.Active="ACTIVE",e.Deleted="DELETED"}(Eg||(Eg={})),function(e){e.Asset="asset",e.Box="box",e.Doc="doc",e.Dropbox="dropbox",e.GoogleDrive="google_drive",e.Link="link",e.Onedrive="onedrive"}(Ag||(Ag={})),function(e){e.Box="box",e.Dropbox="dropbox",e.GoogleDrive="google_drive",e.Link="link",e.Onedrive="onedrive"}(Sg||(Sg={})),function(e){e.Monday="monday",e.Sunday="sunday"}(Ng||(Ng={})),function(e){e.Aquamarine="AQUAMARINE",e.BrightBlue="BRIGHT_BLUE",e.BrightGreen="BRIGHT_GREEN",e.ChiliBlue="CHILI_BLUE",e.DarkOrange="DARK_ORANGE",e.DarkPurple="DARK_PURPLE",e.DarkRed="DARK_RED",e.DoneGreen="DONE_GREEN",e.Indigo="INDIGO",e.Lipstick="LIPSTICK",e.Null="NULL",e.Purple="PURPLE",e.SofiaPink="SOFIA_PINK",e.StuckRed="STUCK_RED",e.Sunset="SUNSET",e.WorkingOrange="WORKING_ORANGE"}(Dg||(Dg={})),function(e){e.Folder="FOLDER",e.Morebelow="MOREBELOW",e.Morebelowfilled="MOREBELOWFILLED",e.Null="NULL",e.Work="WORK"}(Og||(Og={})),function(e){e.FontWeightBold="FONT_WEIGHT_BOLD",e.FontWeightLight="FONT_WEIGHT_LIGHT",e.FontWeightNormal="FONT_WEIGHT_NORMAL",e.FontWeightVeryLight="FONT_WEIGHT_VERY_LIGHT",e.Null="NULL"}(kg||(kg={})),function(e){e.Center="Center",e.FullLeft="FullLeft",e.FullRight="FullRight",e.Left="Left",e.Right="Right"}(Cg||(Cg={})),function(e){e.Color="Color",e.Image="Image",e.None="None"}(Rg||(Rg={})),function(e){e.LtR="LtR",e.Rtl="Rtl"}($g||($g={})),function(e){e.Large="Large",e.Medium="Medium",e.Small="Small"}(xg||(xg={})),function(e){e.Card="CARD",e.Flat="FLAT"}(Lg||(Lg={})),function(e){e.Auto="Auto",e.Center="Center",e.Left="Left",e.Right="Right"}(Ug||(Ug={})),function(e){e.ExtraLarge="ExtraLarge",e.Large="Large",e.Medium="Medium",e.Small="Small"}(Pg||(Pg={})),function(e){e.Account="Account",e.QueryParam="QueryParam"}(Fg||(Fg={})),function(e){e.Dropdown="Dropdown",e.Horizontal="Horizontal",e.Vertical="Vertical"}(Vg||(Vg={})),function(e){e.Alphabetical="Alphabetical",e.Custom="Custom",e.Random="Random"}(Mg||(Mg={})),function(e){e.Boolean="Boolean",e.ConnectedBoards="ConnectedBoards",e.Country="Country",e.DisplayText="DISPLAY_TEXT",e.Date="Date",e.DateRange="DateRange",e.Email="Email",e.File="File",e.Hour="HOUR",e.Link="Link",e.Location="Location",e.LongText="LongText",e.MultiSelect="MultiSelect",e.Name="Name",e.Number="Number",e.PageBlock="PAGE_BLOCK",e.People="People",e.Phone="Phone",e.Rating="Rating",e.ShortText="ShortText",e.Signature="Signature",e.SingleSelect="SingleSelect",e.Subitems="Subitems",e.Updates="Updates"}(Bg||(Bg={})),function(e){e.Board="Board",e.Dashboard="Dashboard",e.Folder="Folder",e.Workspace="Workspace"}(zg||(zg={})),function(e){e.Color="color",e.Position="position",e.RelativePositionAfter="relative_position_after",e.RelativePositionBefore="relative_position_before",e.Title="title"}(jg||(jg={})),function(e){e.JobRole="JOB_ROLE",e.Location="LOCATION",e.ResourceManager="RESOURCE_MANAGER",e.Skills="SKILLS",e.Teams="TEAMS"}(qg||(qg={})),function(e){e.And="AND",e.Or="OR"}(Gg||(Gg={})),function(e){e.ColumnId="COLUMN_ID",e.Title="TITLE"}(Hg||(Hg={})),function(e){e.DataLimit="DATA_LIMIT",e.PlanLimit="PLAN_LIMIT"}(Wg||(Wg={})),function(e){e.AccountLevel="ACCOUNT_LEVEL",e.AppFeatureObject="APP_FEATURE_OBJECT",e.Board="BOARD"}(Yg||(Yg={})),function(e){e.AccountLevelBlocking="ACCOUNT_LEVEL_BLOCKING",e.DeactivatedByUser="DEACTIVATED_BY_USER",e.RunsRateLimitExceeded="RUNS_RATE_LIMIT_EXCEEDED"}(Kg||(Kg={})),function(e){e.AgentUserCreation="AGENT_USER_CREATION",e.ApiUserCreation="API_USER_CREATION",e.AuthDomain="AUTH_DOMAIN",e.Consolidation="CONSOLIDATION",e.FirstUser="FIRST_USER",e.InternalCreation="INTERNAL_CREATION",e.Scim="SCIM",e.ServicePortalAuthDomain="SERVICE_PORTAL_AUTH_DOMAIN",e.ServicePortalUserInvitation="SERVICE_PORTAL_USER_INVITATION",e.Sso="SSO",e.SystemCreation="SYSTEM_CREATION",e.Unknown="UNKNOWN",e.User="USER"}(Qg||(Qg={})),function(e){e.Error="ERROR"}(Jg||(Jg={})),function(e){e.AnyOf="ANY_OF",e.EndsWith="ENDS_WITH",e.GreaterThan="GREATER_THAN",e.GreaterThanOrEquals="GREATER_THAN_OR_EQUALS",e.IsEmpty="IS_EMPTY",e.IsNotEmpty="IS_NOT_EMPTY",e.LowerThan="LOWER_THAN",e.LowerThanOrEqual="LOWER_THAN_OR_EQUAL",e.NotAnyOf="NOT_ANY_OF",e.StartsWith="STARTS_WITH"}(Xg||(Xg={})),function(e){e.Table="TABLE"}(Zg||(Zg={})),function(e){e.Average="AVERAGE",e.Color="COLOR",e.Count="COUNT",e.CountDistinct="COUNT_DISTINCT",e.CountItems="COUNT_ITEMS",e.First="FIRST",e.Id="ID",e.IsDone="IS_DONE",e.Label="LABEL",e.Length="LENGTH",e.Lower="LOWER",e.Max="MAX",e.Median="MEDIAN",e.Min="MIN",e.Sum="SUM",e.Trim="TRIM",e.Upper="UPPER"}(eb||(eb={})),function(e){e.And="AND",e.Or="OR"}(tb||(tb={})),function(e){e.Column="COLUMN",e.Function="FUNCTION"}(ab||(ab={})),function(e){e.Asc="ASC",e.Desc="DESC"}(ib||(ib={})),function(e){e.Asc="asc",e.Desc="desc"}(nb||(nb={})),function(e){e.Calculated="CALCULATED",e.Visibility="VISIBILITY"}(ob||(ob={})),function(e){e.AutoNumber="auto_number",e.BoardRelation="board_relation",e.Button="button",e.Checkbox="checkbox",e.ColorPicker="color_picker",e.Country="country",e.CreationLog="creation_log",e.Date="date",e.Dependency="dependency",e.DirectDoc="direct_doc",e.Doc="doc",e.Dropdown="dropdown",e.Email="email",e.File="file",e.Formula="formula",e.Hour="hour",e.ItemId="item_id",e.LastUpdated="last_updated",e.Link="link",e.Location="location",e.LongText="long_text",e.Mirror="mirror",e.Numbers="numbers",e.People="people",e.Phone="phone",e.Progress="progress",e.Rating="rating",e.Status="status",e.Subtasks="subtasks",e.Tags="tags",e.Text="text",e.TimeTracking="time_tracking",e.Timeline="timeline",e.Unsupported="unsupported",e.Vote="vote",e.Week="week",e.WorldClock="world_clock"}(rb||(rb={})),function(e){e.And="and",e.Or="or"}(sb||(sb={})),function(e){e.AnyOf="any_of",e.Between="between",e.ContainsTerms="contains_terms",e.ContainsText="contains_text",e.EndsWith="ends_with",e.GreaterThan="greater_than",e.GreaterThanOrEquals="greater_than_or_equals",e.IsEmpty="is_empty",e.IsNotEmpty="is_not_empty",e.LowerThan="lower_than",e.LowerThanOrEqual="lower_than_or_equal",e.NotAnyOf="not_any_of",e.NotContainsText="not_contains_text",e.StartsWith="starts_with",e.WithinTheLast="within_the_last",e.WithinTheNext="within_the_next"}(db||(db={})),function(e){e.Cancelled="CANCELLED",e.Completed="COMPLETED",e.Expired="EXPIRED",e.Failed="FAILED",e.Pending="PENDING",e.Running="RUNNING"}(pb||(pb={})),function(e){e.Agent="agent",e.Person="person",e.Team="team"}(lb||(lb={})),function(e){e.Read="READ",e.ReadWrite="READ_WRITE"}(cb||(cb={})),function(e){e.Board="BOARD",e.Doc="DOC",e.Workspace="WORKSPACE"}(mb||(mb={})),function(e){e.File="FILE"}(ub||(ub={})),function(e){e.Active="ACTIVE",e.Deleted="DELETED",e.Pending="PENDING"}(hb||(hb={})),function(e){e.BulletedList="BULLETED_LIST",e.CheckList="CHECK_LIST",e.NumberedList="NUMBERED_LIST"}(fb||(fb={})),function(e){e.Active="active",e.Deleted="deleted",e.Inactive="inactive"}(_b||(_b={})),function(e){e.Dropdown="dropdown",e.Status="status"}(gb||(gb={})),function(e){e.Own="OWN",e.SharedWithAccount="SHARED_WITH_ACCOUNT",e.SharedWithMe="SHARED_WITH_ME"}(bb||(bb={})),function(e){e.All="ALL",e.Own="OWN",e.SharedWithAccount="SHARED_WITH_ACCOUNT",e.SharedWithMe="SHARED_WITH_ME"}(vb||(vb={})),function(e){e.Agent="Agent",e.Board="Board",e.Project="Project",e.Team="Team",e.User="User"}(yb||(yb={})),function(e){e.Earliest="EARLIEST",e.EarliestToLatest="EARLIEST_TO_LATEST",e.Latest="LATEST"}(Ib||(Ib={})),function(e){e.AllStatuses="ALL_STATUSES",e.DoneOnly="DONE_ONLY"}(wb||(wb={})),function(e){e.Error="ERROR",e.Include="INCLUDE",e.Skip="SKIP"}(Tb||(Tb={})),function(e){e.General="GENERAL",e.Info="INFO",e.Tips="TIPS",e.Warning="WARNING"}(Eb||(Eb={})),function(e){e.Post="Post",e.Project="Project"}(Ab||(Ab={})),function(e){e.Left="left",e.Right="right"}(Sb||(Sb={})),function(e){e.CreateObjectSchemaColumns="CREATE_OBJECT_SCHEMA_COLUMNS",e.DeleteObjectSchemaColumns="DELETE_OBJECT_SCHEMA_COLUMNS",e.UpdateObjectSchemaColumns="UPDATE_OBJECT_SCHEMA_COLUMNS"}(Nb||(Nb={})),function(e){e.Active="ACTIVE",e.Archived="ARCHIVED",e.Deleted="DELETED"}(Db||(Db={})),function(e){e.Board="Board",e.Folder="Folder",e.Overview="Overview"}(Ob||(Ob={})),function(e){e.Skip="SKIP",e.Upsert="UPSERT"}(kb||(kb={})),function(e){e.CreatedAt="CREATED_AT",e.UsedAt="USED_AT"}(Cb||(Cb={})),function(e){e.Placeholder="PLACEHOLDER",e.User="USER"}(Rb||(Rb={})),function(e){e.AfterAt="after_at",e.BeforeAt="before_at"}($b||($b={})),function(e){e.Boolean="BOOLEAN",e.Date="DATE",e.Float="FLOAT",e.Hour="HOUR",e.Number="NUMBER",e.String="STRING"}(xb||(xb={})),function(e){e.Private="PRIVATE",e.Public="PUBLIC"}(Lb||(Lb={})),function(e){e.Crm="crm",e.Dev="dev",e.Forms="forms",e.Knowledge="knowledge",e.Service="service",e.Whiteboard="whiteboard",e.WorkManagement="work_management",e.Workflows="workflows"}(Ub||(Ub={})),function(e){e.Incoming="INCOMING",e.Outgoing="OUTGOING"}(Pb||(Pb={})),function(e){e.Alias="ALIAS",e.Dependency="DEPENDENCY"}(Fb||(Fb={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND",e.UserNotMemberOfTeam="USER_NOT_MEMBER_OF_TEAM",e.ViewersOrGuests="VIEWERS_OR_GUESTS"}(Vb||(Vb={})),function(e){e.BaseRole="BASE_ROLE",e.Email="EMAIL",e.JobRole="JOB_ROLE",e.Location="LOCATION",e.Name="NAME",e.ResourceManager="RESOURCE_MANAGER",e.Skills="SKILLS",e.Status="STATUS",e.Teams="TEAMS"}(Mb||(Mb={})),function(e){e.Failed="failed",e.Pending="pending",e.Processing="processing",e.Rollback="rollback",e.Success="success"}(Bb||(Bb={})),function(e){e.AnyOf="ANY_OF",e.Between="BETWEEN",e.ContainsText="CONTAINS_TEXT",e.Equals="EQUALS",e.GreaterThan="GREATER_THAN",e.GreaterThanOrEquals="GREATER_THAN_OR_EQUALS",e.IsEmpty="IS_EMPTY",e.IsNotEmpty="IS_NOT_EMPTY",e.LowerThan="LOWER_THAN",e.LowerThanOrEqual="LOWER_THAN_OR_EQUAL",e.NotAnyOf="NOT_ANY_OF",e.NotContainsText="NOT_CONTAINS_TEXT",e.NotEquals="NOT_EQUALS",e.StartsWithText="STARTS_WITH_TEXT"}(zb||(zb={})),function(e){e.Api="API",e.Assigned="ASSIGNED",e.Automation="AUTOMATION",e.Chat="CHAT",e.Mention="MENTION",e.Schedule="SCHEDULE"}(jb||(jb={})),function(e){e.Completed="COMPLETED",e.Executing="EXECUTING",e.Failed="FAILED",e.NeedsConfirmation="NEEDS_CONFIRMATION",e.Running="RUNNING",e.Stopped="STOPPED",e.StoppedBySystem="STOPPED_BY_SYSTEM",e.Thinking="THINKING",e.WaitingClarification="WAITING_CLARIFICATION"}(qb||(qb={})),function(e){e.AccountNewUserDefaults="AccountNewUserDefaults",e.User="User"}(Gb||(Gb={})),function(e){e.Balanced="BALANCED",e.Quality="QUALITY",e.Speed="SPEED"}(Hb||(Hb={})),function(e){e.Board="BOARD"}(Wb||(Wb={})),function(e){e.Active="ACTIVE",e.Deleted="DELETED",e.Inactive="INACTIVE",e.MissingConfig="MISSING_CONFIG"}(Yb||(Yb={})),function(e){e.Failed="failed",e.Pending="pending",e.Processing="processing",e.Rollback="rollback",e.Success="success"}(Kb||(Kb={})),function(e){e.Asc="ASC",e.Desc="DESC"}(Qb||(Qb={})),function(e){e.Complete="COMPLETE",e.Start="START"}(Jb||(Jb={})),function(e){e.Active="ACTIVE",e.Completed="COMPLETED",e.Planned="PLANNED"}(Xb||(Xb={})),function(e){e.Active="active",e.All="all",e.Archived="archived",e.Deleted="deleted"}(Zb||(Zb={})),function(e){e.CountKeys="COUNT_KEYS"}(ev||(ev={})),function(e){e.AmericanGray="american_gray",e.Aquamarine="aquamarine",e.Berry="berry",e.Blackish="blackish",e.BrightBlue="bright_blue",e.BrightGreen="bright_green",e.Brown="brown",e.Bubble="bubble",e.ChiliBlue="chili_blue",e.Coffee="coffee",e.DarkBlue="dark_blue",e.DarkIndigo="dark_indigo",e.DarkOrange="dark_orange",e.DarkPurple="dark_purple",e.DarkRed="dark_red",e.DoneGreen="done_green",e.EggYolk="egg_yolk",e.Explosive="explosive",e.GrassGreen="grass_green",e.Indigo="indigo",e.Lavender="lavender",e.Lilac="lilac",e.Lipstick="lipstick",e.Navy="navy",e.Orchid="orchid",e.Peach="peach",e.Pecan="pecan",e.Purple="purple",e.River="river",e.Royal="royal",e.Saladish="saladish",e.Sky="sky",e.SofiaPink="sofia_pink",e.Steel="steel",e.StuckRed="stuck_red",e.Sunset="sunset",e.Tan="tan",e.Teal="teal",e.Winter="winter",e.WorkingOrange="working_orange"}(tv||(tv={})),function(e){e.Owner="OWNER",e.Subscriber="SUBSCRIBER"}(av||(av={})),function(e){e.Nominal="nominal",e.Percent="percent"}(iv||(iv={})),function(e){e.OneTime="one_time",e.Recurring="recurring"}(nv||(nv={})),function(e){e.Monthly="monthly",e.Yearly="yearly"}(ov||(ov={})),function(e){e.Active="active",e.Inactive="inactive"}(rv||(rv={})),function(e){e.Board="BOARD",e.Dashboard="DASHBOARD"}(sv||(sv={})),function(e){e.Create="CREATE",e.Update="UPDATE"}(dv||(dv={})),function(e){e.UpdateMention="UPDATE_MENTION",e.UserAssigned="USER_ASSIGNED"}(pv||(pv={})),function(e){e.Done="DONE",e.InProgress="IN_PROGRESS",e.NotATask="NOT_A_TASK",e.NotNow="NOT_NOW",e.NoLongerRelevant="NO_LONGER_RELEVANT",e.Pending="PENDING",e.Todo="TODO"}(lv||(lv={})),function(e){e.Complete="COMPLETE",e.Failed="FAILED",e.InProgress="IN_PROGRESS",e.Pending="PENDING"}(cv||(cv={})),function(e){e.Code="CODE",e.LargeTitle="LARGE_TITLE",e.MediumTitle="MEDIUM_TITLE",e.NormalText="NORMAL_TEXT",e.Quote="QUOTE",e.SmallTitle="SMALL_TITLE"}(mv||(mv={})),function(e){e.Days="DAYS",e.Months="MONTHS",e.Quarters="QUARTERS",e.Weeks="WEEKS",e.Years="YEARS"}(uv||(uv={})),function(e){e.Custom="CUSTOM",e.Holiday="HOLIDAY"}(hv||(hv={})),function(e){e.Activity="activity",e.AiAssistant="aiAssistant",e.AiReply="aiReply",e.AiSummary="aiSummary",e.Campaigns="campaigns",e.Custom="custom",e.CustomInternalApp="customInternalApp",e.DemoEmail="demoEmail",e.Email="email",e.Form="form",e.GoogleCalendar="googleCalendar",e.Meeting="meeting",e.MergedTickets="mergedTickets",e.Note="note",e.OutlookCalendar="outlookCalendar",e.OutreachExpertPhoneCall="outreachExpertPhoneCall",e.OutreachExpertPhoneCallV2="outreachExpertPhoneCallV2",e.PhoneCall="phoneCall",e.Portal="portal",e.PortfolioStatus="portfolio_status",e.SequencesEmail="sequencesEmail",e.VideoMeeting="videoMeeting",e.Zoom="zoom"}(fv||(fv={})),function(e){e.Crm="crm",e.Service="service"}(_v||(_v={})),function(e){e.Exhausted="exhausted",e.Failure="failure",e.Success="success"}(gv||(gv={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UpdateEmailDomainError="UPDATE_EMAIL_DOMAIN_ERROR",e.UserNotFound="USER_NOT_FOUND"}(bv||(bv={})),function(e){e.InvalidField="INVALID_FIELD"}(vv||(vv={})),function(e){e.CannotUpdateSelf="CANNOT_UPDATE_SELF",e.ExceedsBatchLimit="EXCEEDS_BATCH_LIMIT",e.Failed="FAILED",e.InvalidInput="INVALID_INPUT",e.UserNotFound="USER_NOT_FOUND"}(yv||(yv={})),function(e){e.All="all",e.Guests="guests",e.NonGuests="non_guests",e.NonPending="non_pending"}(Iv||(Iv={})),function(e){e.Admin="ADMIN",e.AgentMember="AGENT_MEMBER",e.AgentSignupUser="AGENT_SIGNUP_USER",e.AiPlatformAgentApiUser="AI_PLATFORM_AGENT_API_USER",e.Basic="BASIC",e.CampaignsApiUser="CAMPAIGNS_API_USER",e.CrmCommerceApiUser="CRM_COMMERCE_API_USER",e.DataRetentionApiUser="DATA_RETENTION_API_USER",e.DependenciesApiUser="DEPENDENCIES_API_USER",e.ExternalAgentDetachedMember="EXTERNAL_AGENT_DETACHED_MEMBER",e.ExternalAgentMember="EXTERNAL_AGENT_MEMBER",e.GoalsApiUser="GOALS_API_USER",e.Guest="GUEST",e.HistoricalTrackingBackfillApiUser="HISTORICAL_TRACKING_BACKFILL_API_USER",e.Member="MEMBER",e.MondayServiceApiUser="MONDAY_SERVICE_API_USER",e.NexusApiUser="NEXUS_API_USER",e.OmnichannelApiUser="OMNICHANNEL_API_USER",e.PersonalAgentMember="PERSONAL_AGENT_MEMBER",e.Portal="PORTAL",e.PortfolioApiUser="PORTFOLIO_API_USER",e.ProjectsApiUser="PROJECTS_API_USER",e.ResourceDirectoryApiUser="RESOURCE_DIRECTORY_API_USER",e.ServiceUser="SERVICE_USER",e.SprintManagementApiUser="SPRINT_MANAGEMENT_API_USER",e.VibeUser="VIBE_USER",e.ViewOnly="VIEW_ONLY"}(wv||(wv={})),function(e){e.Admin="ADMIN",e.Guest="GUEST",e.Member="MEMBER",e.ViewOnly="VIEW_ONLY"}(Tv||(Tv={})),function(e){e.Active="ACTIVE",e.Inactive="INACTIVE",e.Pending="PENDING"}(Ev||(Ev={})),function(e){e.Asc="ASC",e.Desc="DESC"}(Av||(Av={})),function(e){e.CreatedAt="CREATED_AT"}(Sv||(Sv={})),function(e){e.Allocated="ALLOCATED",e.Available="AVAILABLE",e.Spent="SPENT"}(Nv||(Nv={})),function(e){e.Board="board"}(Dv||(Dv={})),function(e){e.Current="current",e.Deprecated="deprecated",e.Dev="dev",e.Maintenance="maintenance",e.OldMaintenance="old__maintenance",e.OldPreviousMaintenance="old_previous_maintenance",e.PreviousMaintenance="previous_maintenance",e.ReleaseCandidate="release_candidate"}(Ov||(Ov={})),function(e){e.Board="BOARD",e.Item="ITEM"}(kv||(kv={})),function(e){e.App="APP",e.Dashboard="DASHBOARD",e.Form="FORM",e.Table="TABLE"}(Cv||(Cv={})),function(e){e.Create="CREATE",e.Update="UPDATE"}(Rv||(Rv={})),function(e){e.ChangeColumnValue="change_column_value",e.ChangeName="change_name",e.ChangeSpecificColumnValue="change_specific_column_value",e.ChangeStatusColumnValue="change_status_column_value",e.ChangeSubitemColumnValue="change_subitem_column_value",e.ChangeSubitemName="change_subitem_name",e.CreateColumn="create_column",e.CreateItem="create_item",e.CreateSubitem="create_subitem",e.CreateSubitemUpdate="create_subitem_update",e.CreateUpdate="create_update",e.DeleteUpdate="delete_update",e.EditUpdate="edit_update",e.ItemArchived="item_archived",e.ItemDeleted="item_deleted",e.ItemMovedToAnyGroup="item_moved_to_any_group",e.ItemMovedToSpecificGroup="item_moved_to_specific_group",e.ItemRestored="item_restored",e.MoveSubitem="move_subitem",e.SubitemArchived="subitem_archived",e.SubitemDeleted="subitem_deleted"}($v||($v={})),function(e){e.Friday="FRIDAY",e.Monday="MONDAY",e.Saturday="SATURDAY",e.Sunday="SUNDAY",e.Thursday="THURSDAY",e.Tuesday="TUESDAY",e.Wednesday="WEDNESDAY"}(xv||(xv={})),function(e){e.BoardView="BOARD_VIEW",e.Dashboard="DASHBOARD"}(Lv||(Lv={})),function(e){e.Error="ERROR",e.Ok="OK"}(Uv||(Uv={})),function(e){e.Wait="WAIT"}(Pv||(Pv={})),function(e){e.Private="PRIVATE",e.Public="PUBLIC",e.Shareable="SHAREABLE"}(Fv||(Fv={})),function(e){e.LiteBuilder="LITE_BUILDER"}(Vv||(Vv={})),function(e){e.ExternalContextProvider="external_context_provider",e.HostMetadata="host_metadata",e.NodeResults="node_results",e.Reference="reference",e.UserConfig="user_config"}(Mv||(Mv={})),function(e){e.Closed="closed",e.Open="open",e.Template="template"}(Bv||(Bv={})),function(e){e.All="all",e.Member="member"}(zv||(zv={})),function(e){e.Owner="owner",e.Subscriber="subscriber"}(jv||(jv={})),function(e){e.CreatedAt="created_at"}(qv||(qv={})),function(e){e.Core="core",e.Crm="crm",e.Forms="forms",e.Marketing="marketing",e.ProjectManagement="project_management",e.Service="service",e.Software="software",e.Whiteboard="whiteboard"}(Gv||(Gv={}));const Hv=Fd`
2292
2314
  fragment CustomAgentFields on CustomAgent {
2293
2315
  id
2294
2316
  kind
@@ -2307,65 +2329,65 @@
2307
2329
  created_at
2308
2330
  updated_at
2309
2331
  }
2310
- `,Hv=Fd`
2311
- ${Gv}
2332
+ `,Wv=Fd`
2333
+ ${Hv}
2312
2334
 
2313
2335
  query getCustomAgents($ids: [ID!], $limit: Int) {
2314
2336
  custom_agents(ids: $ids, limit: $limit) {
2315
2337
  ...CustomAgentFields
2316
2338
  }
2317
2339
  }
2318
- `,Wv=Fd`
2319
- ${Gv}
2340
+ `,Yv=Fd`
2341
+ ${Hv}
2320
2342
 
2321
2343
  mutation createAgent($input: CreateAgentInput!) {
2322
2344
  create_agent(input: $input) {
2323
2345
  ...CustomAgentFields
2324
2346
  }
2325
2347
  }
2326
- `,Yv=Fd`
2327
- ${Gv}
2348
+ `,Kv=Fd`
2349
+ ${Hv}
2328
2350
 
2329
2351
  mutation createBlankAgent($input: CreateBlankAgentInput) {
2330
2352
  create_blank_agent(input: $input) {
2331
2353
  ...CustomAgentFields
2332
2354
  }
2333
2355
  }
2334
- `,Kv=Fd`
2335
- ${Gv}
2356
+ `,Qv=Fd`
2357
+ ${Hv}
2336
2358
 
2337
2359
  mutation updateAgent($id: ID!, $input: UpdateAgentInput!) {
2338
2360
  update_agent(id: $id, input: $input) {
2339
2361
  ...CustomAgentFields
2340
2362
  }
2341
2363
  }
2342
- `,Qv=Fd`
2343
- ${Gv}
2364
+ `,Jv=Fd`
2365
+ ${Hv}
2344
2366
 
2345
2367
  mutation deleteAgent($id: ID!) {
2346
2368
  delete_agent(id: $id) {
2347
2369
  ...CustomAgentFields
2348
2370
  }
2349
2371
  }
2350
- `,Jv=Fd`
2372
+ `,Xv=Fd`
2351
2373
  mutation activateAgent($id: ID!) {
2352
2374
  activate_agent(id: $id) {
2353
2375
  success
2354
2376
  }
2355
2377
  }
2356
- `,Xv=Fd`
2378
+ `,Zv=Fd`
2357
2379
  mutation deactivateAgent($id: ID!, $inactive_reason: InactiveReason) {
2358
2380
  deactivate_agent(id: $id, inactive_reason: $inactive_reason) {
2359
2381
  success
2360
2382
  }
2361
2383
  }
2362
- `,Zv=Fd`
2384
+ `,ey=Fd`
2363
2385
  mutation runAgent($id: ID!) {
2364
2386
  run_agent(id: $id) {
2365
2387
  trigger_uuid
2366
2388
  }
2367
2389
  }
2368
- `,ey=Fd`
2390
+ `,ty=Fd`
2369
2391
  query getAgentActiveTriggers($agent_id: ID!) {
2370
2392
  agent_active_triggers(agent_id: $agent_id) {
2371
2393
  node_id
@@ -2375,31 +2397,31 @@
2375
2397
  field_summary
2376
2398
  }
2377
2399
  }
2378
- `,ty=Fd`
2400
+ `,ay=Fd`
2379
2401
  mutation addTriggerToAgent($agent_id: ID!, $block_reference_id: ID!, $field_values: JSON) {
2380
2402
  add_trigger_to_agent(agent_id: $agent_id, block_reference_id: $block_reference_id, field_values: $field_values) {
2381
2403
  success
2382
2404
  }
2383
2405
  }
2384
- `,ay=Fd`
2406
+ `,iy=Fd`
2385
2407
  mutation removeTriggerFromAgent($agent_id: ID!, $node_id: ID!) {
2386
2408
  remove_trigger_from_agent(agent_id: $agent_id, node_id: $node_id) {
2387
2409
  success
2388
2410
  }
2389
2411
  }
2390
- `,iy=Fd`
2412
+ `,ny=Fd`
2391
2413
  mutation addSkillToAgent($agent_id: ID!, $skill_id: ID!) {
2392
2414
  add_skill_to_agent(agent_id: $agent_id, skill_id: $skill_id) {
2393
2415
  success
2394
2416
  }
2395
2417
  }
2396
- `,ny=Fd`
2418
+ `,oy=Fd`
2397
2419
  mutation removeSkillFromAgent($agent_id: ID!, $skill_id: ID!) {
2398
2420
  remove_skill_from_agent(agent_id: $agent_id, skill_id: $skill_id) {
2399
2421
  success
2400
2422
  }
2401
2423
  }
2402
- `,oy=Fd`
2424
+ `,ry=Fd`
2403
2425
  query getAgentTriggersCatalog($block_reference_ids: [ID!]) {
2404
2426
  agent_triggers_catalog(block_reference_ids: $block_reference_ids) {
2405
2427
  block_reference_id
@@ -2416,7 +2438,7 @@
2416
2438
  }
2417
2439
  }
2418
2440
  }
2419
- `,ry=Fd`
2441
+ `,sy=Fd`
2420
2442
  query getAgentSkillsCatalog {
2421
2443
  agent_skills_catalog {
2422
2444
  id
@@ -2424,7 +2446,7 @@
2424
2446
  description
2425
2447
  }
2426
2448
  }
2427
- `,sy=Fd`
2449
+ `,dy=Fd`
2428
2450
  mutation createAgentSkill($name: String!, $content: String!, $description: String) {
2429
2451
  create_agent_skill(name: $name, content: $content, description: $description) {
2430
2452
  id
@@ -2432,7 +2454,7 @@
2432
2454
  description
2433
2455
  }
2434
2456
  }
2435
- `,dy={action:n.z.enum(["create","create_blank","get","update","delete","activate","deactivate","run"]).describe('"create" — create a new agent via AI (pass prompt). "create_blank" — create a new agent manually (pass name/role/etc). "get" — fetch one agent by agent_id or list owned agents. "update" — modify mutable fields on an existing agent. "delete" — permanently delete an agent (irreversible). "activate" — transition agent to ACTIVE. "deactivate" — transition agent to INACTIVE. "run" — manually enqueue an agent run (fire-and-forget).'),agent_id:n.z.string().trim().min(1,"agent_id must be a non-empty string").optional().describe('Used with action:"get" to fetch a specific agent. Required for action:"update", "delete", "activate", "deactivate", "run". Omit for action:"create", "create_blank", or action:"get" (to list owned agents).'),prompt:n.z.string().trim().min(1).optional().describe('Required for action:"create". Plain-language description of what the agent should do. Platform generates profile, goal, and plan via AI.'),agent_model:n.z.nativeEnum(xf).optional().describe('Used with action:"create" or action:"update". Omit unless the user explicitly names a valid monday-supported model.'),name:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank" or action:"update". Display name of the agent.'),role:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank" or action:"update". Short role title (e.g. "Customer Success Bot").'),role_description:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank" or action:"update". Detailed description of the agent role.'),avatar_url:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank". HTTPS URL of the avatar. Prefer dapulse-res.cloudinary.com or cdn.monday.com.'),gender:n.z.enum(["male","female"]).optional().describe('Used with action:"create_blank". Hint for generated avatar/name when profile fields are omitted.'),background_color:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank". Lowercase hex, e.g. "#9450fd".'),user_prompt:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank". Stored as metadata. Not used for AI generation.'),plan:n.z.string().trim().min(1).optional().describe('Used with action:"update". New step-by-step execution plan in markdown.')};const py={action:n.z.enum(["list","add","remove"]).describe('"list" — returns all triggers currently attached to this agent (includes node_id needed for remove). "add" — attaches a new trigger by block_reference_id. "remove" — detaches a trigger instance by node_id.'),agent_id:n.z.string().trim().min(1,"agent_id must be a non-empty string").describe("Unique identifier of the agent."),block_reference_id:n.z.string().trim().min(1).optional().describe('Required for action:"add". The block_reference_id from agent_catalog action:"list_triggers" identifying the trigger type to attach. Never guess this value — look it up in the catalog first.'),field_values:n.z.record(n.z.union([n.z.string(),n.z.number(),n.z.boolean(),n.z.object({value:n.z.string(),label:n.z.string()}).passthrough()])).optional().describe('Used with action:"add" when the trigger type has required_fields. Key/value object whose shape is described by field_schemas in the agent_catalog response. Scalar fields use string/number/boolean values. Selection fields use { "value": "<id>", "label": "<name>" }.'),node_id:n.z.string().trim().min(1).optional().describe('Required for action:"remove". The node_id of the trigger instance — get it from action:"list". Each instance has a unique node_id even if the same trigger type is attached multiple times. Do NOT pass block_reference_id here.')};const ly={action:n.z.enum(["create","add","remove"]).describe('"create" — author a new custom skill in the account-wide catalog (no agent_id needed). "add" — attach an existing skill to this agent by skill_id. "remove" — detach a skill from this agent.'),agent_id:n.z.string().trim().min(1).optional().describe('Required for action:"add" and action:"remove". Not used for action:"create" (account-level operation).'),name:n.z.string().trim().min(1).optional().describe('Required for action:"create". Display name of the new skill.'),content:n.z.string().trim().min(1).optional().describe('Required for action:"create". Markdown instructions defining what the skill does and how to execute it. Be specific and thorough — this is the skill\'s runtime behavior.'),description:n.z.string().trim().min(1).optional().describe('Used with action:"create". Short description shown in the catalog.'),skill_id:n.z.string().trim().min(1).optional().describe('Required for action:"add" and action:"remove". The skill id from agent_catalog action:"list_skills", or the id returned by action:"create" in this tool. Never guess or invent a skill id.')};const cy=Fd`
2457
+ `,py={action:n.z.enum(["create","create_blank","get","update","delete","activate","deactivate","run"]).describe('"create" — create a new agent via AI (pass prompt). "create_blank" — create a new agent manually (pass name/role/etc). "get" — fetch one agent by agent_id or list owned agents. "update" — modify mutable fields on an existing agent. "delete" — permanently delete an agent (irreversible). "activate" — transition agent to ACTIVE. "deactivate" — transition agent to INACTIVE. "run" — manually enqueue an agent run (fire-and-forget).'),agent_id:n.z.string().trim().min(1,"agent_id must be a non-empty string").optional().describe('Used with action:"get" to fetch a specific agent. Required for action:"update", "delete", "activate", "deactivate", "run". Omit for action:"create", "create_blank", or action:"get" (to list owned agents).'),prompt:n.z.string().trim().min(1).optional().describe('Required for action:"create". Plain-language description of what the agent should do. Platform generates profile, goal, and plan via AI.'),agent_model:n.z.nativeEnum(Lf).optional().describe('Used with action:"create" or action:"update". Omit unless the user explicitly names a valid monday-supported model.'),name:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank" or action:"update". Display name of the agent.'),role:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank" or action:"update". Short role title (e.g. "Customer Success Bot").'),role_description:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank" or action:"update". Detailed description of the agent role.'),avatar_url:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank". HTTPS URL of the avatar. Prefer dapulse-res.cloudinary.com or cdn.monday.com.'),gender:n.z.enum(["male","female"]).optional().describe('Used with action:"create_blank". Hint for generated avatar/name when profile fields are omitted.'),background_color:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank". Lowercase hex, e.g. "#9450fd".'),user_prompt:n.z.string().trim().min(1).optional().describe('Used with action:"create_blank". Stored as metadata. Not used for AI generation.'),plan:n.z.string().trim().min(1).optional().describe('Used with action:"update". New step-by-step execution plan in markdown.')};const ly={action:n.z.enum(["list","add","remove"]).describe('"list" — returns all triggers currently attached to this agent (includes node_id needed for remove). "add" — attaches a new trigger by block_reference_id. "remove" — detaches a trigger instance by node_id.'),agent_id:n.z.string().trim().min(1,"agent_id must be a non-empty string").describe("Unique identifier of the agent."),block_reference_id:n.z.string().trim().min(1).optional().describe('Required for action:"add". The block_reference_id from agent_catalog action:"list_triggers" identifying the trigger type to attach. Never guess this value — look it up in the catalog first.'),field_values:n.z.record(n.z.union([n.z.string(),n.z.number(),n.z.boolean(),n.z.object({value:n.z.string(),label:n.z.string()}).passthrough()])).optional().describe('Used with action:"add" when the trigger type has required_fields. Key/value object whose shape is described by field_schemas in the agent_catalog response. Scalar fields use string/number/boolean values. Selection fields use { "value": "<id>", "label": "<name>" }.'),node_id:n.z.string().trim().min(1).optional().describe('Required for action:"remove". The node_id of the trigger instance — get it from action:"list". Each instance has a unique node_id even if the same trigger type is attached multiple times. Do NOT pass block_reference_id here.')};const cy={action:n.z.enum(["create","add","remove"]).describe('"create" — author a new custom skill in the account-wide catalog (no agent_id needed). "add" — attach an existing skill to this agent by skill_id. "remove" — detach a skill from this agent.'),agent_id:n.z.string().trim().min(1).optional().describe('Required for action:"add" and action:"remove". Not used for action:"create" (account-level operation).'),name:n.z.string().trim().min(1).optional().describe('Required for action:"create". Display name of the new skill.'),content:n.z.string().trim().min(1).optional().describe('Required for action:"create". Markdown instructions defining what the skill does and how to execute it. Be specific and thorough — this is the skill\'s runtime behavior.'),description:n.z.string().trim().min(1).optional().describe('Used with action:"create". Short description shown in the catalog.'),skill_id:n.z.string().trim().min(1).optional().describe('Required for action:"add" and action:"remove". The skill id from agent_catalog action:"list_skills", or the id returned by action:"create" in this tool. Never guess or invent a skill id.')};const my=Fd`
2436
2458
  query getAgentKnowledge($id: ID!) {
2437
2459
  agent_knowledge(id: $id) {
2438
2460
  resources {
@@ -2447,25 +2469,25 @@
2447
2469
  }
2448
2470
  }
2449
2471
  }
2450
- `,my=Fd`
2472
+ `,uy=Fd`
2451
2473
  mutation addAgentResourceAccess($id: ID!, $resource_id: ID!, $scope_type: KnowledgeScope!, $permission_type: KnowledgePermission!) {
2452
2474
  add_agent_resource_access(id: $id, resource_id: $resource_id, scope_type: $scope_type, permission_type: $permission_type) {
2453
2475
  success
2454
2476
  }
2455
2477
  }
2456
- `,uy=Fd`
2478
+ `,hy=Fd`
2457
2479
  mutation removeAgentResourceAccess($id: ID!, $resource_id: ID!, $scope_type: KnowledgeScope!) {
2458
2480
  remove_agent_resource_access(id: $id, resource_id: $resource_id, scope_type: $scope_type) {
2459
2481
  success
2460
2482
  }
2461
2483
  }
2462
- `,hy=Fd`
2484
+ `,fy=Fd`
2463
2485
  mutation updateAgentResourceAccess($id: ID!, $resource_id: ID!, $scope_type: KnowledgeScope!, $permission_type: KnowledgePermission!) {
2464
2486
  update_agent_resource_access(id: $id, resource_id: $resource_id, scope_type: $scope_type, permission_type: $permission_type) {
2465
2487
  success
2466
2488
  }
2467
2489
  }
2468
- `,fy={action:n.z.enum(["list","add","update","remove"]).describe('"list" — returns all resources the agent currently has access to. "add" — grants access to a board or doc. "update" — changes the permission level on an existing resource. "remove" — revokes the agent\'s access to a board or doc.'),agent_id:n.z.string().trim().min(1).describe("Unique identifier of the agent."),resource_id:n.z.string().trim().min(1).optional().describe("Required for action:add, action:update, action:remove. The ID of the board or doc to grant/update/revoke access to."),scope_type:n.z.enum(["BOARD","DOC"]).optional().describe('Required for action:add, action:update, action:remove. The type of resource: "BOARD" or "DOC".'),permission_type:n.z.enum(["READ","READ_WRITE"]).optional().describe('Required for action:add and action:update. The permission level: "READ" (agent can read the resource) or "READ_WRITE" (agent can read and write the resource).')};const _y={action:n.z.enum(["list_triggers","list_skills"]).describe('"list_triggers" — fetch available trigger types with block_reference_id, field_schemas, and required_fields. Call before using manage_agent_triggers action:"add". "list_skills" — fetch available skills with id, name, description. Call before using manage_agent_skills action:"add".'),block_reference_ids:n.z.array(n.z.string()).min(1).optional().describe('Used with action:"list_triggers". Fetch specific trigger types by block_reference_id. Omit to return all trigger types.')};const gy=Fd`
2490
+ `,_y={action:n.z.enum(["list","add","update","remove"]).describe('"list" — returns all resources the agent currently has access to. "add" — grants access to a board or doc. "update" — changes the permission level on an existing resource. "remove" — revokes the agent\'s access to a board or doc.'),agent_id:n.z.string().trim().min(1).describe("Unique identifier of the agent."),resource_id:n.z.string().trim().min(1).optional().describe("Required for action:add, action:update, action:remove. The ID of the board or doc to grant/update/revoke access to."),scope_type:n.z.enum(["BOARD","DOC"]).optional().describe('Required for action:add, action:update, action:remove. The type of resource: "BOARD" or "DOC".'),permission_type:n.z.enum(["READ","READ_WRITE"]).optional().describe('Required for action:add and action:update. The permission level: "READ" (agent can read the resource) or "READ_WRITE" (agent can read and write the resource).')};const gy={action:n.z.enum(["list_triggers","list_skills"]).describe('"list_triggers" — fetch available trigger types with block_reference_id, field_schemas, and required_fields. Call before using manage_agent_triggers action:"add". "list_skills" — fetch available skills with id, name, description. Call before using manage_agent_skills action:"add".'),block_reference_ids:n.z.array(n.z.string()).min(1).optional().describe('Used with action:"list_triggers". Fetch specific trigger types by block_reference_id. Omit to return all trigger types.')};const by=Fd`
2469
2491
  query getBoardAutomations($boardIds: [ID!], $limit: Int, $cursor: String, $includeLegacy: Boolean!) {
2470
2492
  board_automations(board_ids: $boardIds, limit: $limit, cursor: $cursor) {
2471
2493
  cursor
@@ -2487,39 +2509,39 @@
2487
2509
  }
2488
2510
  }
2489
2511
  }
2490
- `;function by(e){if("string"!=typeof e)return e;const t=Number(e);return Number.isNaN(t)?e:t}function vy(e){const{active:t,user_id:a,...i}=e;return{...i,user_id:by(a),is_active:t??!1}}const yy={boardId:n.z.string().trim().min(1,"boardId must be a non-empty string").describe("The numeric board ID as a string."),limit:n.z.number().int().min(1).max(100).optional().describe("Maximum number of automations to return. Default: 100."),cursor:n.z.string().optional().describe("Pagination cursor from a previous response. Pass to retrieve the next page of automations.")};const Iy=Fd`
2512
+ `;function vy(e){if("string"!=typeof e)return e;const t=Number(e);return Number.isNaN(t)?e:t}function yy(e){const{active:t,user_id:a,...i}=e;return{...i,user_id:vy(a),is_active:t??!1}}const Iy={boardId:n.z.string().trim().min(1,"boardId must be a non-empty string").describe("The numeric board ID as a string."),limit:n.z.number().int().min(1).max(100).optional().describe("Maximum number of automations to return. Default: 100."),cursor:n.z.string().optional().describe("Pagination cursor from a previous response. Pass to retrieve the next page of automations.")};const wy=Fd`
2491
2513
  mutation activateLiveWorkflow($id: ID!) {
2492
2514
  activate_live_workflow(id: $id) {
2493
2515
  is_success
2494
2516
  }
2495
2517
  }
2496
- `,wy=Fd`
2518
+ `,Ty=Fd`
2497
2519
  mutation deactivateLiveWorkflow($id: ID!) {
2498
2520
  deactivate_live_workflow(id: $id) {
2499
2521
  is_success
2500
2522
  }
2501
2523
  }
2502
- `,Ty=Fd`
2524
+ `,Ey=Fd`
2503
2525
  mutation deleteLiveWorkflow($id: ID!) {
2504
2526
  delete_live_workflow(id: $id) {
2505
2527
  is_success
2506
2528
  }
2507
2529
  }
2508
- `,Ey={action:n.z.enum(["activate","deactivate","delete"]).describe("The operation to perform. activate: enables a paused automation so it responds to its trigger. deactivate: pauses an automation without deleting it. delete: permanently removes an automation (irreversible)."),workflowId:n.z.string().trim().min(1,"workflowId must be a non-empty string").describe("The automation ID to operate on. Obtain from list_automations.")};const Ay="platform-agent",Sy=({path:e,method:t,headers:a,body:i,signal:n})=>fetch(`https://api.monday.com${e}`,{method:t,headers:a,body:i,signal:n}),Ny=e=>e?.fetchConfig?.fetch??Sy,Dy={userPrompt:n.z.string().trim().min(1,"userPrompt must be a non-empty string").describe("Structured description of the automation to create."),boardId:n.z.string().trim().min(1,"boardId must be a non-empty string").describe("The numeric board ID as a string.")};const Oy="\n triggerUuid\n eventState\n eventKind\n triggerStartedAt\n createdAt\n triggerDuration\n errorReason\n entityKind\n hostType\n hostInstanceId\n billingActionsCount\n creatorAppFeatureReferenceId\n waitingForTriggerName\n reignitionSubscriptionId\n",ky=Fd`
2530
+ `,Ay={action:n.z.enum(["activate","deactivate","delete"]).describe("The operation to perform. activate: enables a paused automation so it responds to its trigger. deactivate: pauses an automation without deleting it. delete: permanently removes an automation (irreversible)."),workflowId:n.z.string().trim().min(1,"workflowId must be a non-empty string").describe("The automation ID to operate on. Obtain from list_automations.")};const Sy="platform-agent",Ny=({path:e,method:t,headers:a,body:i,signal:n})=>fetch(`https://api.monday.com${e}`,{method:t,headers:a,body:i,signal:n}),Dy=e=>e?.fetchConfig?.fetch??Ny,Oy={userPrompt:n.z.string().trim().min(1,"userPrompt must be a non-empty string").describe("Structured description of the automation to create."),boardId:n.z.string().trim().min(1,"boardId must be a non-empty string").describe("The numeric board ID as a string.")};const ky="\n triggerUuid\n eventState\n eventKind\n triggerStartedAt\n createdAt\n triggerDuration\n errorReason\n entityKind\n hostType\n hostInstanceId\n billingActionsCount\n creatorAppFeatureReferenceId\n waitingForTriggerName\n reignitionSubscriptionId\n",Cy=Fd`
2509
2531
  query GetTriggerEvents($nextPageOffset: Int, $filters: TriggerEventsFiltersInput) {
2510
2532
  trigger_events(nextPageOffset: $nextPageOffset, filters: $filters) {
2511
2533
  triggerEvents {
2512
- ${Oy}
2534
+ ${ky}
2513
2535
  }
2514
2536
  }
2515
2537
  }
2516
- `,Cy=Fd`
2538
+ `,Ry=Fd`
2517
2539
  query GetTriggerEvent($triggerUuid: String!) {
2518
2540
  trigger_event(triggerUuid: $triggerUuid) {
2519
- ${Oy}
2541
+ ${ky}
2520
2542
  }
2521
2543
  }
2522
- `,Ry=Fd`
2544
+ `,$y=Fd`
2523
2545
  query GetBlockEvents($triggerUuid: String!, $nextPageOffset: Int) {
2524
2546
  block_events(triggerUuid: $triggerUuid, nextPageOffset: $nextPageOffset) {
2525
2547
  blockEvents {
@@ -2539,7 +2561,7 @@
2539
2561
  }
2540
2562
  }
2541
2563
  }
2542
- `,$y=Fd`
2564
+ `,xy=Fd`
2543
2565
  query GetToolEvents($triggerUuid: String!, $nextPageOffset: Int) {
2544
2566
  tool_events(trigger_uuid: $triggerUuid, next_page_offset: $nextPageOffset) {
2545
2567
  tool_events {
@@ -2555,7 +2577,7 @@
2555
2577
  }
2556
2578
  }
2557
2579
  }
2558
- `,xy=n.z.object({dateRange:n.z.object({startDate:n.z.string().min(1).describe('Start date (ISO 8601 or date-only, e.g. "2026-05-01")'),endDate:n.z.string().min(1).describe("End date (ISO 8601 or date-only)")}).optional().describe("Date range filter"),stateFilter:n.z.array(n.z.string()).optional().describe('Filter by event state (e.g. ["success", "failure"])'),automationIds:n.z.array(n.z.number().int()).optional().describe("Filter by automation IDs"),workflowEntityIds:n.z.array(n.z.number().int()).optional().describe("Filter by workflow entity IDs"),itemId:n.z.string().optional().describe("Filter by item identifier"),entityKind:n.z.string().optional().describe("Filter by entity kind"),hostType:n.z.string().optional().describe("Filter by host type")}).optional(),Ly={mode:n.z.enum(["history","detail"]).describe("history = paginated run feed, detail = single run by triggerUuid"),boardId:n.z.string().min(1).optional().describe("Target a specific board by numeric ID"),accountWide:n.z.boolean().optional().describe("Set true to query account-wide (required if no boardId)"),nextPageOffset:n.z.number().int().nonnegative().optional().describe("history: page offset (offset-only pagination)"),filters:xy.describe("history: run filters"),triggerUuid:n.z.string().optional().describe("detail: required — the run UUID to inspect"),includeToolEvents:n.z.boolean().optional().describe("detail: include MCP tool calls (default true)"),blockEventsOffset:n.z.number().int().nonnegative().optional().describe("detail: block-events page offset"),toolEventsOffset:n.z.number().int().nonnegative().optional().describe("detail: tool-events page offset")};const Uy=Fd`
2580
+ `,Ly=n.z.object({dateRange:n.z.object({startDate:n.z.string().min(1).describe('Start date (ISO 8601 or date-only, e.g. "2026-05-01")'),endDate:n.z.string().min(1).describe("End date (ISO 8601 or date-only)")}).optional().describe("Date range filter"),stateFilter:n.z.array(n.z.string()).optional().describe('Filter by event state (e.g. ["success", "failure"])'),automationIds:n.z.array(n.z.number().int()).optional().describe("Filter by automation IDs"),workflowEntityIds:n.z.array(n.z.number().int()).optional().describe("Filter by workflow entity IDs"),itemId:n.z.string().optional().describe("Filter by item identifier"),entityKind:n.z.string().optional().describe("Filter by entity kind"),hostType:n.z.string().optional().describe("Filter by host type")}).optional(),Uy={mode:n.z.enum(["history","detail"]).describe("history = paginated run feed, detail = single run by triggerUuid"),boardId:n.z.string().min(1).optional().describe("Target a specific board by numeric ID"),accountWide:n.z.boolean().optional().describe("Set true to query account-wide (required if no boardId)"),nextPageOffset:n.z.number().int().nonnegative().optional().describe("history: page offset (offset-only pagination)"),filters:Ly.describe("history: run filters"),triggerUuid:n.z.string().optional().describe("detail: required — the run UUID to inspect"),includeToolEvents:n.z.boolean().optional().describe("detail: include MCP tool calls (default true)"),blockEventsOffset:n.z.number().int().nonnegative().optional().describe("detail: block-events page offset"),toolEventsOffset:n.z.number().int().nonnegative().optional().describe("detail: tool-events page offset")};const Py=Fd`
2559
2581
  query GetAccountTriggerStatistics($filters: AccountTriggerStatisticsFiltersInput) {
2560
2582
  account_trigger_statistics(filters: $filters) {
2561
2583
  id
@@ -2564,7 +2586,7 @@
2564
2586
  total
2565
2587
  }
2566
2588
  }
2567
- `,Py=Fd`
2589
+ `,Fy=Fd`
2568
2590
  query GetAccountTriggersByEntity($runStatus: TriggerEventState!, $filters: AccountTriggersByEntityIdFiltersInput) {
2569
2591
  account_triggers_statistics_by_entity_id(run_status: $runStatus, filters: $filters) {
2570
2592
  id
@@ -2572,7 +2594,7 @@
2572
2594
  workflow_statistics
2573
2595
  }
2574
2596
  }
2575
- `,Fy={breakdown:n.z.enum(["totals","by_entity"]).describe("totals = success/failure/total counts, by_entity = per automation/workflow"),boardId:n.z.string().min(1).optional().describe("Target a specific board by numeric ID"),accountWide:n.z.boolean().optional().describe("Set true to query account-wide (required if no boardId)"),userIds:n.z.array(n.z.number().int()).optional().describe("Narrow to specific creator user IDs"),runStatus:n.z.enum(["success","failure","exhausted"]).optional().describe("by_entity: required run status to break down"),excludeAutomationIds:n.z.array(n.z.number().int()).optional().describe("by_entity: automation IDs to exclude from breakdown")};const Vy=Fd`
2597
+ `,Vy={breakdown:n.z.enum(["totals","by_entity"]).describe("totals = success/failure/total counts, by_entity = per automation/workflow"),boardId:n.z.string().min(1).optional().describe("Target a specific board by numeric ID"),accountWide:n.z.boolean().optional().describe("Set true to query account-wide (required if no boardId)"),userIds:n.z.array(n.z.number().int()).optional().describe("Narrow to specific creator user IDs"),runStatus:n.z.enum(["success","failure","exhausted"]).optional().describe("by_entity: required run status to break down"),excludeAutomationIds:n.z.array(n.z.number().int()).optional().describe("by_entity: automation IDs to exclude from breakdown")};const My=Fd`
2576
2598
  mutation createWorkflow(
2577
2599
  $workspace_id: ID!
2578
2600
  $title: String
@@ -2593,7 +2615,7 @@
2593
2615
  workflow_draft_id
2594
2616
  }
2595
2617
  }
2596
- `,My={workspaceId:n.z.string().trim().min(1,"workspaceId must be a non-empty string").describe("The ID of the workspace to create the workflow in."),title:n.z.string().optional().describe('Workflow title. Defaults to "New Workflow" if not provided.'),privacyKind:n.z.enum(["PUBLIC","PRIVATE","SHAREABLE"]).optional().describe("Workflow visibility: PUBLIC (default), PRIVATE, or SHAREABLE (accessible to guests outside the account)."),description:n.z.string().optional().describe("Optional workflow description."),folderId:n.z.string().optional().describe("Optional folder ID to place the workflow in."),ownerIds:n.z.array(n.z.string()).optional().describe("Optional list of user IDs to set as workflow owners.")};const By={workflowObjectId:n.z.number().describe("The workflow object ID returned by create_workflow. Identifies the workflow across all its drafts and published versions. Does not change across publishes."),workflowDraftId:n.z.number().describe("The draft version ID to update. Use the workflowDraftId from the previous create_workflow or update_workflow response — the agent may return a new draft ID, so always read it from the latest response rather than reusing an earlier value."),prompt:n.z.string().trim().min(1,"prompt must be a non-empty string").max(2e3,"prompt must not exceed 2000 characters").describe('Natural-language description of the changes to make. Describe what steps to add, remove, or modify in plain English (e.g. "Add a trigger that fires when an item is created on the Marketing board"). The agent interprets this and applies the right structural changes. Maximum 2000 characters.')};const zy={prompt:n.z.string().trim().min(1,"prompt must be a non-empty string").max(2e3,"prompt must not exceed 2000 characters").describe('Natural-language description of the process to plan. Describe the full end-to-end process in plain English (e.g. "When a deal is marked Won, create a task in the onboarding board and notify the account manager"). The agent will decompose this into one or more monday.com workflows, identify all required boards and columns, and return a structured implementation plan. Maximum 2000 characters.')};const jy=Fd`
2618
+ `,By={workspaceId:n.z.string().trim().min(1,"workspaceId must be a non-empty string").describe("The ID of the workspace to create the workflow in."),title:n.z.string().optional().describe('Workflow title. Defaults to "New Workflow" if not provided.'),privacyKind:n.z.enum(["PUBLIC","PRIVATE","SHAREABLE"]).optional().describe("Workflow visibility: PUBLIC (default), PRIVATE, or SHAREABLE (accessible to guests outside the account)."),description:n.z.string().optional().describe("Optional workflow description."),folderId:n.z.string().optional().describe("Optional folder ID to place the workflow in."),ownerIds:n.z.array(n.z.string()).optional().describe("Optional list of user IDs to set as workflow owners.")};const zy={workflowObjectId:n.z.number().describe("The workflow object ID returned by create_workflow. Identifies the workflow across all its drafts and published versions. Does not change across publishes."),workflowDraftId:n.z.number().describe("The draft version ID to update. Use the workflowDraftId from the previous create_workflow or update_workflow response — the agent may return a new draft ID, so always read it from the latest response rather than reusing an earlier value."),prompt:n.z.string().trim().min(1,"prompt must be a non-empty string").max(2e3,"prompt must not exceed 2000 characters").describe('Natural-language description of the changes to make. Describe what steps to add, remove, or modify in plain English (e.g. "Add a trigger that fires when an item is created on the Marketing board"). The agent interprets this and applies the right structural changes. Maximum 2000 characters.')};const jy={prompt:n.z.string().trim().min(1,"prompt must be a non-empty string").max(2e3,"prompt must not exceed 2000 characters").describe('Natural-language description of the process to plan. Describe the full end-to-end process in plain English (e.g. "When a deal is marked Won, create a task in the onboarding board and notify the account manager"). The agent will decompose this into one or more monday.com workflows, identify all required boards and columns, and return a structured implementation plan. Maximum 2000 characters.')};const qy=Fd`
2597
2619
  mutation publishWorkflow($workflow_object_id: ID!, $workflow_draft_id: ID!, $should_activate: Boolean) {
2598
2620
  publish_workflow(
2599
2621
  workflow_object_id: $workflow_object_id
@@ -2604,7 +2626,7 @@
2604
2626
  workflow_live_id
2605
2627
  }
2606
2628
  }
2607
- `,qy={workflowObjectId:n.z.string().trim().min(1,"workflowObjectId must be a non-empty string").describe("The workflow object ID returned by create_workflow. Identifies the workflow across all its drafts and live versions."),workflowDraftId:n.z.string().trim().min(1,"workflowDraftId must be a non-empty string").describe("The draft version ID returned by create_workflow. Both workflowObjectId and workflowDraftId are required — together they identify the exact draft to publish."),shouldActivate:n.z.boolean().optional().describe("Whether to activate the workflow immediately after publishing so it starts running. Defaults to true — the workflow is activated immediately after publish.")};const Gy=Fd`
2629
+ `,Gy={workflowObjectId:n.z.string().trim().min(1,"workflowObjectId must be a non-empty string").describe("The workflow object ID returned by create_workflow. Identifies the workflow across all its drafts and live versions."),workflowDraftId:n.z.string().trim().min(1,"workflowDraftId must be a non-empty string").describe("The draft version ID returned by create_workflow. Both workflowObjectId and workflowDraftId are required — together they identify the exact draft to publish."),shouldActivate:n.z.boolean().optional().describe("Whether to activate the workflow immediately after publishing so it starts running. Defaults to true — the workflow is activated immediately after publish.")};const Hy=Fd`
2608
2630
  mutation ConfigureCategorizeAiColumn(
2609
2631
  $boardId: ID!
2610
2632
  $columnId: ID!
@@ -2624,7 +2646,7 @@
2624
2646
  column_id
2625
2647
  }
2626
2648
  }
2627
- `,Hy=Fd`
2649
+ `,Wy=Fd`
2628
2650
  mutation ConfigureSummarizeAiColumn(
2629
2651
  $boardId: ID!
2630
2652
  $columnId: ID!
@@ -2644,7 +2666,7 @@
2644
2666
  column_id
2645
2667
  }
2646
2668
  }
2647
- `,Wy=Fd`
2669
+ `,Yy=Fd`
2648
2670
  mutation ConfigureTranslateAiColumn(
2649
2671
  $boardId: ID!
2650
2672
  $columnId: ID!
@@ -2664,7 +2686,7 @@
2664
2686
  column_id
2665
2687
  }
2666
2688
  }
2667
- `,Yy=Fd`
2689
+ `,Ky=Fd`
2668
2690
  mutation ConfigureImproveTextAiColumn(
2669
2691
  $boardId: ID!
2670
2692
  $columnId: ID!
@@ -2688,7 +2710,7 @@
2688
2710
  column_id
2689
2711
  }
2690
2712
  }
2691
- `,Ky=Fd`
2713
+ `,Qy=Fd`
2692
2714
  mutation ConfigureExtractAiColumn(
2693
2715
  $boardId: ID!
2694
2716
  $columnId: ID!
@@ -2712,7 +2734,7 @@
2712
2734
  column_id
2713
2735
  }
2714
2736
  }
2715
- `,Qy=Fd`
2737
+ `,Jy=Fd`
2716
2738
  mutation ConfigureOpenBlockAiColumn(
2717
2739
  $boardId: ID!
2718
2740
  $columnId: ID!
@@ -2728,7 +2750,7 @@
2728
2750
  column_id
2729
2751
  }
2730
2752
  }
2731
- `,Jy=Fd`
2753
+ `,Xy=Fd`
2732
2754
  mutation ConfigureWriteMeAiColumn(
2733
2755
  $boardId: ID!
2734
2756
  $columnId: ID!
@@ -2748,7 +2770,7 @@
2748
2770
  column_id
2749
2771
  }
2750
2772
  }
2751
- `,Xy=Fd`
2773
+ `,Zy=Fd`
2752
2774
  mutation ConfigurePersonAssignmentAiColumn(
2753
2775
  $boardId: ID!
2754
2776
  $columnId: ID!
@@ -2768,14 +2790,14 @@
2768
2790
  column_id
2769
2791
  }
2770
2792
  }
2771
- `,Zy={board_id:n.z.number().describe("The ID of the board containing the column"),column_id:n.z.string().describe("The ID of the column to configure with AI"),block_type:n.z.enum(["categorize","summarize","translate","improve_text","extract","open_block","write_me","person_assignment"]).describe("The AI block type to configure. See tool description for which fields apply to each block."),source_type:n.z.enum(["item_name","thread","column","emails_and_activities"]).optional().describe("Where the AI reads input. Required for all blocks except open_block and write_me. Values: item_name (item name), thread (updates/comments), column (another column — requires source_column_id), emails_and_activities (categorize only)."),source_column_id:n.z.string().optional().describe('The ID of the source column. Required when source_type is "column".'),additional_instructions:n.z.string().max(3e3).optional().describe("Custom instructions for categorize/summarize/extract blocks (max 3000 chars)."),target_language:n.z.enum(["english","spanish","french","german","hebrew","chinese","korean","arabic","bengali","danish","dutch","hindi","indonesian","italian","japanese","norwegian","polish","portuguese","russian","swedish","thai","turkish","vietnamese"]).optional().describe("Required for translate block. The target language to translate text into."),tone:n.z.enum(["empathic","promotional","confident","professional","natural","casual","friendly","same"]).optional().describe("Writing tone. Required for write_me, optional for improve_text."),output_length:n.z.enum(["sentence","paragraph","brief","in_depth"]).optional().describe("Required for write_me block. Approximate desired output length."),improver_length:n.z.enum(["same","shorter","longer"]).optional().describe("For improve_text only. Desired length relative to input text."),refinement_type:n.z.enum(["minimal_changes","moderate_changes","high_creativity"]).optional().describe("For improve_text only. Level of text refinement to apply."),entity_type:n.z.enum(["email_address","first_name","last_name","phone_number","company_name","domain_name","url","date","time","year","custom"]).optional().describe("Required for extract block. Type of entity to extract from text."),custom_instructions:n.z.string().max(3e3).optional().describe('Required for extract when entity_type is "custom". Describes what to extract (max 3000 chars).'),ai_query:n.z.string().max(3e3).optional().describe("Required for open_block and write_me. Natural-language prompt. Reference columns via {pulse.column_id}, item name via {pulse.name}, subitems via {pulse.subitem.column_id}. Max 3000 chars."),groups:n.z.array(n.z.object({user_ids:n.z.array(n.z.number()).describe("Array of user IDs in this group"),description:n.z.string().describe("Description of this group (e.g., role, team name, or assignment criteria)")})).optional().describe("Required for person_assignment. Array of groups, each with user_ids and a description."),run_backfill:n.z.boolean().optional().describe("Whether to immediately apply AI to existing items (up to 200). Defaults to true.")};const eI=Fd`
2793
+ `,eI={board_id:n.z.number().describe("The ID of the board containing the column"),column_id:n.z.string().describe("The ID of the column to configure with AI"),block_type:n.z.enum(["categorize","summarize","translate","improve_text","extract","open_block","write_me","person_assignment"]).describe("The AI block type to configure. See tool description for which fields apply to each block."),source_type:n.z.enum(["item_name","thread","column","emails_and_activities"]).optional().describe("Where the AI reads input. Required for all blocks except open_block and write_me. Values: item_name (item name), thread (updates/comments), column (another column — requires source_column_id), emails_and_activities (categorize only)."),source_column_id:n.z.string().optional().describe('The ID of the source column. Required when source_type is "column".'),additional_instructions:n.z.string().max(3e3).optional().describe("Custom instructions for categorize/summarize/extract blocks (max 3000 chars)."),target_language:n.z.enum(["english","spanish","french","german","hebrew","chinese","korean","arabic","bengali","danish","dutch","hindi","indonesian","italian","japanese","norwegian","polish","portuguese","russian","swedish","thai","turkish","vietnamese"]).optional().describe("Required for translate block. The target language to translate text into."),tone:n.z.enum(["empathic","promotional","confident","professional","natural","casual","friendly","same"]).optional().describe("Writing tone. Required for write_me, optional for improve_text."),output_length:n.z.enum(["sentence","paragraph","brief","in_depth"]).optional().describe("Required for write_me block. Approximate desired output length."),improver_length:n.z.enum(["same","shorter","longer"]).optional().describe("For improve_text only. Desired length relative to input text."),refinement_type:n.z.enum(["minimal_changes","moderate_changes","high_creativity"]).optional().describe("For improve_text only. Level of text refinement to apply."),entity_type:n.z.enum(["email_address","first_name","last_name","phone_number","company_name","domain_name","url","date","time","year","custom"]).optional().describe("Required for extract block. Type of entity to extract from text."),custom_instructions:n.z.string().max(3e3).optional().describe('Required for extract when entity_type is "custom". Describes what to extract (max 3000 chars).'),ai_query:n.z.string().max(3e3).optional().describe("Required for open_block and write_me. Natural-language prompt. Reference columns via {pulse.column_id}, item name via {pulse.name}, subitems via {pulse.subitem.column_id}. Max 3000 chars."),groups:n.z.array(n.z.object({user_ids:n.z.array(n.z.number()).describe("Array of user IDs in this group"),description:n.z.string().describe("Description of this group (e.g., role, team name, or assignment criteria)")})).optional().describe("Required for person_assignment. Array of groups, each with user_ids and a description."),run_backfill:n.z.boolean().optional().describe("Whether to immediately apply AI to existing items (up to 200). Defaults to true.")};const tI=Fd`
2772
2794
  mutation RemoveAiFromColumn($boardId: ID!, $columnId: ID!) {
2773
2795
  remove_ai_from_column(board_id: $boardId, column_id: $columnId) {
2774
2796
  column_id
2775
2797
  success
2776
2798
  }
2777
2799
  }
2778
- `,tI={board_id:n.z.number().describe("The ID of the board containing the column"),column_id:n.z.string().describe("The ID of the column to remove AI from")};n.z.enum(["enable","disable","status","list","detailed","reset"]).describe('Action to perform: "list" or "detailed" to discover available tools, "status" to check current states, "enable" to activate needed tools, "disable" to deactivate tools, "reset" to restore defaults'),n.z.string().optional().describe("Name of the tool to manage (required for enable/disable/status/reset)");const aI=Fd`
2800
+ `,aI={board_id:n.z.number().describe("The ID of the board containing the column"),column_id:n.z.string().describe("The ID of the column to remove AI from")};n.z.enum(["enable","disable","status","list","detailed","reset"]).describe('Action to perform: "list" or "detailed" to discover available tools, "status" to check current states, "enable" to activate needed tools, "disable" to deactivate tools, "reset" to restore defaults'),n.z.string().optional().describe("Name of the tool to manage (required for enable/disable/status/reset)");const iI=Fd`
2779
2801
  query getSprintsByIds($ids: [ID!]) {
2780
2802
  items(ids: $ids) {
2781
2803
  id
@@ -2810,7 +2832,7 @@
2810
2832
  }
2811
2833
  }
2812
2834
  }
2813
- `,iI={SPRINT_TASKS:"sprint_tasks",SPRINT_TIMELINE:"sprint_timeline",SPRINT_COMPLETION:"sprint_completion",SPRINT_START_DATE:"sprint_start_date",SPRINT_END_DATE:"sprint_end_date",SPRINT_ACTIVATION:"sprint_activation"},nI={...iI,SPRINT_SUMMARY:"sprint_summary",SPRINT_CAPACITY:"sprint_capacity"},oI="BOARD_NOT_FOUND:",rI="SPRINT_NOT_FOUND:",sI="DOCUMENT_NOT_FOUND:",dI="DOCUMENT_INVALID:",pI="DOCUMENT_EMPTY:",lI="EXPORT_FAILED:",cI="INTERNAL_ERROR:",mI="VALIDATION_ERROR:",uI="task_sprint",hI={[nI.SPRINT_TASKS]:"Sprint Tasks",[nI.SPRINT_TIMELINE]:"Sprint Timeline",[nI.SPRINT_COMPLETION]:"Sprint Completion",[nI.SPRINT_START_DATE]:"Sprint Start Date",[nI.SPRINT_END_DATE]:"Sprint End Date",[nI.SPRINT_ACTIVATION]:"Sprint Activation",[nI.SPRINT_SUMMARY]:"Sprint Summary",[nI.SPRINT_CAPACITY]:"Sprint Capacity"},fI=Fr,_I={TASK_SPRINT:"task_sprint",TASK_STATUS:"task_status"},gI=(e,t)=>e.column_values?.find((e=>e.id===t)),bI=(e,t)=>{const a=gI(e,t);return"CheckboxValue"===a?.__typename?a.checked??!1:null},vI=(e,t)=>{const a=gI(e,t);return"DateValue"===a?.__typename?a.date??null:null},yI=(e,t)=>{const a=gI(e,t);return"DocValue"===a?.__typename&&a.file?.doc?.object_id?a.file.doc.object_id:null},II=(e,t)=>{const a=t.filter((t=>!e.has(t)));return{isValid:0===a.length,missingColumns:a}},wI=(e,t)=>{if(!e.columns)return!1;const a=new Set(e.columns.filter((e=>null!==e)).map((e=>e.id)));return t.every((e=>a.has(e)))},TI=e=>wI(e,Object.values(iI)),EI=e=>wI(e,Object.values(_I)),AI=e=>{if(!e?.settings)return null;const t=e.settings;return t.boardIds&&Array.isArray(t.boardIds)&&t.boardIds[0]?.toString()||t.boardId?.toString()||null},SI=(e,t)=>e.columns&&e.columns.filter((e=>null!==e)).find((e=>e.id===t&&e.type===Rc.BoardRelation))||null,NI={sprintId:n.z.number().describe('The ID of the sprint to get the summary for (e.g., "9123456789")')};const DI=Fd`
2835
+ `,nI={SPRINT_TASKS:"sprint_tasks",SPRINT_TIMELINE:"sprint_timeline",SPRINT_COMPLETION:"sprint_completion",SPRINT_START_DATE:"sprint_start_date",SPRINT_END_DATE:"sprint_end_date",SPRINT_ACTIVATION:"sprint_activation"},oI={...nI,SPRINT_SUMMARY:"sprint_summary",SPRINT_CAPACITY:"sprint_capacity"},rI="BOARD_NOT_FOUND:",sI="SPRINT_NOT_FOUND:",dI="DOCUMENT_NOT_FOUND:",pI="DOCUMENT_INVALID:",lI="DOCUMENT_EMPTY:",cI="EXPORT_FAILED:",mI="INTERNAL_ERROR:",uI="VALIDATION_ERROR:",hI="task_sprint",fI={[oI.SPRINT_TASKS]:"Sprint Tasks",[oI.SPRINT_TIMELINE]:"Sprint Timeline",[oI.SPRINT_COMPLETION]:"Sprint Completion",[oI.SPRINT_START_DATE]:"Sprint Start Date",[oI.SPRINT_END_DATE]:"Sprint End Date",[oI.SPRINT_ACTIVATION]:"Sprint Activation",[oI.SPRINT_SUMMARY]:"Sprint Summary",[oI.SPRINT_CAPACITY]:"Sprint Capacity"},_I=Fr,gI={TASK_SPRINT:"task_sprint",TASK_STATUS:"task_status"},bI=(e,t)=>e.column_values?.find((e=>e.id===t)),vI=(e,t)=>{const a=bI(e,t);return"CheckboxValue"===a?.__typename?a.checked??!1:null},yI=(e,t)=>{const a=bI(e,t);return"DateValue"===a?.__typename?a.date??null:null},II=(e,t)=>{const a=bI(e,t);return"DocValue"===a?.__typename&&a.file?.doc?.object_id?a.file.doc.object_id:null},wI=(e,t)=>{const a=t.filter((t=>!e.has(t)));return{isValid:0===a.length,missingColumns:a}},TI=(e,t)=>{if(!e.columns)return!1;const a=new Set(e.columns.filter((e=>null!==e)).map((e=>e.id)));return t.every((e=>a.has(e)))},EI=e=>TI(e,Object.values(nI)),AI=e=>TI(e,Object.values(gI)),SI=e=>{if(!e?.settings)return null;const t=e.settings;return t.boardIds&&Array.isArray(t.boardIds)&&t.boardIds[0]?.toString()||t.boardId?.toString()||null},NI=(e,t)=>e.columns&&e.columns.filter((e=>null!==e)).find((e=>e.id===t&&e.type===$c.BoardRelation))||null,DI={sprintId:n.z.number().describe('The ID of the sprint to get the summary for (e.g., "9123456789")')};const OI=Fd`
2814
2836
  query GetSprintsBoardItemsWithColumns($boardId: ID!, $limit: Int) {
2815
2837
  boards(ids: [$boardId]) {
2816
2838
  items_page(limit: $limit) {
@@ -2846,7 +2868,7 @@
2846
2868
  }
2847
2869
  }
2848
2870
  }
2849
- `,OI={sprintsBoardId:n.z.number().describe("The ID of the monday-dev board containing the sprints"),limit:n.z.number().min(1).max(100).optional().default(25).describe("The number of sprints to retrieve (default: 25, max: 100)")};const kI=Fd`
2871
+ `,kI={sprintsBoardId:n.z.number().describe("The ID of the monday-dev board containing the sprints"),limit:n.z.number().min(1).max(100).optional().default(25).describe("The number of sprints to retrieve (default: 25, max: 100)")};const CI=Fd`
2850
2872
  query GetRecentBoards($limit: Int) {
2851
2873
  boards(limit: $limit, order_by: used_at, state: active) {
2852
2874
  id
@@ -2862,7 +2884,7 @@
2862
2884
  }
2863
2885
  }
2864
2886
  }
2865
- `,CI={};const RI=[class extends me{constructor(){super(...arguments),this.name="get_monday_dev_sprints_boards",this.type=exports.ToolType.READ,this.annotations=ce({title:"monday-dev: Get Sprints Boards",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Discover monday-dev sprints boards and their associated tasks boards in your account.\n\n## Purpose:\nIdentifies and returns monday-dev sprints board IDs and tasks board IDs that you need to use with other monday-dev tools. \nThis tool scans your recently used boards (up to 100) to find valid monday-dev sprint management boards.\n\n## What it Returns:\n- Pairs of sprints boards and their corresponding tasks boards\n- Board IDs, names, and workspace information for each pair\n- The bidirectional relationship between each sprints board and its tasks board\n\n## Note:\nSearches recently used boards (up to 100). If none found, ask user to provide board IDs manually."}getInputSchema(){return CI}async executeInternal(e){try{const e={limit:100},t=((await this.mondayApi.request(kI,e)).boards||[]).filter((e=>null!==e));if(0===t.length)return{content:`${oI} No boards found in your account. Please verify you have access to monday.com boards.`};const a=this.extractBoardPairs(t);return 0===a.length?{content:{message:"No monday-dev sprints board pairs found. ### Possible Reasons:\n1. Boards exist but not accessed recently by your account\n2. Missing access permissions to sprint/task boards\n3. Monday-dev product was not set up in account\n### Next Steps:\n1. Ask user to access monday-dev boards in UI to refresh recent boards list\n2. Ask user to verify permissions to view sprint and task boards\n3. Ask user to provide board IDs manually if known`;",boards_checked:t.length,pairs:[]}}:{content:{message:`Found ${a.length} matched pair(s)`,...a.length>1?{warning:"Multiple board pairs detected. Confirm with user which pair and workspace to use before any operation."}:{},pairs:a.map((e=>({sprints_board:{id:e.sprintsBoard.id,name:e.sprintsBoard.name,workspace_id:e.sprintsBoard.workspaceId,workspace_name:e.sprintsBoard.workspaceName},tasks_board:{id:e.tasksBoard.id,name:e.tasksBoard.name,workspace_id:e.tasksBoard.workspaceId,workspace_name:e.tasksBoard.workspaceName}}))),technical_reference:"Sprint Operations (all require correct board pair): Add to Sprint: Update `task_sprint` column with sprint item ID. Remove from Sprint: Clear `task_sprint` column (set to null). Search in Sprint: Filter where `task_sprint` equals sprint item ID. Move Between Sprints: Update `task_sprint` with new sprint item ID. Backlog Tasks: `task_sprint` is empty/null. Critical: `task_sprint` column references ONLY its paired sprints board. Cross-pair operations WILL FAIL."}}}catch(e){return{content:`${cI} Error retrieving sprints boards: ${e instanceof Error?e.message:"Unknown error"}`}}}createBoardInfo(e,t,a){return{id:e,name:t?.name||a,workspaceId:t?.workspace?.id||"unknown",workspaceName:t?.workspace?.name||"Unknown"}}processSprintsBoard(e,t,a){const i=SI(e,iI.SPRINT_TASKS);if(!i)return;const n=AI(i);if(!n)return;const o=`${e.id}:${n}`;if(a.has(o))return;const r=t.get(n);a.set(o,{sprintsBoard:this.createBoardInfo(e.id,e,`Sprints Board ${e.id}`),tasksBoard:this.createBoardInfo(n,r,`Tasks Board ${n}`)})}processTasksBoard(e,t,a){const i=SI(e,uI);if(!i)return;const n=AI(i);if(!n)return;const o=`${n}:${e.id}`;if(a.has(o))return;const r=t.get(n);a.set(o,{sprintsBoard:this.createBoardInfo(n,r,`Sprints Board ${n}`),tasksBoard:this.createBoardInfo(e.id,e,`Tasks Board ${e.id}`)})}extractBoardPairs(e){const t=new Map,a=new Map(e.map((e=>[e.id,e])));for(const i of e)i.columns&&(TI(i)&&this.processSprintsBoard(i,a,t),EI(i)&&this.processTasksBoard(i,a,t));return Array.from(t.values())}},class extends me{constructor(){super(...arguments),this.name="get_sprints_metadata",this.type=exports.ToolType.READ,this.annotations=ce({title:"monday-dev: Get Sprints Metadata",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get comprehensive sprint metadata from a monday-dev sprints board including:\n\n## Data Retrieved:\nA table of sprints with the following information:\n- Sprint ID\n- Sprint Name\n- Sprint timeline (planned from/to dates)\n- Sprint completion status (completed/in-progress/planned)\n- Sprint start date (actual)\n- Sprint end date (actual)\n- Sprint activation status\n- Sprint summary document object ID\n\n## Parameters:\n- **limit**: Number of sprints to retrieve (default: 25, max: 100)\n\nRequires the Main Sprints board ID of the monday-dev containing your sprints."}getInputSchema(){return OI}async executeInternal(e){try{const t=await this.validateBoardSchema(e.sprintsBoardId.toString());if(!t.success)return{content:t.error||"Board schema validation failed"};const a={boardId:e.sprintsBoardId.toString(),limit:e.limit},i=await this.mondayApi.request(DI,a),n=i.boards?.[0],o=n?.items_page?.items||[],r=this.buildSprintsMetadata(o);return{content:{message:"Sprints metadata retrieved",board_id:e.sprintsBoardId,total:o.length,data:r}}}catch(e){return{content:`${cI} Error retrieving sprints metadata: ${e instanceof Error?e.message:"Unknown error"}`}}}async validateBoardSchema(e){try{const t={boardId:e.toString()},a=await this.mondayApi.request(Gd,t),i=a.boards?.[0];if(!i)return{success:!1,error:`${oI} Board with ID ${e} not found. Please verify the board ID is correct and you have access to it.`};const n=i.columns||[],o=this.validateSprintsBoardSchemaFromColumns(n);return o.isValid?{success:!0}:{success:!1,error:`${mI} ${o.errorMessage}`}}catch(e){return{success:!1,error:`${cI} Error validating board schema: ${e instanceof Error?e.message:"Unknown error"}`}}}validateSprintsBoardSchemaFromColumns(e){const t=new Set(e.filter((e=>null!==e)).map((e=>e.id))),a=Object.values(iI),i=II(t,a);if(!i.isValid){let e="BoardID provided is not a valid sprints board. Missing required columns:\n\n";return i.missingColumns.forEach((t=>{const a=(e=>hI[e]||e)(t);e+=`- ${a}\n`})),{isValid:!1,errorMessage:e}}return{isValid:!0,errorMessage:""}}buildSprintsMetadata(e){return e.map((e=>{const t=bI(e,nI.SPRINT_ACTIVATION),a=bI(e,nI.SPRINT_COMPLETION),i=vI(e,nI.SPRINT_START_DATE),n=vI(e,nI.SPRINT_END_DATE),o=((e,t)=>{const a=gI(e,t);if("TimelineValue"===a?.__typename&&a.from&&a.to)return{from:a.from.split("T")[0],to:a.to.split("T")[0]};return null})(e,nI.SPRINT_TIMELINE),r=yI(e,nI.SPRINT_SUMMARY);let s=fI.Planned;return a?s=fI.Completed:(t||i)&&(s=fI.Active),{id:e.id,name:e.name||"Unknown",status:s,timeline:o?{from:o.from,to:o.to}:null,start_date:i||null,end_date:n||null,is_completed:a,document_object_id:r||null}}))}},class extends me{constructor(){super(...arguments),this.name="get_sprint_summary",this.type=exports.ToolType.READ,this.annotations=ce({title:"monday-dev: Get Sprint Summary",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Get the complete summary and analysis of a sprint.\n\n## Purpose:\nUnlock deep insights into completed sprint performance. \n\nThe sprint summary content including:\n- **Scope Management**: Analysis of planned vs. unplanned tasks, scope creep\n- **Velocity & Performance**: Individual velocity, task completion rates, workload distribution per team member\n- **Task Distribution**: Breakdown of completed tasks by type (Feature, Bug, Tech Debt, Infrastructure, etc.)\n- **AI Recommendations**: Action items, process improvements, retrospective focus areas\n\n## Requirements:\n- Sprint must be completed and must be created after 1/1/2025 \n\n## Important Note:\nWhen viewing the section "Completed by Assignee", you\'ll see user IDs in the format "@user-12345678". the 8 digits after the @is the user ID. To retrieve the actual owner names, use the list_users_and_teams tool with the user ID and set includeTeams=false for optimal performance.\n\n'}getInputSchema(){return NI}async executeInternal(e){try{const t=await this.getSprintMetadata(e.sprintId);if(!t.success)return{content:t.error||`${cI} Unknown error occurred while getting sprint metadata`};const a=await this.readSprintSummaryDocument(t.documentObjectId);return a.success?{content:{message:"Sprint summary retrieved",sprint_id:e.sprintId,sprint_name:t.sprintName,markdown:a.content}}:{content:a.error||`${cI} Unknown error occurred while reading document content`}}catch(e){return{content:`${cI} Error retrieving sprint summary: ${e instanceof Error?e.message:"Unknown error"}`}}}async getSprintMetadata(e){try{const t={ids:[String(e)]},a=(await this.mondayApi.request(aI,t)).items||[];if(0===a.length)return{success:!1,error:`${rI} Sprint with ID ${e} not found. Please verify the sprint ID is correct.`};const i=a[0];if(!i)return{success:!1,error:`${rI} Sprint with ID ${e} not found.`};const n=((e,t=[])=>{const a=new Set((e.column_values||[]).map((e=>e.id))),i=[...Object.values(iI),...t];return II(a,i)})(i,[nI.SPRINT_SUMMARY]);if(!n.isValid)return{success:!1,error:`${mI} Sprint item is missing required columns: ${n.missingColumns.join(", ")}. This may not be a valid sprint board item.`};const o=yI(i,nI.SPRINT_SUMMARY);return o?{success:!0,documentObjectId:o,sprintName:i.name}:{success:!1,error:`${sI} No sprint summary document found for sprint "${i.name}" (ID: ${e}). Sprint summary is only available for completed sprints that have analysis documents.`}}catch(e){return{success:!1,error:`${cI} Error getting sprint item: ${e instanceof Error?e.message:"Unknown error"}`}}}async readSprintSummaryDocument(e){try{const t={object_ids:[e],limit:1},a=(await this.mondayApi.request(Vd,t)).docs||[];if(0===a.length)return{success:!1,error:`${sI} Document with object ID ${e} not found or not accessible.`};const i=a[0];if(!i||!i.id)return{success:!1,error:`${dI} Document data is invalid for object ID ${e}.`};const n={docId:i.id,blockIds:[]},o=await this.mondayApi.request(ip,n);if(!o.export_markdown_from_doc?.success)return{success:!1,error:`${lI} Failed to export markdown from document: ${o.export_markdown_from_doc?.error||"Unknown error"}`};const r=o.export_markdown_from_doc.markdown;return r?{success:!0,content:r}:{success:!1,error:`${pI} Document content is empty or could not be retrieved.`}}catch(e){return{success:!1,error:`${cI} Error reading document: ${e instanceof Error?e.message:"Unknown error"}`}}}}],$I=[class extends me{constructor(){super(...arguments),this.name="delete_item",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Item",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Delete an item"}getInputSchema(){return sm}async executeInternal(e){const t={id:e.itemId.toString()},a=await this.mondayApi.request(jd,t);return{content:{message:`Item ${a.delete_item?.id} successfully deleted`,item_id:a.delete_item?.id}}}},class extends me{constructor(){super(...arguments),this.name="get_board_items_page",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Items Page",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Get all items from a monday.com board with pagination support and optional column values and item descriptions. Returns structured JSON with item details, creation/update timestamps, and pagination info. Use the nextCursor parameter from the response to get the next page of results when has_more is true. To retrieve an item description (the rich-text body/details of a monday.com item), set includeItemDescription to true — the response will include the item description document blocks with their content, type, and id. Use this whenever the user asks about an item description, body, details, or notes. [REQUIRED PRECONDITION]: Before using this tool, if new columns were added to the board or if you are not familiar with the board structure (column IDs, column types, status labels, etc.), first use get_board_info to understand the board metadata. This is essential for constructing proper filters and knowing which columns are available. [REQUIRED PRECONDITION]: For board-relation / cross-board linking tasks, call link_board_items_workflow before using this tool. VIEW-BASED FILTERING: If the user refers to a board view by name (e.g. "show me items in the Overdue view"), first call get_board_info to get the board views, find the matching view by name, then extract its filter field and pass it as the filters argument here.'}getInputSchema(){return wm}async executeInternal(e){const t=!e.cursor;if(t&&e.searchTerm)try{if(e.itemIds=await this.getItemIdsFromSmartSearchAsync(e),0===e.itemIds.length)return{content:"No items found matching the specified searchTerm"}}catch(t){dp(t),e.filters=this.rebuildFiltersWithManualSearch(e.searchTerm,e.filters)}const a={boardId:e.boardId.toString(),limit:e.limit,cursor:e.cursor||void 0,includeColumns:e.includeColumns,columnIds:e.columnIds,includeSubItems:e.includeSubItems,includeDescription:e.includeItemDescription};t&&(e.itemIds||e.filters||e.orderBy)&&(a.queryParams={ids:e.itemIds?.map((e=>e.toString())),operator:e.filtersOperator,rules:e.filters?.map((e=>({column_id:e.columnId.toString(),compare_value:e.compareValue,operator:e.operator,compare_attribute:e.compareAttribute}))),order_by:e.orderBy?.map((e=>({column_id:e.columnId,direction:e.direction})))});const i=await this.mondayApi.request(ym,a);return{content:this.mapResult(i,e)}}rebuildFiltersWithManualSearch(e,t){return(t=(t=t??[]).filter((e=>"name"!==e.columnId))).push({columnId:"name",operator:dr.ContainsText,compareValue:e}),t}mapResult(e,t){const a=e.boards?.[0],i=a?.items_page,n=i?.items||[];return{board:{id:a?.id,name:a?.name},items:n.map((e=>this.mapItem(e,t))),pagination:{has_more:!!i?.cursor,nextCursor:i?.cursor||null,count:n.length}}}mapItem(e,t){const a={id:e.id,name:e.name,url:e.url,created_at:e.created_at,updated_at:e.updated_at};if(t.includeColumns&&e.column_values){a.column_values={};for(const t of e.column_values)a.column_values[t.id]=this.getColumnValueData(t)}if(t.includeItemDescription&&"description"in e&&e.description){const t=(e.description.blocks??[]).filter((e=>!!e)).map((e=>({id:e.id,type:e.type,content:e.content})));a.item_description={id:e.description.id,blocks:t}}return t.includeSubItems&&"subitems"in e&&e.subitems&&(a.subitems=e.subitems.slice(0,t.subItemLimit).map((e=>this.mapItem(e,t)))),a}getColumnValueData(e){switch(e.type){case Rc.BoardRelation:return e.linked_items;case Rc.Formula:return e.display_value;case Rc.Mirror:return"Column value type is not supported"}if(e.text)return e.text;try{return JSON.parse(e.value)}catch{return e.value||null}}async getItemIdsFromSmartSearchAsync(e){const t={query:e.searchTerm,limit:20,boardIds:[e.boardId.toString()]},a=(await this.mondayApi.request(Im,t,{versionOverride:"dev",timeout:wc})).search.items.results.map((e=>Number(e.id)));if(0===a.length)throw new Error("No items found for search term or new search is not enabled for this account");const i=e.itemIds??[];if(0===i.length)return a;const n=new Set(i);return a.filter((e=>n.has(e)))}},class extends me{constructor(){super(...arguments),this.name="create_item",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Item",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new item with provided values, create a subitem under a parent item, or duplicate an existing item and update it with new values. Use parentItemId when creating a subitem under an existing item. Use duplicateFromItemId when copying an existing item with modifications.[REQUIRED PRECONDITION]: Before using this tool, if new columns were added to the board or if you are not familiar with the board's structure (column IDs, column types, status labels, etc.), first use get_board_info to understand the board metadata. This is essential for constructing proper column values and knowing which columns are available."}getInputSchema(){return this.context?.boardId?Gc:Hc}async executeInternal(e){const t=this.context?.boardId??e.boardId;if(e.duplicateFromItemId&&e.parentItemId)throw new Error("Cannot specify both parentItemId and duplicateFromItemId. Please provide only one of these parameters.");return e.duplicateFromItemId?await this.duplicateAndUpdateItem(e,t):e.parentItemId?await this.createSubitem(e):await this.createNewItem(e,t)}async duplicateAndUpdateItem(e,t){try{const a={boardId:t.toString(),itemId:e.duplicateFromItemId.toString()},i=await this.mondayApi.request(jc,a);if(!i.duplicate_item?.id)throw new Error("Failed to duplicate item: no item duplicated");let n;try{n=JSON.parse(e.columnValues)}catch(e){throw new Error("Invalid JSON in columnValues")}const o={...n,name:e.name},r=new up(this.mondayApi,{boardId:t});return await r.execute({itemId:parseInt(i.duplicate_item.id),columnValues:JSON.stringify(o)}),{content:{message:`Item ${i.duplicate_item.id} duplicated from ${e.duplicateFromItemId}`,item_id:i.duplicate_item.id,item_name:i.duplicate_item.name,item_url:i.duplicate_item.url,board_id:t}}}catch(e){sp(e,"duplicate item")}}async createSubitem(e){const t={parentItemId:e.parentItemId.toString(),itemName:e.name,columnValues:e.columnValues};try{const a=await this.mondayApi.request(qc,t);if(!a.create_subitem?.id)throw new Error("Failed to create subitem: no subitem created");return{content:{message:`Subitem ${a.create_subitem.id} created under ${e.parentItemId}`,item_id:a.create_subitem.id,item_name:a.create_subitem.name,item_url:a.create_subitem.url}}}catch(e){sp(e,"create subitem")}}async createNewItem(e,t){try{const a={boardId:t.toString(),itemName:e.name,groupId:e.groupId,columnValues:e.columnValues},i=await this.mondayApi.request(qd,a);return{content:{message:`Item ${i.create_item?.id} successfully created`,item_id:i.create_item?.id,item_name:i.create_item?.name,item_url:i.create_item?.url,board_id:t}}}catch(e){sp(e,"create item")}}},class extends me{constructor(){super(...arguments),this.name="create_update",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Update",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new update (comment/post) on a monday.com item. Updates can be used to add comments, notes, or discussions to items. You can optionally mention users, teams, or boards in the update. You can also reply to an existing update by using the parentId parameter."}getInputSchema(){return Jc}async executeInternal(e){let t;if(e.mentionsList)try{const a=JSON.parse(e.mentionsList),i=Qc.safeParse(a);if(!i.success)throw new Error(`Invalid mentionsList format: ${i.error.message}`);t=i.data}catch(e){throw new Error(`Invalid mentionsList JSON format: ${e.message}`)}try{const a={itemId:e.itemId.toString(),body:e.body,mentionsList:t,parentId:e.parentId?.toString()},i=await this.mondayApi.request(Yc,a);if(!i.create_update?.id)throw new Error("Failed to create update: no update created");return{content:{message:`Update ${i.create_update.id} created on item ${e.itemId}`,update_id:i.create_update.id,item_id:e.itemId,item_name:i.create_update.item?.name,item_url:i.create_update.item?.url}}}catch(e){sp(e,"create update")}}},class extends me{constructor(){super(...arguments),this.name="delete_update",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Update",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Delete an update (comment/post) from a monday.com item."}getInputSchema(){return Zc}async executeInternal(e){try{const t={id:e.id.toString()},a=await this.mondayApi.request(Xc,t);if(!a.delete_update?.id)throw new Error("Failed to delete update: update not found or already deleted");return{content:{message:`Update ${a.delete_update.id} successfully deleted`,update_id:a.delete_update.id}}}catch(e){sp(e,"delete update")}}},class extends me{constructor(){super(...arguments),this.name="get_updates",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Updates",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get updates (comments/posts) from a monday.com item or board. Specify objectId and objectType (Item or Board) to retrieve updates. For Board queries, you can filter by date range using fromDate and toDate (both required together, ISO8601 format). By default, Board queries return only board discussion. Set includeItemUpdates to true to also include updates on individual items. Returns update text, creator info, timestamps, and optionally replies and assets."}getInputSchema(){return im}async executeInternal(e){try{const t=void 0!==e.fromDate,a=void 0!==e.toDate;if(t!==a)throw new Error("Both fromDate and toDate must be provided together for date range filtering");if((t||a)&&e.objectType===am.Item)throw new Error("Date range filtering (fromDate/toDate) is only supported for Board objectType");const i={limit:e.limit??25,page:e.page??1,includeReplies:e.includeReplies??!1,includeAssets:e.includeAssets??!1};let n;n=e.objectType===am.Item?await this.mondayApi.request(em,{...i,itemId:e.objectId}):await this.mondayApi.request(tm,{...i,boardId:e.objectId,boardUpdatesOnly:!e.includeItemUpdates,...e.fromDate&&e.toDate?{fromDate:nm(e.fromDate),toDate:nm(e.toDate)}:{}});const o=e.objectType===am.Item?n.items?.[0]?.updates:n.boards?.[0]?.updates;if(!o||0===o.length)return{content:`No updates found for ${e.objectType.toLowerCase()} with id ${e.objectId}`};const r=o.map((t=>{const a={id:t.id,text_body:t.text_body,created_at:t.created_at,updated_at:t.updated_at,creator:t.creator?{id:t.creator.id,name:t.creator.name}:null,item_id:t.item_id};return e.includeReplies&&t.replies&&(a.replies=t.replies.map((e=>({id:e.id,text_body:e.text_body,created_at:e.created_at,updated_at:e.updated_at,creator:e.creator?{id:e.creator.id,name:e.creator.name}:null})))),e.includeAssets&&t.assets&&(a.assets=t.assets.filter((e=>!!e)).map((e=>({id:e.id,name:e.name,url:e.url,file_extension:e.file_extension,file_size:e.file_size,created_at:e.created_at})))),a})),s=e.objectType===am.Item?n.items?.[0]?.url:n.boards?.[0]?.url;return{content:{message:"Updates retrieved",[`${e.objectType.toLowerCase()}_id`]:e.objectId,url:s,updates:r,pagination:{page:e.page??1,limit:e.limit??25,count:r.length}}}}catch(e){sp(e,"get updates")}}},class extends me{constructor(){super(...arguments),this.name="create_update_in_monday",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Update in Monday, after calling this tool you should",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new update (comment/post) on a monday.com item. Updates can be used to add comments, notes, or discussions to items. You can optionally mention users, teams, or boards in the update. After calling this tool you should call the full board data tool to get data, and immediately after that call the show table tool to show the data from that tool. IMPORTANT: You MUST use the COMPLETE data from the full board data tool - do NOT cut, truncate, or omit any data. Pass the entire dataset to the show table tool."}getInputSchema(){return Yh}async executeInternal(e){let t;if(e.mentionsList)try{const a=JSON.parse(e.mentionsList),i=Wh.safeParse(a);if(!i.success)throw new Error(`Invalid mentionsList format: ${i.error.message}`);t=i.data}catch(e){throw new Error(`Invalid mentionsList JSON format: ${e.message}`)}try{const a={itemId:e.itemId.toString(),body:e.body,mentionsList:t},i=await this.mondayApi.request(Yc,a);if(!i.create_update?.id)throw new Error("Failed to create update: no update created");return{content:{message:`Update ${i.create_update.id} successfully created on item ${e.itemId}`,update_id:i.create_update.id,item_id:e.itemId,next_steps:"Now call the full board data tool to get data, then immediately call the show table tool to show that data. CRITICAL: You MUST pass the COMPLETE and FULL data from the full board data tool to the show table tool - do NOT cut, summarize, truncate, or omit ANY data. Use the entire dataset exactly as received."}}}catch(e){sp(e,"create update")}}},class extends me{constructor(){super(...arguments),this.name="get_board_schema",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Schema",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get board schema (columns and groups) by board id"}getInputSchema(){if(!this.context?.boardId)return Tm}async executeInternal(e){const t=this.context?.boardId??e.boardId,a={boardId:t.toString()},i=await this.mondayApi.request(Gd,a);return{content:{message:"Board schema retrieved",board_id:t,columns:i.boards?.[0]?.columns?.map((e=>({id:e?.id,title:e?.title,type:e?.type,revision:e?.revision})))??[],groups:i.boards?.[0]?.groups?.map((e=>({id:e?.id,title:e?.title})))??[]}}}},class extends me{constructor(){super(...arguments),this.name="get_board_activity",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Activity",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0}),this.defaultLimit=1e3}getDescription(){return"Get board activity logs for a specified time range (defaults to last 30 days). Optionally filter by item ids or user ids to avoid fetching activity for the entire board."}getInputSchema(){return fm}async executeInternal(e){const t=new Date,a=new Date(t.getTime()-Ic.MONTH30Days),i=e?.fromDate||a.toISOString(),n=e?.toDate||t.toISOString(),o={boardId:e.boardId.toString(),itemIds:e.itemIds?.map(String),userIds:e.userIds?.map(String),fromDate:i,toDate:n,limit:this.defaultLimit,page:1,includeData:e.includeData??!1},r=await this.mondayApi.request(hm,o),s=r.boards?.[0]?.activity_logs;if(!s||0===s.length)return{content:`No activity found for board ${e.boardId} in the specified time range (${i} to ${n}).`};const d=r.boards?.[0],p=e.includeData??!1;return{content:{message:"Board activity retrieved",board_id:e.boardId,board_name:d?.name,board_url:d?.url,data:s.filter((e=>null!=e)).map((e=>({created_at:e.created_at,event:e.event,entity:e.entity,user_id:e.user_id,...p&&e.data?{data:e.data}:{}})))}}}},class extends me{constructor(){super(...arguments),this.name="get_board_info",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Info",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get comprehensive board information including metadata, structure, owners, and configuration. Also returns the board's views (e.g. table views, filter views) — each view includes its id, name, type, and a structured filter object. "}getInputSchema(){return vm}async executeInternal(e){const t={boardId:e.boardId.toString()},a=await this.mondayApi.request(_m,t),i=a.boards?.[0];if(!i)return{content:`Board with id ${e.boardId} not found or you don't have access to it.`};const n=await this.getSubItemsBoardAsync(i);return{content:bm(i,n)}}async getSubItemsBoardAsync(e){const t=e.columns?.find((e=>e?.type===Rc.Subtasks));if(!t)return null;const a=t.settings.boardIds[0],i=await this.mondayApi.request(gm,{boardId:a});return i.boards?.[0]??null}},class extends me{constructor(){super(...arguments),this.name="get_full_board_data",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Full Board Data",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"INTERNAL USE ONLY - DO NOT CALL THIS TOOL DIRECTLY. This tool is exclusively triggered by UI components and should never be invoked directly by the agent."}getInputSchema(){return um}async executeInternal(e){try{const t={boardId:e.boardId,itemsLimit:7};e.filters&&(t.queryParams={operator:e.filtersOperator,rules:e.filters.map((e=>({column_id:e.columnId.toString(),compare_value:e.compareValue,operator:e.operator,compare_attribute:e.compareAttribute})))});const a=await this.mondayApi.request(pm,t);if(!a.boards||0===a.boards.length||!a.boards[0])throw new Error(`Board with ID ${e.boardId} not found`);const i=a.boards[0],n=new Set;i.items_page.items.forEach((e=>{e.updates?.forEach((e=>{e.creator_id&&n.add(e.creator_id),e.replies?.forEach((e=>{e.creator_id&&n.add(e.creator_id)}))})),e.column_values.forEach((e=>{if("persons_and_teams"in e){const t=e;t.persons_and_teams?.forEach((e=>{"person"===e.kind&&e.id&&n.add(e.id)}))}}))}));const o=Array.from(n).filter((e=>!(Number(e)<0)));let r=[];if(o.length>0){const e={userIds:o},t=await this.mondayApi.request(lm,e);r=t.users?.filter((e=>null!==e))||[]}const s=new Map(r.map((e=>[e.id,e])));return{content:{board:{id:i.id,name:i.name,columns:i.columns,items:i.items_page.items.map((e=>({id:e.id,name:e.name,column_values:e.column_values,updates:e.updates?.map((e=>({id:e.id,creator_id:e.creator_id||"",creator:e.creator_id&&s.get(e.creator_id)||null,text_body:e.text_body,created_at:e.created_at,replies:e.replies?.map((e=>({id:e.id,creator_id:e.creator_id||"",creator:e.creator_id&&s.get(e.creator_id)||null,text_body:e.text_body,created_at:e.created_at})))||[]})))||[]})))},users:r,stats:{total_items:i.items_page.items.length,total_updates:i.items_page.items.reduce(((e,t)=>e+(t.updates?.length||0)),0),total_unique_creators:r.length}}}}catch(e){sp(e,"get full board data")}}},class extends me{constructor(){super(...arguments),this.name="list_users_and_teams",this.type=exports.ToolType.READ,this.annotations=ce({title:"List Users and Teams",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Tool to fetch users and/or teams data. \n\n MANDATORY BEST PRACTICES:\n 1. ALWAYS use specific IDs or names when available\n 2. If no ids available, use name search if possible (USERS ONLY)\n 3. Use 'getMe: true' to get current user information\n 4. AVOID broad queries (no parameters) - use only as last resort\n\n REQUIRED PARAMETER PRIORITY (use in this order):\n 1. getMe - STANDALONE\n 2. userIds\n 3. name - STANDALONE (USERS ONLY, NOT for teams)\n 4. teamIds + teamsOnly\n 5. No parameters - LAST RESORT\n\n CRITICAL USAGE RULES:\n • userIds + teamIds requires explicit includeTeams: true flag\n • includeTeams: true fetches both users and teams, do not use this to fetch a specific user's teams rather fetch that user by id and you will get their team memberships.\n • name parameter is for USER search ONLY - it cannot be used to search for teams. Use teamIds to fetch specific teams."}getInputSchema(){return tu}async executeInternal(e){const t=e.userIds&&e.userIds.length>0,a=e.teamIds&&e.teamIds.length>0,i=e.includeTeams||!1,n=e.teamsOnly||!1,o=e.includeTeamMembers||!1,r=!!e.name;if(e.getMe||!1){if(t||a||i||n||o||r)return{content:"PARAMETER_CONFLICT: getMe is STANDALONE only. Remove all other parameters when using getMe: true for current user lookup."};const e=await this.mondayApi.request(Gm);if(!e.me)return{content:"AUTHENTICATION_ERROR: Current user fetch failed. Verify API token and user permissions."};const s={users:[e.me]},d=Ym(s),p=await Zm(this.mondayApi);return{content:{data:d,action_name:"Users and teams",url:p?`https://${p}.monday.com/teams/all`:void 0}}}if(r){if(t||a||i||n||o)return{content:"PARAMETER_CONFLICT: name is STANDALONE only. Remove userIds, teamIds, includeTeams, teamsOnly, and includeTeamMembers when using name search."};const r={name:e.name},s=await this.mondayApi.request(qm,r);if(!s.users||0===s.users.length)return{content:`NAME_SEARCH_EMPTY: No users found matching "${e.name}". Try broader search terms or verify user exists in account.`};const d=s.users.filter((e=>null!==e)).map((e=>`• **${e.name}** (ID: ${e.id})${e.title?` - ${e.title}`:""}`)).join("\n"),p=`Found ${s.users.length} user(s) matching "${e.name}":\n\n${d}`,l=await Zm(this.mondayApi);return{content:{data:p,action_name:"Users and teams",url:l?`https://${l}.monday.com/teams/all`:void 0}}}if(n&&i)return{content:"PARAMETER_CONFLICT: Cannot use teamsOnly: true with includeTeams: true. Use teamsOnly for teams-only queries or includeTeams for combined data."};if(t&&e.userIds&&e.userIds.length>Km)return{content:`LIMIT_EXCEEDED: userIds array too large (${e.userIds.length}/500). Split into batches of max 500 IDs and make multiple calls.`};if(a&&e.teamIds&&e.teamIds.length>Qm)return{content:`LIMIT_EXCEEDED: teamIds array too large (${e.teamIds.length}/500). Split into batches of max 500 IDs and make multiple calls.`};let s;if(n||!t&&a&&!i)if(o){const t={teamIds:e.teamIds};s=await this.mondayApi.request(jm,t)}else{const t={teamIds:e.teamIds};s=await this.mondayApi.request(zm,t)}else if(i){const t={userIds:e.userIds,teamIds:e.teamIds,limit:Jm};s=await this.mondayApi.request(Bm,t)}else if(t){const t={userIds:e.userIds,limit:Jm};s=await this.mondayApi.request(Vm,t)}else{const e={userIds:void 0,limit:Jm};s=await this.mondayApi.request(Mm,e)}const d=Ym(s),p=await Zm(this.mondayApi);return{content:{data:d,action_name:"Users and teams",url:p?`https://${p}.monday.com/teams/all`:void 0}}}},up,class extends me{constructor(){super(...arguments),this.name="move_item_to_group",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Move Item to Group",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Move an item to a group in a monday.com board"}getInputSchema(){return au}async executeInternal(e){const t={itemId:e.itemId.toString(),groupId:e.groupId},a=await this.mondayApi.request(Wd,t);return{content:`Item ${a.move_item_to_group?.id} successfully moved to group ${e.groupId}`}}},class extends me{constructor(){super(...arguments),this.name="create_board",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Board",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a monday.com board"}getInputSchema(){return Up}async executeInternal(e){const t={boardName:e.boardName,boardKind:e.boardKind,boardDescription:e.boardDescription,workspaceId:e.workspaceId,...void 0!==e.boardOwnerIds?{boardOwnerIds:e.boardOwnerIds}:{}},a=await this.mondayApi.request(Yd,t);return{content:{message:`Board ${a.create_board?.id} successfully created`,board_id:a.create_board?.id,board_name:a.create_board?.name,board_url:a.create_board?.url}}}},class extends me{constructor(){super(...arguments),this.name="use_template",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Use Template",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Apply a monday.com template to create boards in a workspace. Returns a process_id immediately — the operation runs asynchronously and can take 30 seconds to 2+ minutes. Use check_template_status(processId) to poll every 5–10 seconds until status is COMPLETE or FAILED. Stop polling on COMPLETE (boards ready) or FAILED (unrecoverable error). Give up after ~5 minutes if neither terminal status is reached. Boards exist as empty shells until status is COMPLETE."}getInputSchema(){return Pp}async executeInternal(e){const t={templateId:e.templateId,destinationWorkspaceId:e.destinationWorkspaceId,destinationName:e.destinationName,boardKind:e.boardKind},a=await this.mondayApi.request(op,t),i=a.use_template?.process_id;return null==i?{content:{processId:null,message:"Failed to start template application. The request was rejected."}}:{content:{processId:i,message:"Template application started. Poll check_template_status with processId every 5–10 seconds. Stop on COMPLETE (boards ready) or FAILED (unrecoverable). Give up after ~5 minutes."}}}},class extends me{constructor(){super(...arguments),this.name="check_template_status",this.type=exports.ToolType.READ,this.annotations=ce({title:"Check Template Status",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Check the status of a use_template operation. Poll after calling use_template — wait 5–10 seconds between polls. Status values: PENDING | IN_PROGRESS | COMPLETE | FAILED. Stop polling when status is COMPLETE (boards ready) or FAILED (unrecoverable). Give up after ~5 minutes if neither terminal status is reached. Board IDs are only available once COMPLETE — boards exist but are empty during IN_PROGRESS. Returns null if process_id is invalid or expired (1-hour TTL)."}getInputSchema(){return Fp}async executeInternal(e){const t={processId:e.processId},a=(await this.mondayApi.request(rp,t)).template_installation_status;return a?a.status===Yr.Complete?{content:{status:Yr.Complete,board_ids:a.board_ids,board_ids_map:a.board_ids_map,message:`Template application complete. ${a.board_ids.length} board(s) created.`}}:a.status===Yr.Failed?{content:{status:Yr.Failed,board_ids:[],board_ids_map:[],message:"Template application failed. Please try again."}}:a.status===Yr.Pending||a.status===Yr.InProgress?{content:{status:a.status,board_ids:[],board_ids_map:[],message:`Template application ${a.status===Yr.InProgress?"in progress":"pending"}. Board IDs will be available once complete.`}}:{content:{status:a.status,board_ids:[],board_ids_map:[],message:`Unexpected status: ${a.status}. Poll again or contact support.`}}:{content:{status:null,message:"Status not found. The process_id is invalid or has expired."}}}},class extends me{constructor(){super(...arguments),this.name="create_form",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Form",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a monday.com form. Also creates a backing board to store responses. Returns the formToken for future mutations."}getInputSchema(){return Sl}async executeInternal(e){const t={destination_workspace_id:e.destination_workspace_id,destination_folder_id:e.destination_folder_id,destination_folder_name:e.destination_folder_name,board_kind:e.board_kind,destination_name:e.destination_name,board_owner_ids:e.board_owner_ids,board_owner_team_ids:e.board_owner_team_ids,board_subscriber_ids:e.board_subscriber_ids,board_subscriber_teams_ids:e.board_subscriber_teams_ids},a=await this.mondayApi.request(ol,t);return{content:{message:"Form created successfully",board_id:a.create_form?.boardId,form_token:a.create_form?.token}}}},class extends me{constructor(){super(...arguments),this.name="update_form",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Form",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0}),this.helpers=new _c(this.mondayApi),this.actionHandlers=new Map([[Hl.setFormPassword,this.helpers.setFormPassword.bind(this.helpers)],[Hl.shortenFormUrl,this.helpers.shortenFormUrl.bind(this.helpers)],[Hl.deactivate,this.helpers.deactivateForm.bind(this.helpers)],[Hl.activate,this.helpers.activateForm.bind(this.helpers)],[Hl.createTag,this.helpers.createTag.bind(this.helpers)],[Hl.deleteTag,this.helpers.deleteTag.bind(this.helpers)],[Hl.updateAppearance,this.helpers.updateAppearance.bind(this.helpers)],[Hl.updateAccessibility,this.helpers.updateAccessibility.bind(this.helpers)],[Hl.updateFeatures,this.helpers.updateFeatures.bind(this.helpers)],[Hl.updateQuestionOrder,this.helpers.updateQuestionOrder.bind(this.helpers)],[Hl.updateFormHeader,this.helpers.updateFormHeader.bind(this.helpers)]])}getDescription(){return"Update a monday.com form. Use the action field to specify the operation."}getInputSchema(){return fc}async executeInternal(e){const t=this.actionHandlers.get(e.action);return t?await t(e):{content:"Received an invalid action for the update form tool."}}},class extends me{constructor(){super(...arguments),this.name="get_form",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Form",readOnlyHint:!0,destructiveHint:!1})}getDescription(){return"Get a monday.com form by its form token. Form tokens can be extracted from the form's url. Given a form url, such as https://forms.monday.com/forms/abc123def456ghi789?r=use1, the formToken is the alphanumeric string that appears right after /forms/ and before the ?. In the example, the formToken is abc123def456ghi789."}getInputSchema(){return gc}async executeInternal(e){const t={formToken:e.formToken},a=await this.mondayApi.request(rl,t);return a.form?{content:{message:"Form retrieved",form_token:e.formToken,data:a.form}}:{content:`Form with token ${e.formToken} not found or you don't have access to it.`}}},class extends me{constructor(){super(...arguments),this.name="form_questions_editor",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Form Questions Editor",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1}),this.helpers=new Gl(this.mondayApi),this.actionHandlers=new Map([[zl.Delete,this.helpers.deleteQuestion.bind(this.helpers)],[zl.Update,this.helpers.updateQuestion.bind(this.helpers)],[zl.Create,this.helpers.createQuestion.bind(this.helpers)]])}getDescription(){return"Create, update, or delete a question in a monday.com form"}getInputSchema(){return ql}async executeInternal(e){const t=this.actionHandlers.get(e.action);return t?await t(e):{content:`Unknown action: ${e.action}`}}},class extends me{constructor(){super(...arguments),this.name="create_form_submission",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create WorkForm Submission",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Submit a response to a monday.com WorkForm. Use get_form first to retrieve the WorkForm, then:\n- Inspect each question's showIfRules to determine which questions are conditionally shown based on previous answers.\n- Inspect each question's settings for any answer constraints (e.g. rating limits, select options, label limits).\n- Take note of any titles, descriptions, and content blocks to present the form naturally as you walk the user through it.\n- Take note of pages and question order to present questions in the correct sequence.\nGather all answers upfront before calling this tool — do not submit one question at a time. Accepts a bare form token, a full WorkForm URL (e.g. https://forms.monday.com/forms/{form_token}?r=use1), or a shortened wkf.ms URL (e.g. https://wkf.ms/4tqP28t) — shortened URLs are automatically resolved by following the redirect. Returns the submission ID."}getInputSchema(){return Cc}extractTokenFromUrl(e){const t=e.match(/\/forms\/([^/?]+)/);return t?t[1]:null}async resolveFormToken(e){if(e.includes("wkf.ms")){const t=(await v.default.head(e,{maxRedirects:0,validateStatus:e=>e<400})).headers.location;return t?this.extractTokenFromUrl(t):null}return e.startsWith("http://")||e.startsWith("https://")?this.extractTokenFromUrl(e):e}async executeInternal(e){const t=await this.resolveFormToken(e.form_token);if(!t)return{content:`Could not resolve a WorkForm token from "${e.form_token}". Please provide a valid WorkForm token or full WorkForm URL (e.g. https://forms.monday.com/forms/abc123).`};const a={form_token:t,answers:e.answers,form_timezone_offset:e.form_timezone_offset,password:e.password,tags:e.tags};try{const e=await this.mondayApi.request(Tc,a,{versionOverride:"dev"});return e.create_form_submission?{content:{message:"WorkForm submitted successfully",submission_id:e.create_form_submission.id}}:{content:`WorkForm with token ${t} was not found or is not accepting submissions. Verify the WorkForm token is correct, the WorkForm is active, and any required password was provided.`}}catch(e){sp(e,"submit form")}}},class extends me{constructor(){super(...arguments),this.name="create_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Column",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new column in a monday.com board"}getInputSchema(){return this.context?.boardId?$c:xc}async executeInternal(e){const t=this.context?.boardId??e.boardId,a={boardId:t?.toString()??"",columnType:e.columnType,columnTitle:e.columnTitle,columnDescription:e.columnDescription,columnSettings:"string"==typeof e.columnSettings?JSON.parse(e.columnSettings):e.columnSettings},i=await this.mondayApi.request(Kd,a);return{content:{message:"Column successfully created",column_id:i.create_column?.id,column_title:i.create_column?.title}}}},class extends me{constructor(){super(...arguments),this.name="update_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Column",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Update properties of an existing monday.com column (title, description, settings). Uses optimistic concurrency control via the revision field — fetch the current revision via get_board_schema first, then call this tool. If the update fails because the revision is stale, re-fetch and try again."}getInputSchema(){return this.context?.boardId?Lc:Uc}async executeInternal(e){const t=this.context?.boardId??e.boardId,a={boardId:t?.toString()??"",columnId:e.columnId,columnType:e.columnType,revision:e.revision,columnTitle:e.columnTitle,columnDescription:e.columnDescription,columnSettings:"string"==typeof e.columnSettings?JSON.parse(e.columnSettings):e.columnSettings},i=await this.mondayApi.request(Jd,a);return{content:{message:"Column successfully updated. Use the new revision below for any subsequent update to this column.",column_id:i.update_column?.id,column_title:i.update_column?.title,revision:i.update_column?.revision}}}},class extends me{constructor(){super(...arguments),this.name="create_group",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Group",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new group in a monday.com board. Groups are sections that organize related items. Use when users want to add structure, categorize items, or create workflow phases. Groups can be positioned relative to existing groups and assigned predefined colors. Items will always be created in the top group and so the top group should be the most relevant one for new item creation"}getInputSchema(){return zc}async executeInternal(e){const t={boardId:e.boardId,groupName:e.groupName,groupColor:e.groupColor,relativeTo:e.relativeTo,positionRelativeMethod:e.positionRelativeMethod},a=await this.mondayApi.request(Mc,t);return{content:{message:"Group created successfully",group_id:a.create_group?.id,group_title:a.create_group?.title,board_id:e.boardId,group_name:e.groupName}}}},class extends me{constructor(){super(...arguments),this.name="delete_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Column",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Delete a column from a monday.com board"}getInputSchema(){return this.context?.boardId?om:rm}async executeInternal(e){const t={boardId:(this.context?.boardId??e.boardId).toString(),columnId:e.columnId},a=await this.mondayApi.request(Qd,t);return{content:{message:`Column ${a.delete_column?.id} successfully deleted`,column_id:a.delete_column?.id}}}},lp,class extends lp{constructor(e,t){super(e,t),this.name="all_api_read",this.type=exports.ToolType.READ,this.annotations=ce({title:"Run read-only Query on the monday.com API",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Execute read-only GraphQL queries against the monday.com API. Only queries are accepted — mutations are rejected with an error before the request is sent. Use get_graphql_schema and get_type_details tools first to understand the schema before crafting your query."}async executeInternal(e){const t=_n(dt(e.query));if(t?.operation===De.MUTATION)throw new Error("all_api_read only accepts read queries. Mutations are not allowed.");return super.executeInternal(e)}},class extends lp{constructor(e,t){super(e,t),this.name="all_api_write",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Run Mutation on the monday.com API",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Execute GraphQL mutations against the monday.com API to create, update, or delete data. Only mutations are accepted — queries are rejected with an error before the request is sent. Use get_graphql_schema and get_type_details tools first to understand the schema before crafting your mutation."}async executeInternal(e){const t=_n(dt(e.query));if(t&&t.operation!==De.MUTATION)throw new Error("all_api_write only accepts mutations. Read queries are not allowed.");return super.executeInternal(e)}},class extends me{constructor(){super(...arguments),this.name="get_graphql_schema",this.type=exports.ToolType.ALL_API,this.annotations=ce({title:"Get GraphQL Schema",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"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."}getInputSchema(){return Om}async executeInternal(e){try{const t=await this.mondayApi.request(Xd),a=e?.operationType,i=t.__schema,n="write"!==a?t.queryType?.fields?.map((e=>({name:e.name,description:e.description??null})))??[]:void 0,o="read"!==a?t.mutationType?.fields?.map((e=>({name:e.name,description:e.description??null})))??[]:void 0,r=i?.types?.filter((e=>e.name&&!e.name.startsWith("__"))).map((e=>({name:e.name,kind:e.kind??"unknown"})))??[];return{content:{message:"GraphQL schema retrieved",...void 0!==n&&{query_fields:n},...void 0!==o&&{mutation_fields:o},types:r}}}catch(e){return{content:`Error fetching GraphQL schema: ${e instanceof Error?e.message:"Unknown error"}`}}}},class extends me{constructor(){super(...arguments),this.name="get_column_type_info",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Column Type Info",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return`Retrieves comprehensive information about a specific column type. Use fetchMode "${Np.Schema}" (default) to get the JSON schema definition from the API — use this before creating or updating columns (e.g. create_column) to understand structure, validation rules, and available properties for column settings. Use fetchMode "${Np.Guidelines}" to get only guidelines.filter and guidelines.aggregation for building items_page filters and board insights counts (no schema, no GraphQL round-trip). `}getInputSchema(){return Dm}async executeInternal(e){if(e.fetchMode===Np.Guidelines)return{content:{message:`Column type guidelines for ${e.columnType}`,data:{guidelines:{filter:Nm(e.columnType),aggregation:`\n## [IMPORTANT] Best Practices\n- When asked to get count of items you MUST USE ${In.CountItems} function. Do not use ${In.Count} function for that purpose.\n `}},url:Am}};const t={type:e.columnType},a=await this.mondayApi.request(Em,t);return a?.get_column_type_schema?{content:{message:`Column type schema for ${e.columnType}`,data:{schema:a.get_column_type_schema},url:Am}}:{content:`Information for column type "${e.columnType}" not found or not available.`}}},class extends me{constructor(){super(...arguments),this.name="get_type_details",this.type=exports.ToolType.ALL_API,this.annotations=ce({title:"Get Type Details",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get detailed information about a specific GraphQL type from the monday.com API schema"}getInputSchema(){return km}async executeInternal(e){try{if(!e.typeName)return{content:"Error: typeName is required. Please provide a valid GraphQL type name."};const a=(t=e.typeName,Fd`
2887
+ `,RI={};const $I=[class extends me{constructor(){super(...arguments),this.name="get_monday_dev_sprints_boards",this.type=exports.ToolType.READ,this.annotations=ce({title:"monday-dev: Get Sprints Boards",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Discover monday-dev sprints boards and their associated tasks boards in your account.\n\n## Purpose:\nIdentifies and returns monday-dev sprints board IDs and tasks board IDs that you need to use with other monday-dev tools. \nThis tool scans your recently used boards (up to 100) to find valid monday-dev sprint management boards.\n\n## What it Returns:\n- Pairs of sprints boards and their corresponding tasks boards\n- Board IDs, names, and workspace information for each pair\n- The bidirectional relationship between each sprints board and its tasks board\n\n## Note:\nSearches recently used boards (up to 100). If none found, ask user to provide board IDs manually."}getInputSchema(){return RI}async executeInternal(e){try{const e={limit:100},t=((await this.mondayApi.request(CI,e)).boards||[]).filter((e=>null!==e));if(0===t.length)return{content:`${rI} No boards found in your account. Please verify you have access to monday.com boards.`};const a=this.extractBoardPairs(t);return 0===a.length?{content:{message:"No monday-dev sprints board pairs found. ### Possible Reasons:\n1. Boards exist but not accessed recently by your account\n2. Missing access permissions to sprint/task boards\n3. Monday-dev product was not set up in account\n### Next Steps:\n1. Ask user to access monday-dev boards in UI to refresh recent boards list\n2. Ask user to verify permissions to view sprint and task boards\n3. Ask user to provide board IDs manually if known`;",boards_checked:t.length,pairs:[]}}:{content:{message:`Found ${a.length} matched pair(s)`,...a.length>1?{warning:"Multiple board pairs detected. Confirm with user which pair and workspace to use before any operation."}:{},pairs:a.map((e=>({sprints_board:{id:e.sprintsBoard.id,name:e.sprintsBoard.name,workspace_id:e.sprintsBoard.workspaceId,workspace_name:e.sprintsBoard.workspaceName},tasks_board:{id:e.tasksBoard.id,name:e.tasksBoard.name,workspace_id:e.tasksBoard.workspaceId,workspace_name:e.tasksBoard.workspaceName}}))),technical_reference:"Sprint Operations (all require correct board pair): Add to Sprint: Update `task_sprint` column with sprint item ID. Remove from Sprint: Clear `task_sprint` column (set to null). Search in Sprint: Filter where `task_sprint` equals sprint item ID. Move Between Sprints: Update `task_sprint` with new sprint item ID. Backlog Tasks: `task_sprint` is empty/null. Critical: `task_sprint` column references ONLY its paired sprints board. Cross-pair operations WILL FAIL."}}}catch(e){return{content:`${mI} Error retrieving sprints boards: ${e instanceof Error?e.message:"Unknown error"}`}}}createBoardInfo(e,t,a){return{id:e,name:t?.name||a,workspaceId:t?.workspace?.id||"unknown",workspaceName:t?.workspace?.name||"Unknown"}}processSprintsBoard(e,t,a){const i=NI(e,nI.SPRINT_TASKS);if(!i)return;const n=SI(i);if(!n)return;const o=`${e.id}:${n}`;if(a.has(o))return;const r=t.get(n);a.set(o,{sprintsBoard:this.createBoardInfo(e.id,e,`Sprints Board ${e.id}`),tasksBoard:this.createBoardInfo(n,r,`Tasks Board ${n}`)})}processTasksBoard(e,t,a){const i=NI(e,hI);if(!i)return;const n=SI(i);if(!n)return;const o=`${n}:${e.id}`;if(a.has(o))return;const r=t.get(n);a.set(o,{sprintsBoard:this.createBoardInfo(n,r,`Sprints Board ${n}`),tasksBoard:this.createBoardInfo(e.id,e,`Tasks Board ${e.id}`)})}extractBoardPairs(e){const t=new Map,a=new Map(e.map((e=>[e.id,e])));for(const i of e)i.columns&&(EI(i)&&this.processSprintsBoard(i,a,t),AI(i)&&this.processTasksBoard(i,a,t));return Array.from(t.values())}},class extends me{constructor(){super(...arguments),this.name="get_sprints_metadata",this.type=exports.ToolType.READ,this.annotations=ce({title:"monday-dev: Get Sprints Metadata",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get comprehensive sprint metadata from a monday-dev sprints board including:\n\n## Data Retrieved:\nA table of sprints with the following information:\n- Sprint ID\n- Sprint Name\n- Sprint timeline (planned from/to dates)\n- Sprint completion status (completed/in-progress/planned)\n- Sprint start date (actual)\n- Sprint end date (actual)\n- Sprint activation status\n- Sprint summary document object ID\n\n## Parameters:\n- **limit**: Number of sprints to retrieve (default: 25, max: 100)\n\nRequires the Main Sprints board ID of the monday-dev containing your sprints."}getInputSchema(){return kI}async executeInternal(e){try{const t=await this.validateBoardSchema(e.sprintsBoardId.toString());if(!t.success)return{content:t.error||"Board schema validation failed"};const a={boardId:e.sprintsBoardId.toString(),limit:e.limit},i=await this.mondayApi.request(OI,a),n=i.boards?.[0],o=n?.items_page?.items||[],r=this.buildSprintsMetadata(o);return{content:{message:"Sprints metadata retrieved",board_id:e.sprintsBoardId,total:o.length,data:r}}}catch(e){return{content:`${mI} Error retrieving sprints metadata: ${e instanceof Error?e.message:"Unknown error"}`}}}async validateBoardSchema(e){try{const t={boardId:e.toString()},a=await this.mondayApi.request(Gd,t),i=a.boards?.[0];if(!i)return{success:!1,error:`${rI} Board with ID ${e} not found. Please verify the board ID is correct and you have access to it.`};const n=i.columns||[],o=this.validateSprintsBoardSchemaFromColumns(n);return o.isValid?{success:!0}:{success:!1,error:`${uI} ${o.errorMessage}`}}catch(e){return{success:!1,error:`${mI} Error validating board schema: ${e instanceof Error?e.message:"Unknown error"}`}}}validateSprintsBoardSchemaFromColumns(e){const t=new Set(e.filter((e=>null!==e)).map((e=>e.id))),a=Object.values(nI),i=wI(t,a);if(!i.isValid){let e="BoardID provided is not a valid sprints board. Missing required columns:\n\n";return i.missingColumns.forEach((t=>{const a=(e=>fI[e]||e)(t);e+=`- ${a}\n`})),{isValid:!1,errorMessage:e}}return{isValid:!0,errorMessage:""}}buildSprintsMetadata(e){return e.map((e=>{const t=vI(e,oI.SPRINT_ACTIVATION),a=vI(e,oI.SPRINT_COMPLETION),i=yI(e,oI.SPRINT_START_DATE),n=yI(e,oI.SPRINT_END_DATE),o=((e,t)=>{const a=bI(e,t);if("TimelineValue"===a?.__typename&&a.from&&a.to)return{from:a.from.split("T")[0],to:a.to.split("T")[0]};return null})(e,oI.SPRINT_TIMELINE),r=II(e,oI.SPRINT_SUMMARY);let s=_I.Planned;return a?s=_I.Completed:(t||i)&&(s=_I.Active),{id:e.id,name:e.name||"Unknown",status:s,timeline:o?{from:o.from,to:o.to}:null,start_date:i||null,end_date:n||null,is_completed:a,document_object_id:r||null}}))}},class extends me{constructor(){super(...arguments),this.name="get_sprint_summary",this.type=exports.ToolType.READ,this.annotations=ce({title:"monday-dev: Get Sprint Summary",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Get the complete summary and analysis of a sprint.\n\n## Purpose:\nUnlock deep insights into completed sprint performance. \n\nThe sprint summary content including:\n- **Scope Management**: Analysis of planned vs. unplanned tasks, scope creep\n- **Velocity & Performance**: Individual velocity, task completion rates, workload distribution per team member\n- **Task Distribution**: Breakdown of completed tasks by type (Feature, Bug, Tech Debt, Infrastructure, etc.)\n- **AI Recommendations**: Action items, process improvements, retrospective focus areas\n\n## Requirements:\n- Sprint must be completed and must be created after 1/1/2025 \n\n## Important Note:\nWhen viewing the section "Completed by Assignee", you\'ll see user IDs in the format "@user-12345678". the 8 digits after the @is the user ID. To retrieve the actual owner names, use the list_users_and_teams tool with the user ID and set includeTeams=false for optimal performance.\n\n'}getInputSchema(){return DI}async executeInternal(e){try{const t=await this.getSprintMetadata(e.sprintId);if(!t.success)return{content:t.error||`${mI} Unknown error occurred while getting sprint metadata`};const a=await this.readSprintSummaryDocument(t.documentObjectId);return a.success?{content:{message:"Sprint summary retrieved",sprint_id:e.sprintId,sprint_name:t.sprintName,markdown:a.content}}:{content:a.error||`${mI} Unknown error occurred while reading document content`}}catch(e){return{content:`${mI} Error retrieving sprint summary: ${e instanceof Error?e.message:"Unknown error"}`}}}async getSprintMetadata(e){try{const t={ids:[String(e)]},a=(await this.mondayApi.request(iI,t)).items||[];if(0===a.length)return{success:!1,error:`${sI} Sprint with ID ${e} not found. Please verify the sprint ID is correct.`};const i=a[0];if(!i)return{success:!1,error:`${sI} Sprint with ID ${e} not found.`};const n=((e,t=[])=>{const a=new Set((e.column_values||[]).map((e=>e.id))),i=[...Object.values(nI),...t];return wI(a,i)})(i,[oI.SPRINT_SUMMARY]);if(!n.isValid)return{success:!1,error:`${uI} Sprint item is missing required columns: ${n.missingColumns.join(", ")}. This may not be a valid sprint board item.`};const o=II(i,oI.SPRINT_SUMMARY);return o?{success:!0,documentObjectId:o,sprintName:i.name}:{success:!1,error:`${dI} No sprint summary document found for sprint "${i.name}" (ID: ${e}). Sprint summary is only available for completed sprints that have analysis documents.`}}catch(e){return{success:!1,error:`${mI} Error getting sprint item: ${e instanceof Error?e.message:"Unknown error"}`}}}async readSprintSummaryDocument(e){try{const t={object_ids:[e],limit:1},a=(await this.mondayApi.request(Vd,t)).docs||[];if(0===a.length)return{success:!1,error:`${dI} Document with object ID ${e} not found or not accessible.`};const i=a[0];if(!i||!i.id)return{success:!1,error:`${pI} Document data is invalid for object ID ${e}.`};const n={docId:i.id,blockIds:[]},o=await this.mondayApi.request(ip,n);if(!o.export_markdown_from_doc?.success)return{success:!1,error:`${cI} Failed to export markdown from document: ${o.export_markdown_from_doc?.error||"Unknown error"}`};const r=o.export_markdown_from_doc.markdown;return r?{success:!0,content:r}:{success:!1,error:`${lI} Document content is empty or could not be retrieved.`}}catch(e){return{success:!1,error:`${mI} Error reading document: ${e instanceof Error?e.message:"Unknown error"}`}}}}],xI=[class extends me{constructor(){super(...arguments),this.name="delete_item",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Item",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Delete an item"}getInputSchema(){return dm}async executeInternal(e){const t={id:e.itemId.toString()},a=await this.mondayApi.request(jd,t);return{content:{message:`Item ${a.delete_item?.id} successfully deleted`,item_id:a.delete_item?.id}}}},class extends me{constructor(){super(...arguments),this.name="get_board_items_page",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Items Page",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Get all items from a monday.com board with pagination support and optional column values and item descriptions. Returns structured JSON with item details, creation/update timestamps, and pagination info. Use the nextCursor parameter from the response to get the next page of results when has_more is true. To retrieve an item description (the rich-text body/details of a monday.com item), set includeItemDescription to true — the response will include the item description document blocks with their content, type, and id. Use this whenever the user asks about an item description, body, details, or notes. [REQUIRED PRECONDITION]: Before using this tool, if new columns were added to the board or if you are not familiar with the board structure (column IDs, column types, status labels, etc.), first use get_board_info to understand the board metadata. This is essential for constructing proper filters and knowing which columns are available. [REQUIRED PRECONDITION]: For board-relation / cross-board linking tasks, call link_board_items_workflow before using this tool. VIEW-BASED FILTERING: If the user refers to a board view by name (e.g. "show me items in the Overdue view"), first call get_board_info to get the board views, find the matching view by name, then extract its filter field and pass it as the filters argument here.'}getInputSchema(){return Tm}async executeInternal(e){const t=!e.cursor;if(t&&e.searchTerm)try{if(e.itemIds=await this.getItemIdsFromSmartSearchAsync(e),0===e.itemIds.length)return{content:"No items found matching the specified searchTerm"}}catch(t){pp(t),e.filters=this.rebuildFiltersWithManualSearch(e.searchTerm,e.filters)}const a={boardId:e.boardId.toString(),limit:e.limit,cursor:e.cursor||void 0,includeColumns:e.includeColumns,columnIds:e.columnIds,includeSubItems:e.includeSubItems,includeDescription:e.includeItemDescription};t&&(e.itemIds||e.filters||e.orderBy)&&(a.queryParams={ids:e.itemIds?.map((e=>e.toString())),operator:e.filtersOperator,rules:e.filters?.map((e=>({column_id:e.columnId.toString(),compare_value:e.compareValue,operator:e.operator,compare_attribute:e.compareAttribute}))),order_by:e.orderBy?.map((e=>({column_id:e.columnId,direction:e.direction})))});const i=await this.mondayApi.request(Im,a);return{content:this.mapResult(i,e)}}rebuildFiltersWithManualSearch(e,t){return(t=(t=t??[]).filter((e=>"name"!==e.columnId))).push({columnId:"name",operator:dr.ContainsText,compareValue:e}),t}mapResult(e,t){const a=e.boards?.[0],i=a?.items_page,n=i?.items||[];return{board:{id:a?.id,name:a?.name},items:n.map((e=>this.mapItem(e,t))),pagination:{has_more:!!i?.cursor,nextCursor:i?.cursor||null,count:n.length}}}mapItem(e,t){const a={id:e.id,name:e.name,url:e.url,created_at:e.created_at,updated_at:e.updated_at};if(t.includeColumns&&e.column_values){a.column_values={};for(const t of e.column_values)a.column_values[t.id]=this.getColumnValueData(t)}if(t.includeItemDescription&&"description"in e&&e.description){const t=(e.description.blocks??[]).filter((e=>!!e)).map((e=>({id:e.id,type:e.type,content:e.content})));a.item_description={id:e.description.id,blocks:t}}return t.includeSubItems&&"subitems"in e&&e.subitems&&(a.subitems=e.subitems.slice(0,t.subItemLimit).map((e=>this.mapItem(e,t)))),a}getColumnValueData(e){switch(e.type){case $c.BoardRelation:return e.linked_items;case $c.Formula:return e.display_value;case $c.Mirror:return"Column value type is not supported"}if(e.text)return e.text;try{return JSON.parse(e.value)}catch{return e.value||null}}async getItemIdsFromSmartSearchAsync(e){const t={query:e.searchTerm,limit:20,boardIds:[e.boardId.toString()]},a=(await this.mondayApi.request(wm,t,{versionOverride:"dev",timeout:Tc})).search.items.results.map((e=>Number(e.id)));if(0===a.length)throw new Error("No items found for search term or new search is not enabled for this account");const i=e.itemIds??[];if(0===i.length)return a;const n=new Set(i);return a.filter((e=>n.has(e)))}},class extends me{constructor(){super(...arguments),this.name="create_item",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Item",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new item with provided values, create a subitem under a parent item, or duplicate an existing item and update it with new values. Use parentItemId when creating a subitem under an existing item. Use duplicateFromItemId when copying an existing item with modifications.[REQUIRED PRECONDITION]: Before using this tool, if new columns were added to the board or if you are not familiar with the board's structure (column IDs, column types, status labels, etc.), first use get_board_info to understand the board metadata. This is essential for constructing proper column values and knowing which columns are available."}getInputSchema(){return this.context?.boardId?Hc:Wc}async executeInternal(e){const t=this.context?.boardId??e.boardId;if(e.duplicateFromItemId&&e.parentItemId)throw new sp("Cannot specify both parentItemId and duplicateFromItemId. Please provide only one of these parameters.","INVALID_ARGUMENTS_COMBINATION");return e.duplicateFromItemId?await this.duplicateAndUpdateItem(e,t):e.parentItemId?await this.createSubitem(e):await this.createNewItem(e,t)}async duplicateAndUpdateItem(e,t){try{const a={boardId:t.toString(),itemId:e.duplicateFromItemId.toString()},i=await this.mondayApi.request(qc,a);if(!i.duplicate_item?.id)throw new sp("Failed to duplicate item: no item duplicated","EMPTY_API_RESPONSE");let n;try{n=JSON.parse(e.columnValues)}catch(e){throw new sp("Invalid JSON in columnValues","INVALID_COLUMN_VALUES_JSON")}const o={...n,name:e.name},r=new hp(this.mondayApi,{boardId:t});return await r.execute({itemId:parseInt(i.duplicate_item.id),columnValues:JSON.stringify(o),createLabelsIfMissing:e.createLabelsIfMissing}),{content:{message:`Item ${i.duplicate_item.id} duplicated from ${e.duplicateFromItemId}`,item_id:i.duplicate_item.id,item_name:i.duplicate_item.name,item_url:i.duplicate_item.url,board_id:t}}}catch(e){dp(e,"duplicate item")}}async createSubitem(e){const t={parentItemId:e.parentItemId.toString(),itemName:e.name,columnValues:e.columnValues,createLabelsIfMissing:e.createLabelsIfMissing};try{const a=await this.mondayApi.request(Gc,t);if(!a.create_subitem?.id)throw new sp("Failed to create subitem: no subitem created","EMPTY_API_RESPONSE");return{content:{message:`Subitem ${a.create_subitem.id} created under ${e.parentItemId}`,item_id:a.create_subitem.id,item_name:a.create_subitem.name,item_url:a.create_subitem.url}}}catch(e){dp(e,"create subitem")}}async createNewItem(e,t){try{const a={boardId:t.toString(),itemName:e.name,groupId:e.groupId,columnValues:e.columnValues,createLabelsIfMissing:e.createLabelsIfMissing},i=await this.mondayApi.request(qd,a);return{content:{message:`Item ${i.create_item?.id} successfully created`,item_id:i.create_item?.id,item_name:i.create_item?.name,item_url:i.create_item?.url,board_id:t}}}catch(e){dp(e,"create item")}}},class extends me{constructor(){super(...arguments),this.name="create_update",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Update",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new update (comment/post) on a monday.com item. Updates can be used to add comments, notes, or discussions to items. You can optionally mention users, teams, or boards in the update. You can also reply to an existing update by using the parentId parameter."}getInputSchema(){return Xc}async executeInternal(e){let t;if(e.mentionsList)try{const a=JSON.parse(e.mentionsList),i=Jc.safeParse(a);if(!i.success)throw new Error(`Invalid mentionsList format: ${i.error.message}`);t=i.data}catch(e){throw new Error(`Invalid mentionsList JSON format: ${e.message}`)}try{const a={itemId:e.itemId.toString(),body:e.body,mentionsList:t,parentId:e.parentId?.toString()},i=await this.mondayApi.request(Kc,a);if(!i.create_update?.id)throw new Error("Failed to create update: no update created");return{content:{message:`Update ${i.create_update.id} created on item ${e.itemId}`,update_id:i.create_update.id,item_id:e.itemId,item_name:i.create_update.item?.name,item_url:i.create_update.item?.url}}}catch(e){dp(e,"create update")}}},class extends me{constructor(){super(...arguments),this.name="delete_update",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Update",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Delete an update (comment/post) from a monday.com item."}getInputSchema(){return em}async executeInternal(e){try{const t={id:e.id.toString()},a=await this.mondayApi.request(Zc,t);if(!a.delete_update?.id)throw new Error("Failed to delete update: update not found or already deleted");return{content:{message:`Update ${a.delete_update.id} successfully deleted`,update_id:a.delete_update.id}}}catch(e){dp(e,"delete update")}}},class extends me{constructor(){super(...arguments),this.name="get_updates",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Updates",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get updates (comments/posts) from a monday.com item or board. Specify objectId and objectType (Item or Board) to retrieve updates. For Board queries, you can filter by date range using fromDate and toDate (both required together, ISO8601 format). By default, Board queries return only board discussion. Set includeItemUpdates to true to also include updates on individual items. Returns update text, creator info, timestamps, and optionally replies and assets."}getInputSchema(){return nm}async executeInternal(e){try{const t=void 0!==e.fromDate,a=void 0!==e.toDate;if(t!==a)throw new Error("Both fromDate and toDate must be provided together for date range filtering");if((t||a)&&e.objectType===im.Item)throw new Error("Date range filtering (fromDate/toDate) is only supported for Board objectType");const i={limit:e.limit??25,page:e.page??1,includeReplies:e.includeReplies??!1,includeAssets:e.includeAssets??!1};let n;n=e.objectType===im.Item?await this.mondayApi.request(tm,{...i,itemId:e.objectId}):await this.mondayApi.request(am,{...i,boardId:e.objectId,boardUpdatesOnly:!e.includeItemUpdates,...e.fromDate&&e.toDate?{fromDate:om(e.fromDate),toDate:om(e.toDate)}:{}});const o=e.objectType===im.Item?n.items?.[0]?.updates:n.boards?.[0]?.updates;if(!o||0===o.length)return{content:`No updates found for ${e.objectType.toLowerCase()} with id ${e.objectId}`};const r=o.map((t=>{const a={id:t.id,text_body:t.text_body,created_at:t.created_at,updated_at:t.updated_at,creator:t.creator?{id:t.creator.id,name:t.creator.name}:null,item_id:t.item_id};return e.includeReplies&&t.replies&&(a.replies=t.replies.map((e=>({id:e.id,text_body:e.text_body,created_at:e.created_at,updated_at:e.updated_at,creator:e.creator?{id:e.creator.id,name:e.creator.name}:null})))),e.includeAssets&&t.assets&&(a.assets=t.assets.filter((e=>!!e)).map((e=>({id:e.id,name:e.name,url:e.url,file_extension:e.file_extension,file_size:e.file_size,created_at:e.created_at})))),a})),s=e.objectType===im.Item?n.items?.[0]?.url:n.boards?.[0]?.url;return{content:{message:"Updates retrieved",[`${e.objectType.toLowerCase()}_id`]:e.objectId,url:s,updates:r,pagination:{page:e.page??1,limit:e.limit??25,count:r.length}}}}catch(e){dp(e,"get updates")}}},class extends me{constructor(){super(...arguments),this.name="create_update_in_monday",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Update in Monday, after calling this tool you should",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new update (comment/post) on a monday.com item. Updates can be used to add comments, notes, or discussions to items. You can optionally mention users, teams, or boards in the update. After calling this tool you should call the full board data tool to get data, and immediately after that call the show table tool to show the data from that tool. IMPORTANT: You MUST use the COMPLETE data from the full board data tool - do NOT cut, truncate, or omit any data. Pass the entire dataset to the show table tool."}getInputSchema(){return Kh}async executeInternal(e){let t;if(e.mentionsList)try{const a=JSON.parse(e.mentionsList),i=Yh.safeParse(a);if(!i.success)throw new Error(`Invalid mentionsList format: ${i.error.message}`);t=i.data}catch(e){throw new Error(`Invalid mentionsList JSON format: ${e.message}`)}try{const a={itemId:e.itemId.toString(),body:e.body,mentionsList:t},i=await this.mondayApi.request(Kc,a);if(!i.create_update?.id)throw new Error("Failed to create update: no update created");return{content:{message:`Update ${i.create_update.id} successfully created on item ${e.itemId}`,update_id:i.create_update.id,item_id:e.itemId,next_steps:"Now call the full board data tool to get data, then immediately call the show table tool to show that data. CRITICAL: You MUST pass the COMPLETE and FULL data from the full board data tool to the show table tool - do NOT cut, summarize, truncate, or omit ANY data. Use the entire dataset exactly as received."}}}catch(e){dp(e,"create update")}}},class extends me{constructor(){super(...arguments),this.name="get_board_schema",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Schema",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get board schema (columns and groups) by board id"}getInputSchema(){if(!this.context?.boardId)return Em}async executeInternal(e){const t=this.context?.boardId??e.boardId,a={boardId:t.toString()},i=await this.mondayApi.request(Gd,a);return{content:{message:"Board schema retrieved",board_id:t,columns:i.boards?.[0]?.columns?.map((e=>({id:e?.id,title:e?.title,type:e?.type,revision:e?.revision})))??[],groups:i.boards?.[0]?.groups?.map((e=>({id:e?.id,title:e?.title})))??[]}}}},class extends me{constructor(){super(...arguments),this.name="get_board_activity",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Activity",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0}),this.defaultLimit=1e3}getDescription(){return"Get board activity logs for a specified time range (defaults to last 30 days). Optionally filter by item ids or user ids to avoid fetching activity for the entire board."}getInputSchema(){return _m}async executeInternal(e){const t=new Date,a=new Date(t.getTime()-wc.MONTH30Days),i=e?.fromDate||a.toISOString(),n=e?.toDate||t.toISOString(),o={boardId:e.boardId.toString(),itemIds:e.itemIds?.map(String),userIds:e.userIds?.map(String),fromDate:i,toDate:n,limit:this.defaultLimit,page:1,includeData:e.includeData??!1},r=await this.mondayApi.request(fm,o),s=r.boards?.[0]?.activity_logs;if(!s||0===s.length)return{content:`No activity found for board ${e.boardId} in the specified time range (${i} to ${n}).`};const d=r.boards?.[0],p=e.includeData??!1;return{content:{message:"Board activity retrieved",board_id:e.boardId,board_name:d?.name,board_url:d?.url,data:s.filter((e=>null!=e)).map((e=>({created_at:e.created_at,event:e.event,entity:e.entity,user_id:e.user_id,...p&&e.data?{data:e.data}:{}})))}}}},class extends me{constructor(){super(...arguments),this.name="get_board_info",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Info",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get comprehensive board information including metadata, structure, owners, and configuration. Also returns the board's views (e.g. table views, filter views) — each view includes its id, name, type, and a structured filter object. "}getInputSchema(){return ym}async executeInternal(e){const t={boardId:e.boardId.toString()},a=await this.mondayApi.request(gm,t),i=a.boards?.[0];if(!i)return{content:`Board with id ${e.boardId} not found or you don't have access to it.`};const n=await this.getSubItemsBoardAsync(i);return{content:vm(i,n)}}async getSubItemsBoardAsync(e){const t=e.columns?.find((e=>e?.type===$c.Subtasks));if(!t)return null;const a=t.settings.boardIds[0],i=await this.mondayApi.request(bm,{boardId:a});return i.boards?.[0]??null}},class extends me{constructor(){super(...arguments),this.name="get_full_board_data",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Full Board Data",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"INTERNAL USE ONLY - DO NOT CALL THIS TOOL DIRECTLY. This tool is exclusively triggered by UI components and should never be invoked directly by the agent."}getInputSchema(){return hm}async executeInternal(e){try{const t={boardId:e.boardId,itemsLimit:7};e.filters&&(t.queryParams={operator:e.filtersOperator,rules:e.filters.map((e=>({column_id:e.columnId.toString(),compare_value:e.compareValue,operator:e.operator,compare_attribute:e.compareAttribute})))});const a=await this.mondayApi.request(lm,t);if(!a.boards||0===a.boards.length||!a.boards[0])throw new Error(`Board with ID ${e.boardId} not found`);const i=a.boards[0],n=new Set;i.items_page.items.forEach((e=>{e.updates?.forEach((e=>{e.creator_id&&n.add(e.creator_id),e.replies?.forEach((e=>{e.creator_id&&n.add(e.creator_id)}))})),e.column_values.forEach((e=>{if("persons_and_teams"in e){const t=e;t.persons_and_teams?.forEach((e=>{"person"===e.kind&&e.id&&n.add(e.id)}))}}))}));const o=Array.from(n).filter((e=>!(Number(e)<0)));let r=[];if(o.length>0){const e={userIds:o},t=await this.mondayApi.request(cm,e);r=t.users?.filter((e=>null!==e))||[]}const s=new Map(r.map((e=>[e.id,e])));return{content:{board:{id:i.id,name:i.name,columns:i.columns,items:i.items_page.items.map((e=>({id:e.id,name:e.name,column_values:e.column_values,updates:e.updates?.map((e=>({id:e.id,creator_id:e.creator_id||"",creator:e.creator_id&&s.get(e.creator_id)||null,text_body:e.text_body,created_at:e.created_at,replies:e.replies?.map((e=>({id:e.id,creator_id:e.creator_id||"",creator:e.creator_id&&s.get(e.creator_id)||null,text_body:e.text_body,created_at:e.created_at})))||[]})))||[]})))},users:r,stats:{total_items:i.items_page.items.length,total_updates:i.items_page.items.reduce(((e,t)=>e+(t.updates?.length||0)),0),total_unique_creators:r.length}}}}catch(e){dp(e,"get full board data")}}},class extends me{constructor(){super(...arguments),this.name="list_users_and_teams",this.type=exports.ToolType.READ,this.annotations=ce({title:"List Users and Teams",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Tool to fetch users and/or teams data. \n\n MANDATORY BEST PRACTICES:\n 1. ALWAYS use specific IDs or names when available\n 2. If no ids available, use name search if possible (USERS ONLY)\n 3. Use 'getMe: true' to get current user information\n 4. AVOID broad queries (no parameters) - use only as last resort\n\n REQUIRED PARAMETER PRIORITY (use in this order):\n 1. getMe - STANDALONE\n 2. userIds\n 3. name - STANDALONE (USERS ONLY, NOT for teams)\n 4. teamIds + teamsOnly\n 5. No parameters - LAST RESORT\n\n CRITICAL USAGE RULES:\n • userIds + teamIds requires explicit includeTeams: true flag\n • includeTeams: true fetches both users and teams, do not use this to fetch a specific user's teams rather fetch that user by id and you will get their team memberships.\n • name parameter is for USER search ONLY - it cannot be used to search for teams. Use teamIds to fetch specific teams."}getInputSchema(){return au}async executeInternal(e){const t=e.userIds&&e.userIds.length>0,a=e.teamIds&&e.teamIds.length>0,i=e.includeTeams||!1,n=e.teamsOnly||!1,o=e.includeTeamMembers||!1,r=!!e.name;if(e.getMe||!1){if(t||a||i||n||o||r)return{content:"PARAMETER_CONFLICT: getMe is STANDALONE only. Remove all other parameters when using getMe: true for current user lookup."};const e=await this.mondayApi.request(Hm);if(!e.me)return{content:"AUTHENTICATION_ERROR: Current user fetch failed. Verify API token and user permissions."};const s={users:[e.me]},d=Km(s),p=await eu(this.mondayApi);return{content:{data:d,action_name:"Users and teams",url:p?`https://${p}.monday.com/teams/all`:void 0}}}if(r){if(t||a||i||n||o)return{content:"PARAMETER_CONFLICT: name is STANDALONE only. Remove userIds, teamIds, includeTeams, teamsOnly, and includeTeamMembers when using name search."};const r={name:e.name},s=await this.mondayApi.request(Gm,r);if(!s.users||0===s.users.length)return{content:`NAME_SEARCH_EMPTY: No users found matching "${e.name}". Try broader search terms or verify user exists in account.`};const d=s.users.filter((e=>null!==e)).map((e=>`• **${e.name}** (ID: ${e.id})${e.title?` - ${e.title}`:""}`)).join("\n"),p=`Found ${s.users.length} user(s) matching "${e.name}":\n\n${d}`,l=await eu(this.mondayApi);return{content:{data:p,action_name:"Users and teams",url:l?`https://${l}.monday.com/teams/all`:void 0}}}if(n&&i)return{content:"PARAMETER_CONFLICT: Cannot use teamsOnly: true with includeTeams: true. Use teamsOnly for teams-only queries or includeTeams for combined data."};if(t&&e.userIds&&e.userIds.length>Qm)return{content:`LIMIT_EXCEEDED: userIds array too large (${e.userIds.length}/500). Split into batches of max 500 IDs and make multiple calls.`};if(a&&e.teamIds&&e.teamIds.length>Jm)return{content:`LIMIT_EXCEEDED: teamIds array too large (${e.teamIds.length}/500). Split into batches of max 500 IDs and make multiple calls.`};let s;if(n||!t&&a&&!i)if(o){const t={teamIds:e.teamIds};s=await this.mondayApi.request(qm,t)}else{const t={teamIds:e.teamIds};s=await this.mondayApi.request(jm,t)}else if(i){const t={userIds:e.userIds,teamIds:e.teamIds,limit:Xm};s=await this.mondayApi.request(zm,t)}else if(t){const t={userIds:e.userIds,limit:Xm};s=await this.mondayApi.request(Mm,t)}else{const e={userIds:void 0,limit:Xm};s=await this.mondayApi.request(Bm,e)}const d=Km(s),p=await eu(this.mondayApi);return{content:{data:d,action_name:"Users and teams",url:p?`https://${p}.monday.com/teams/all`:void 0}}}},hp,class extends me{constructor(){super(...arguments),this.name="move_item_to_group",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Move Item to Group",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Move an item to a group in a monday.com board"}getInputSchema(){return iu}async executeInternal(e){const t={itemId:e.itemId.toString(),groupId:e.groupId},a=await this.mondayApi.request(Wd,t);return{content:`Item ${a.move_item_to_group?.id} successfully moved to group ${e.groupId}`}}},class extends me{constructor(){super(...arguments),this.name="create_board",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Board",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a monday.com board"}getInputSchema(){return Pp}async executeInternal(e){const t={boardName:e.boardName,boardKind:e.boardKind,boardDescription:e.boardDescription,workspaceId:e.workspaceId,...void 0!==e.boardOwnerIds?{boardOwnerIds:e.boardOwnerIds}:{}},a=await this.mondayApi.request(Yd,t);return{content:{message:`Board ${a.create_board?.id} successfully created`,board_id:a.create_board?.id,board_name:a.create_board?.name,board_url:a.create_board?.url}}}},class extends me{constructor(){super(...arguments),this.name="use_template",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Use Template",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Apply a monday.com template to create boards in a workspace. Returns a process_id immediately — the operation runs asynchronously and can take 30 seconds to 2+ minutes. Use check_template_status(processId) to poll every 5–10 seconds until status is COMPLETE or FAILED. Stop polling on COMPLETE (boards ready) or FAILED (unrecoverable error). Give up after ~5 minutes if neither terminal status is reached. Boards exist as empty shells until status is COMPLETE."}getInputSchema(){return Fp}async executeInternal(e){const t={templateId:e.templateId,destinationWorkspaceId:e.destinationWorkspaceId,destinationName:e.destinationName,boardKind:e.boardKind},a=await this.mondayApi.request(op,t),i=a.use_template?.process_id;return null==i?{content:{processId:null,message:"Failed to start template application. The request was rejected."}}:{content:{processId:i,message:"Template application started. Poll check_template_status with processId every 5–10 seconds. Stop on COMPLETE (boards ready) or FAILED (unrecoverable). Give up after ~5 minutes."}}}},class extends me{constructor(){super(...arguments),this.name="check_template_status",this.type=exports.ToolType.READ,this.annotations=ce({title:"Check Template Status",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Check the status of a use_template operation. Poll after calling use_template — wait 5–10 seconds between polls. Status values: PENDING | IN_PROGRESS | COMPLETE | FAILED. Stop polling when status is COMPLETE (boards ready) or FAILED (unrecoverable). Give up after ~5 minutes if neither terminal status is reached. Board IDs are only available once COMPLETE — boards exist but are empty during IN_PROGRESS. Returns null if process_id is invalid or expired (1-hour TTL)."}getInputSchema(){return Vp}async executeInternal(e){const t={processId:e.processId},a=(await this.mondayApi.request(rp,t)).template_installation_status;return a?a.status===Yr.Complete?{content:{status:Yr.Complete,board_ids:a.board_ids,board_ids_map:a.board_ids_map,message:`Template application complete. ${a.board_ids.length} board(s) created.`}}:a.status===Yr.Failed?{content:{status:Yr.Failed,board_ids:[],board_ids_map:[],message:"Template application failed. Please try again."}}:a.status===Yr.Pending||a.status===Yr.InProgress?{content:{status:a.status,board_ids:[],board_ids_map:[],message:`Template application ${a.status===Yr.InProgress?"in progress":"pending"}. Board IDs will be available once complete.`}}:{content:{status:a.status,board_ids:[],board_ids_map:[],message:`Unexpected status: ${a.status}. Poll again or contact support.`}}:{content:{status:null,message:"Status not found. The process_id is invalid or has expired."}}}},class extends me{constructor(){super(...arguments),this.name="create_form",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Form",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a monday.com form. Also creates a backing board to store responses. Returns the formToken for future mutations."}getInputSchema(){return Nl}async executeInternal(e){const t={destination_workspace_id:e.destination_workspace_id,destination_folder_id:e.destination_folder_id,destination_folder_name:e.destination_folder_name,board_kind:e.board_kind,destination_name:e.destination_name,board_owner_ids:e.board_owner_ids,board_owner_team_ids:e.board_owner_team_ids,board_subscriber_ids:e.board_subscriber_ids,board_subscriber_teams_ids:e.board_subscriber_teams_ids},a=await this.mondayApi.request(rl,t);return{content:{message:"Form created successfully",board_id:a.create_form?.boardId,form_token:a.create_form?.token}}}},class extends me{constructor(){super(...arguments),this.name="update_form",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Form",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0}),this.helpers=new gc(this.mondayApi),this.actionHandlers=new Map([[Wl.setFormPassword,this.helpers.setFormPassword.bind(this.helpers)],[Wl.shortenFormUrl,this.helpers.shortenFormUrl.bind(this.helpers)],[Wl.deactivate,this.helpers.deactivateForm.bind(this.helpers)],[Wl.activate,this.helpers.activateForm.bind(this.helpers)],[Wl.createTag,this.helpers.createTag.bind(this.helpers)],[Wl.deleteTag,this.helpers.deleteTag.bind(this.helpers)],[Wl.updateAppearance,this.helpers.updateAppearance.bind(this.helpers)],[Wl.updateAccessibility,this.helpers.updateAccessibility.bind(this.helpers)],[Wl.updateFeatures,this.helpers.updateFeatures.bind(this.helpers)],[Wl.updateQuestionOrder,this.helpers.updateQuestionOrder.bind(this.helpers)],[Wl.updateFormHeader,this.helpers.updateFormHeader.bind(this.helpers)]])}getDescription(){return"Update a monday.com form. Use the action field to specify the operation."}getInputSchema(){return _c}async executeInternal(e){const t=this.actionHandlers.get(e.action);return t?await t(e):{content:"Received an invalid action for the update form tool."}}},class extends me{constructor(){super(...arguments),this.name="get_form",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Form",readOnlyHint:!0,destructiveHint:!1})}getDescription(){return"Get a monday.com form by its form token. Form tokens can be extracted from the form's url. Given a form url, such as https://forms.monday.com/forms/abc123def456ghi789?r=use1, the formToken is the alphanumeric string that appears right after /forms/ and before the ?. In the example, the formToken is abc123def456ghi789."}getInputSchema(){return bc}async executeInternal(e){const t={formToken:e.formToken},a=await this.mondayApi.request(sl,t);return a.form?{content:{message:"Form retrieved",form_token:e.formToken,data:a.form}}:{content:`Form with token ${e.formToken} not found or you don't have access to it.`}}},class extends me{constructor(){super(...arguments),this.name="form_questions_editor",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Form Questions Editor",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1}),this.helpers=new Hl(this.mondayApi),this.actionHandlers=new Map([[jl.Delete,this.helpers.deleteQuestion.bind(this.helpers)],[jl.Update,this.helpers.updateQuestion.bind(this.helpers)],[jl.Create,this.helpers.createQuestion.bind(this.helpers)]])}getDescription(){return"Create, update, or delete a question in a monday.com form"}getInputSchema(){return Gl}async executeInternal(e){const t=this.actionHandlers.get(e.action);return t?await t(e):{content:`Unknown action: ${e.action}`}}},class extends me{constructor(){super(...arguments),this.name="create_form_submission",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create WorkForm Submission",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Submit a response to a monday.com WorkForm. Use get_form first to retrieve the WorkForm, then:\n- Inspect each question's showIfRules to determine which questions are conditionally shown based on previous answers.\n- Inspect each question's settings for any answer constraints (e.g. rating limits, select options, label limits).\n- Take note of any titles, descriptions, and content blocks to present the form naturally as you walk the user through it.\n- Take note of pages and question order to present questions in the correct sequence.\nGather all answers upfront before calling this tool — do not submit one question at a time. Accepts a bare form token, a full WorkForm URL (e.g. https://forms.monday.com/forms/{form_token}?r=use1), or a shortened wkf.ms URL (e.g. https://wkf.ms/4tqP28t) — shortened URLs are automatically resolved by following the redirect. Returns the submission ID."}getInputSchema(){return Rc}extractTokenFromUrl(e){const t=e.match(/\/forms\/([^/?]+)/);return t?t[1]:null}async resolveFormToken(e){if(e.includes("wkf.ms")){const t=(await v.default.head(e,{maxRedirects:0,validateStatus:e=>e<400})).headers.location;return t?this.extractTokenFromUrl(t):null}return e.startsWith("http://")||e.startsWith("https://")?this.extractTokenFromUrl(e):e}async executeInternal(e){const t=await this.resolveFormToken(e.form_token);if(!t)return{content:`Could not resolve a WorkForm token from "${e.form_token}". Please provide a valid WorkForm token or full WorkForm URL (e.g. https://forms.monday.com/forms/abc123).`};const a={form_token:t,answers:e.answers,form_timezone_offset:e.form_timezone_offset,password:e.password,tags:e.tags};try{const e=await this.mondayApi.request(Ec,a,{versionOverride:"dev"});return e.create_form_submission?{content:{message:"WorkForm submitted successfully",submission_id:e.create_form_submission.id}}:{content:`WorkForm with token ${t} was not found or is not accepting submissions. Verify the WorkForm token is correct, the WorkForm is active, and any required password was provided.`}}catch(e){dp(e,"submit form")}}},class extends me{constructor(){super(...arguments),this.name="create_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Column",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new column in a monday.com board"}getInputSchema(){return this.context?.boardId?xc:Lc}async executeInternal(e){const t=this.context?.boardId??e.boardId,a={boardId:t?.toString()??"",columnType:e.columnType,columnTitle:e.columnTitle,columnDescription:e.columnDescription,columnSettings:"string"==typeof e.columnSettings?JSON.parse(e.columnSettings):e.columnSettings},i=await this.mondayApi.request(Kd,a);return{content:{message:"Column successfully created",column_id:i.create_column?.id,column_title:i.create_column?.title}}}},class extends me{constructor(){super(...arguments),this.name="update_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Column",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Update properties of an existing monday.com column (title, description, settings). Uses optimistic concurrency control via the revision field — fetch the current revision via get_board_schema first, then call this tool. If the update fails because the revision is stale, re-fetch and try again."}getInputSchema(){return this.context?.boardId?Uc:Pc}async executeInternal(e){const t=this.context?.boardId??e.boardId,a={boardId:t?.toString()??"",columnId:e.columnId,columnType:e.columnType,revision:e.revision,columnTitle:e.columnTitle,columnDescription:e.columnDescription,columnSettings:"string"==typeof e.columnSettings?JSON.parse(e.columnSettings):e.columnSettings},i=await this.mondayApi.request(Jd,a);return{content:{message:"Column successfully updated. Use the new revision below for any subsequent update to this column.",column_id:i.update_column?.id,column_title:i.update_column?.title,revision:i.update_column?.revision}}}},class extends me{constructor(){super(...arguments),this.name="create_group",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Group",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new group in a monday.com board. Groups are sections that organize related items. Use when users want to add structure, categorize items, or create workflow phases. Groups can be positioned relative to existing groups and assigned predefined colors. Items will always be created in the top group and so the top group should be the most relevant one for new item creation"}getInputSchema(){return jc}async executeInternal(e){const t={boardId:e.boardId,groupName:e.groupName,groupColor:e.groupColor,relativeTo:e.relativeTo,positionRelativeMethod:e.positionRelativeMethod},a=await this.mondayApi.request(Bc,t);return{content:{message:"Group created successfully",group_id:a.create_group?.id,group_title:a.create_group?.title,board_id:e.boardId,group_name:e.groupName}}}},class extends me{constructor(){super(...arguments),this.name="delete_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Column",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Delete a column from a monday.com board"}getInputSchema(){return this.context?.boardId?rm:sm}async executeInternal(e){const t={boardId:(this.context?.boardId??e.boardId).toString(),columnId:e.columnId},a=await this.mondayApi.request(Qd,t);return{content:{message:`Column ${a.delete_column?.id} successfully deleted`,column_id:a.delete_column?.id}}}},cp,class extends cp{constructor(e,t){super(e,t),this.name="all_api_read",this.type=exports.ToolType.READ,this.annotations=ce({title:"Run read-only Query on the monday.com API",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Execute read-only GraphQL queries against the monday.com API. Only queries are accepted — mutations are rejected with an error before the request is sent. Use get_graphql_schema and get_type_details tools first to understand the schema before crafting your query."}async executeInternal(e){const t=_n(dt(e.query));if(t?.operation===De.MUTATION)throw new Error("all_api_read only accepts read queries. Mutations are not allowed.");return super.executeInternal(e)}},class extends cp{constructor(e,t){super(e,t),this.name="all_api_write",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Run Mutation on the monday.com API",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Execute GraphQL mutations against the monday.com API to create, update, or delete data. Only mutations are accepted — queries are rejected with an error before the request is sent. Use get_graphql_schema and get_type_details tools first to understand the schema before crafting your mutation."}async executeInternal(e){const t=_n(dt(e.query));if(t&&t.operation!==De.MUTATION)throw new Error("all_api_write only accepts mutations. Read queries are not allowed.");return super.executeInternal(e)}},class extends me{constructor(){super(...arguments),this.name="get_graphql_schema",this.type=exports.ToolType.ALL_API,this.annotations=ce({title:"Get GraphQL Schema",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"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."}getInputSchema(){return km}async executeInternal(e){try{const t=await this.mondayApi.request(Xd),a=e?.operationType,i=t.__schema,n="write"!==a?t.queryType?.fields?.map((e=>({name:e.name,description:e.description??null})))??[]:void 0,o="read"!==a?t.mutationType?.fields?.map((e=>({name:e.name,description:e.description??null})))??[]:void 0,r=i?.types?.filter((e=>e.name&&!e.name.startsWith("__"))).map((e=>({name:e.name,kind:e.kind??"unknown"})))??[];return{content:{message:"GraphQL schema retrieved",...void 0!==n&&{query_fields:n},...void 0!==o&&{mutation_fields:o},types:r}}}catch(e){return{content:`Error fetching GraphQL schema: ${e instanceof Error?e.message:"Unknown error"}`}}}},class extends me{constructor(){super(...arguments),this.name="get_column_type_info",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Column Type Info",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return`Retrieves comprehensive information about a specific column type. Use fetchMode "${Dp.Schema}" (default) to get the JSON schema definition from the API — use this before creating or updating columns (e.g. create_column) to understand structure, validation rules, and available properties for column settings. Use fetchMode "${Dp.Guidelines}" to get only guidelines.filter and guidelines.aggregation for building items_page filters and board insights counts (no schema, no GraphQL round-trip). `}getInputSchema(){return Om}async executeInternal(e){if(e.fetchMode===Dp.Guidelines)return{content:{message:`Column type guidelines for ${e.columnType}`,data:{guidelines:{filter:Dm(e.columnType),aggregation:`\n## [IMPORTANT] Best Practices\n- When asked to get count of items you MUST USE ${In.CountItems} function. Do not use ${In.Count} function for that purpose.\n `}},url:Sm}};const t={type:e.columnType},a=await this.mondayApi.request(Am,t);return a?.get_column_type_schema?{content:{message:`Column type schema for ${e.columnType}`,data:{schema:a.get_column_type_schema},url:Sm}}:{content:`Information for column type "${e.columnType}" not found or not available.`}}},class extends me{constructor(){super(...arguments),this.name="get_type_details",this.type=exports.ToolType.ALL_API,this.annotations=ce({title:"Get Type Details",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get detailed information about a specific GraphQL type from the monday.com API schema"}getInputSchema(){return Cm}async executeInternal(e){try{if(!e.typeName)return{content:"Error: typeName is required. Please provide a valid GraphQL type name."};const a=(t=e.typeName,Fd`
2866
2888
  query getTypeDetails {
2867
2889
  __type(name: "${t}") {
2868
2890
  name
@@ -2950,5 +2972,5 @@
2950
2972
  }
2951
2973
  }
2952
2974
  }
2953
- `),i=await this.mondayApi.request(a);return i.__type?{content:{message:"Type details retrieved",data:{name:i.__type.name,kind:i.__type.kind,description:i.__type.description??null,fields:i.__type.fields??[],inputFields:i.__type.inputFields??[],interfaces:i.__type.interfaces??[],enumValues:i.__type.enumValues??[],possibleTypes:i.__type.possibleTypes??[]}}}:{content:`Type '${e.typeName}' not found in the GraphQL schema. Please check the type name and try again.`}}catch(e){const t=e instanceof Error?e.message:"Unknown error",a=t.includes("JSON");return{content:`Error fetching type details: ${t}${a?"\n\nThis could be because the type name is incorrect or the GraphQL query format is invalid. Please check the type name and try again.":""}`}}var t}},class extends me{constructor(){super(...arguments),this.name="create_custom_activity",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Custom Activity",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new custom activity in the E&A app"}getInputSchema(){return Pc}async executeInternal(e){const t={color:e.color,icon_id:e.icon_id,name:e.name};return await this.mondayApi.request(ep,t),{content:{message:`Custom activity '${e.name}' with color ${e.color} and icon ${e.icon_id} successfully created`,name:e.name,color:e.color,icon_id:e.icon_id}}}},class extends me{constructor(){super(...arguments),this.name="create_notification",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Notification",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Send a notification to a user via the bell icon and optionally by email. Use target_type "Post" for updates/replies or "Project" for items/boards.'}getInputSchema(){return Vc}async executeInternal(e){const t={user_id:e.user_id,target_id:e.target_id,text:e.text,target_type:e.target_type};try{await this.mondayApi.request(Fc,t);return{content:{message:"Notification sent",user_id:e.user_id,text:e.text}}}catch(t){return{content:`Failed to send notification to user ${e.user_id}`}}}},class extends me{constructor(){super(...arguments),this.name="create_timeline_item",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Timeline Item",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new timeline item in the E&A app"}getInputSchema(){return Wc}async executeInternal(e){const t={item_id:e.item_id.toString(),custom_activity_id:e.custom_activity_id,title:e.title,timestamp:e.timestamp,summary:e.summary,content:e.content,location:e.location,phone:e.phone,url:e.url};e.start_timestamp&&e.end_timestamp&&(t.time_range={start_timestamp:e.start_timestamp,end_timestamp:e.end_timestamp});const a=await this.mondayApi.request(tp,t);return{content:{message:`Timeline item '${e.title}' with ID ${a.create_timeline_item?.id} successfully created on item ${e.item_id}`,timeline_item_id:a.create_timeline_item?.id,item_id:e.item_id,title:e.title}}}},class extends me{constructor(){super(...arguments),this.name="fetch_custom_activity",this.type=exports.ToolType.READ,this.annotations=ce({title:"Fetch Custom Activities",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get custom activities from the E&A app"}getInputSchema(){return dm}async executeInternal(e){const t=await this.mondayApi.request(ap);if(!t.custom_activity||0===t.custom_activity.length)return{content:{message:"No custom activities found",data:[]}};const a=t.custom_activity.map((e=>({id:e.id,name:e.name,color:e.color,icon_id:e.icon_id,type:e.type})));return{content:{message:`Found ${a.length} custom activities`,data:a}}}},class extends me{constructor(){super(...arguments),this.name="read_docs",this.type=exports.ToolType.READ,this.annotations=ce({title:"Read Documents",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Get information about monday.com documents. Supports two modes:\n\nMODE: "content" (default) — Fetch documents with their full markdown content.\n- Requires: type ("ids" | "object_ids" | "workspace_ids") and ids array\n- Supports pagination via page/limit. Check has_more_pages in response.\n- If type "ids" returns no results, automatically retries with object_ids.\n- Set include_blocks: true to include block IDs, types, and positions in the response — required before calling update_doc.\n- Blocks default to 25 per page. Use blocks_limit and blocks_page to paginate through long documents.\n- Set include_comments: true to fetch all comments and replies on the document. Each comment is enriched with anchor info (block_id, selection_from, selection_length) indicating which block and text range it\'s attached to. Use comments_limit to control how many comments per item (default 50).\n\nMODE: "version_history" — Fetch the edit history of a single document.\n- Requires: ids with the document\'s object_id (use the object_id field from content mode results, NOT the id field).\n- The object_id is the numeric ID visible in the document URL.\n- Returns restoring points sorted newest-first. Use version_history_limit to cap results (e.g., "last 3 changes" → version_history_limit: 3).\n- Use since/until to filter by time range. If omitted, returns full history.\n- Set include_diff: true to see what content changed between versions (fetches up to 10 diffs, may be slower).\n- Examples:\n - { mode: "version_history", ids: ["5001466606"], version_history_limit: 3 }\n - { mode: "version_history", ids: ["5001466606"], since: "2026-03-11T00:00:00Z", include_diff: true }'}getInputSchema(){return _u}async executeInternal(e){return e.mode===hu?this.executeVersionHistory(e):this.executeContent(e)}async executeContent(e){try{if(!e.type||!e.ids||0===e.ids.length)return{content:'Error: type and ids are required when mode is "content".'};let t,a,i;switch(this.sessionContext.metadata={...this.sessionContext.metadata,mode:e.mode??uu,include_comments:e.include_comments??!1,include_blocks:e.include_blocks??!1},e.type){case"ids":t=e.ids;break;case"object_ids":a=e.ids;break;case"workspace_ids":i=e.ids}const n=e.include_blocks??!1,o=n?{blocksLimit:e.blocks_limit,blocksPage:e.blocks_page}:{},r={ids:t,object_ids:a,limit:e.limit||25,order_by:e.order_by,page:e.page,workspace_ids:i,includeBlocks:n,...o};let s=await this.mondayApi.request(Vd,r);if((!s.docs||0===s.docs.length)&&t){const a={ids:void 0,object_ids:t,limit:e.limit||25,order_by:e.order_by,page:e.page,workspace_ids:i,includeBlocks:n,...o};s=await this.mondayApi.request(Vd,a)}if(!s.docs||0===s.docs.length){return{content:`No documents found matching the specified criteria${e.page?` (page ${e.page})`:""}.`}}const d=e.include_comments??!1,p=e.comments_limit??50;return this.sessionContext.metadata={...this.sessionContext.metadata,doc_ids:s.docs.flatMap((e=>e?[e.id]:[])),object_ids:s.docs.flatMap((e=>e?.object_id?[e.object_id]:[]))},this.enrichDocsWithMarkdown(s.docs,r,n,d,p,e.blocks_limit,e.blocks_page)}catch(e){return{content:`Error reading documents: ${e instanceof Error?e.message:"Unknown error occurred"}`}}}async executeVersionHistory(e){const{include_diff:t,since:a,until:i,version_history_limit:n}=e,o=e.ids?.[0];if(!o)return{content:'Error: ids is required when mode is "version_history". Provide the document object_id.'};this.sessionContext.metadata={...this.sessionContext.metadata,mode:hu,object_ids:[o]};try{const e={docId:o,since:a,until:i},r=await this.mondayApi.request(Md,e);let s=r?.doc_version_history?.restoring_points;if(!s||0===s.length)return{content:`No version history found for document ${o}${a?` from ${a}`:""}.`};if(!t)return n&&(s=s.slice(0,n)),{content:{doc_id:o,since:a,until:i,restoring_points:s}};const d=Math.min(n??10,10),p=s.slice(0,d+1),l=s.length>d,c=(await Promise.allSettled(p.map((async(e,t)=>{if(t===p.length-1||!e.date)return e;const a=p[t+1];if(!a?.date)return e;const i={docId:o,date:e.date,prevDate:a.date},n=await this.mondayApi.request(zd,i);return{...e,diff:n?.doc_version_diff?.blocks??[]}}))).then((e=>e.map(((e,t)=>"fulfilled"===e.status?e.value:p[t]))))).slice(0,d);return{content:{doc_id:o,since:a,until:i,restoring_points:c,...l&&{truncated:!0,total_count:s.length}}}}catch(e){return{content:`Error fetching version history for document ${o}: ${e instanceof Error?e.message:"Unknown error"}`}}}buildCommentAnchorMap(e){const t=new Map;for(const a of e){const e=a.content?.deltaFormat;if(!e||!Array.isArray(e))continue;let i=0;for(const n of e){const e=n.insert,o="string"==typeof e?e.length:1,r=n.attributes,s=r?.comments;if(s&&Array.isArray(s))for(const e of s){const n=String(e),r=t.get(n);if(r&&r.block_id===a.id){const e=Math.max(r.selection_from+r.selection_length,i+o);r.selection_length=e-r.selection_from}else r||t.set(n,{block_id:a.id,selection_from:i,selection_length:o})}i+=o}}return t}async fetchDocComments(e,t,a){try{const i={boardId:e,itemsLimit:100,updatesLimit:a},[n,o]=await Promise.all([this.mondayApi.request(Bd,i),this.mondayApi.request(lu,{docId:[t]}).catch((()=>null))]),r=n.boards?.[0]?.items_page?.items;if(!r)return[];let s=new Map;if(o){const e=(o.docs?.[0]?.blocks??[]).filter((e=>null!=e)).map((e=>{let t;if("string"==typeof e.content)try{t=JSON.parse(e.content)}catch{t={}}else t=e.content??{};return{id:e.id??"",type:e.type??"",content:t}}));s=this.buildCommentAnchorMap(e)}const d=[];for(const e of r)if(e.updates&&0!==e.updates.length)for(const t of e.updates)d.push({id:t.id,text_body:t.text_body,body:t.body,created_at:t.created_at,creator:t.creator?{id:t.creator.id,name:t.creator.name}:null,item_id:e.id,item_name:e.name,anchor:s.get(t.id)??null,replies:(t.replies??[]).map((e=>({id:e.id,text_body:e.text_body,body:e.body,created_at:e.created_at,creator:e.creator?{id:e.creator.id,name:e.creator.name}:null})))});return d}catch(e){return`Error fetching comments: ${e instanceof Error?e.message:"Unknown error"}`}}async enrichDocsWithMarkdown(e,t,a,i=!1,n=50,o,r){const s=await Promise.all(e.filter((e=>null!==e)).map((async e=>{let t,s="";try{const t={docId:e.id},a=await this.mondayApi.request(ip,t);s=a.export_markdown_from_doc.success&&a.export_markdown_from_doc.markdown?a.export_markdown_from_doc.markdown:`Error getting markdown: ${a.export_markdown_from_doc.error||"Unknown error"}`}catch(e){s=`Error getting markdown: ${e instanceof Error?e.message:"Unknown error"}`}return i&&e.object_id&&(t=await this.fetchDocComments(e.object_id,e.id,n)),{id:e.id,object_id:e.object_id,name:e.name,doc_kind:e.doc_kind,created_at:e.created_at,created_by:e.created_by?.name||"Unknown",url:e.url,relative_url:e.relative_url,workspace:e.workspace?.name||"Unknown",workspace_id:e.workspace_id,doc_folder_id:e.doc_folder_id,settings:e.settings,...a&&{blocks:(e.blocks??[]).filter((e=>null!=e)).map((e=>({id:e.id,type:e.type,parent_block_id:e.parent_block_id,position:e.position,content:e.content}))),...void 0!==o||void 0!==r?{blocks_pagination:{current_page:r??1,limit:o??25,count:(e.blocks??[]).filter((e=>null!=e)).length,has_more_pages:(e.blocks??[]).length===(o??25)}}:{}},blocks_as_markdown:s,...i&&{comments:t}}}))),d=t.page||1,p=t.limit||25,l=s.length,c=l===p;return{content:{message:`Documents retrieved (${s.length})`,pagination:{current_page:d,limit:p,count:l,has_more_pages:c},data:s}}}},class extends me{constructor(){super(...arguments),this.name="workspace_info",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Workspace Information",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"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."}getInputSchema(){return gu}async executeInternal(e){const t={workspace_id:e.workspace_id},a=await this.mondayApi.request(np,t);if(!a.workspaces||0===a.workspaces.length)return{content:`No workspace found with ID ${e.workspace_id}`};const i=function(e,t){const{workspaces:a,boards:i,docs:n,folders:o}=e,r=a?.[0];if(!r)throw new Error("No workspace found");const s=new Map((o||[]).filter((e=>null!=e&&null!=e.id&&null!=e.name)).map((e=>[e.id,{id:e.id,name:e.name,boards:[],docs:[]}]))),d=[];(i||[]).filter((e=>null!=e&&null!=e.id&&null!=e.name)).forEach((e=>{const t={id:e.id,name:e.name};e.board_folder_id&&s.has(e.board_folder_id)?s.get(e.board_folder_id).boards.push(t):d.push(t)}));const p=[];return(n||[]).filter((e=>null!=e&&null!=e.id&&null!=e.name)).forEach((e=>{const t={id:e.id,name:e.name};e.doc_folder_id&&s.has(e.doc_folder_id)?s.get(e.doc_folder_id).docs.push(t):p.push(t)})),{workspace:{id:r.id,name:r.name,url:t?eu(t,r.id):void 0,description:r.description||"",kind:r.kind||"",created_at:r.created_at||"",state:r.state||"",is_default_workspace:r.is_default_workspace||!1,owners_subscribers:(r.owners_subscribers||[]).filter((e=>null!=e&&null!=e.id&&null!=e.name&&null!=e.email)).map((e=>({id:e.id,name:e.name,email:e.email})))},folders:Array.from(s.values()),root_items:{boards:d,docs:p}}}(a,await Zm(this.mondayApi));return{content:{message:"Workspace info retrieved",data:i}}}},class extends me{constructor(){super(...arguments),this.name="list_workspaces",this.type=exports.ToolType.READ,this.annotations=ce({title:"List Workspaces",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'List all workspaces available to the user, ordered by membership (user\'s workspaces first). Returns workspaces with their ID, name, and description.\n[IMPORTANT] To search for workspaces by name, use the "search" tool with searchType WORKSPACES instead — it provides faster and more accurate results.'}getInputSchema(){return Iu}async executeInternal(e){const t=t=>({limit:e.limit,page:e.page,membershipKind:t}),a=vu(await this.mondayApi.request(bu,t(fs.Member)));let i=a;if(!yu(a)){i=vu(await this.mondayApi.request(bu,t(fs.All)))}if(!yu(i))return{content:{message:"No workspaces found.",data:[]}};const n=i.length===e.limit,o=await Zm(this.mondayApi),r=i.map((e=>({id:e.id,name:e.name,description:e.description||void 0,url:o&&e.id?eu(o,e.id):void 0})));return{content:{message:"Workspaces retrieved",...n?{next_page:e.page+1}:{},data:r}}}},class extends me{constructor(){super(...arguments),this.name="create_doc",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Document",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'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.\n\nLOCATION TYPES:\n- workspace: Creates a document in a workspace (requires workspace_id, optional doc_kind, optional folder_id, optional docOwnerIds)\n- item: Creates a document attached to an item (requires item_id, optional column_id, optional docOwnerIds)\n\nUSAGE EXAMPLES:\n- Workspace doc: { location: "workspace", workspace_id: 123, doc_name: "My Doc", doc_kind: "private" , markdown: "..." }\n- Workspace doc in folder: { location: "workspace", workspace_id: 123, doc_name: "My Doc", folder_id: 17264196 , markdown: "..." }\n- Item doc: { location: "item", item_id: 456, doc_name: "My Doc", column_id: "doc_col_1" , markdown: "..." }\n- Workspace doc with agent owner: { location: "workspace", workspace_id: 123, doc_name: "My Doc", markdown: "...", docOwnerIds: ["<agent_owner_user_id>"] }'}getInputSchema(){return Du}async executeInternal(e){const t=Nu.safeParse({...e,type:e.location});if(!t.success)return{content:`Required parameters were not provided for location parameter of ${e.location}`};const a=t.data;try{let t,i,n;if(a.type===Su.enum.workspace){const o={location:{workspace:{workspace_id:a.workspace_id.toString(),name:e.doc_name,kind:a.doc_kind||Wn.Public,folder_id:a.folder_id?.toString()}},...void 0!==e.docOwnerIds?{docOwnerIds:e.docOwnerIds}:{}},r=await this.mondayApi.request(Tu,o);t=r?.create_doc?.id??void 0,i=r?.create_doc?.object_id??void 0,n=r?.create_doc?.url??void 0}else if(a.type===Su.enum.item){const o={itemId:a.item_id.toString()},r=await this.mondayApi.request(wu,o),s=r.items?.[0];if(!s)return{content:`Error: Item with id ${a.item_id} not found.`};const d=s.board?.id,p=s.board?.columns?.find((e=>e&&e.type===Rc.Doc));let l=a.column_id;if(!l)if(p)l=p.id;else{const e={boardId:d.toString(),columnType:Rc.Doc,columnTitle:"Doc"},t=await this.mondayApi.request(Kd,e);if(l=t?.create_column?.id,!l)return{content:"Error: Failed to create doc column."}}const c={location:{board:{item_id:a.item_id.toString(),column_id:l}},...void 0!==e.docOwnerIds?{docOwnerIds:e.docOwnerIds}:{}},m=await this.mondayApi.request(Tu,c);if(t=m.create_doc?.id??void 0,i=m.create_doc?.object_id??void 0,n=m.create_doc?.url??void 0,e.doc_name&&t)try{const a={docId:t,name:e.doc_name};await this.mondayApi.request(Au,a)}catch(e){console.warn("Failed to update doc name:",e)}}if(!t)return{content:"Error: Failed to create document."};const o={docId:t,markdown:e.markdown},r=await this.mondayApi.request(Eu,o),s=r?.add_content_to_doc_from_markdown?.success,d=r?.add_content_to_doc_from_markdown?.error;return s?(this.sessionContext.metadata={...this.sessionContext.metadata,location:e.location,...t&&{doc_id:t},...i&&{object_id:i}},{content:{message:"Document successfully created",doc_id:t,object_id:i,doc_url:n,doc_name:e.doc_name}}):{content:`Document ${t} created, but failed to add markdown content: ${d||"Unknown error"}`}}catch(e){return{content:`Error creating document: ${e instanceof Error?e.message:"Unknown error"}`}}}},class extends me{constructor(){super(...arguments),this.name="add_content_to_doc",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Add Content to Document",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Add markdown content to an existing monday.com document.\n\nIDENTIFICATION: Provide either doc_id or object_id to identify the document:\n- doc_id: The document ID (the id field returned by read_docs). Takes priority if both provided.\n- object_id: The document object ID (the object_id field from read_docs, also visible in the document URL). Will be resolved to a doc_id.\n\nUSAGE EXAMPLES:\n- By doc_id: { doc_id: "123", markdown: "# New Section\\nContent here" }\n- By object_id: { object_id: "456", markdown: "# New Section\\nContent here" }\n- Insert after block: { doc_id: "123", markdown: "Inserted content", after_block_id: "block_789" }'}getInputSchema(){return Ru}async executeInternal(e){if(!e.doc_id&&!e.object_id)return{content:"Error: Either doc_id or object_id must be provided."};try{let t=null;if(e.doc_id){const a=await this.mondayApi.request(Cu,{docId:[e.doc_id]});t=a.docs?.[0]??null}else{const a=await this.mondayApi.request(ku,{objectId:[e.object_id]});t=a.docs?.[0]??null}if(!t){return{content:`Error: No document found for ${e.doc_id?`doc_id ${e.doc_id}`:`object_id ${e.object_id}`}.`}}this.sessionContext.metadata={...this.sessionContext.metadata,doc_id:t.id,...e.object_id&&{object_id:e.object_id}};const a={docId:t.id,markdown:e.markdown,afterBlockId:e.after_block_id},i=await this.mondayApi.request(Ou,a);if(!i?.add_content_to_doc_from_markdown)return{content:"Error: Failed to add content to document — no response from API."};const{success:n,block_ids:o,error:r}=i.add_content_to_doc_from_markdown;if(!n)return{content:`Error adding content to document: ${r||"Unknown error"}`};const s=o?.length??0;return{content:{message:`Successfully added content to document ${t.id}. ${s} block${1===s?"":"s"} created.`,doc_id:t.id,block_ids:o,doc_name:t.name,doc_url:t.url}}}catch(e){return{content:`Error adding content to document: ${e instanceof Error?e.message:"Unknown error"}`}}}},class extends me{constructor(){super(...arguments),this.name="update_doc",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Document",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return'Update an existing monday.com document. Provide doc_id (preferred) or object_id, plus an ordered operations array (executed sequentially, stops on first failure).\n\nOPERATIONS:\n- set_name: Rename the document.\n- add_markdown_content: Append markdown as blocks (or insert after a block). Best for text, headings, lists, simple tables — no block IDs needed.\n- update_block: Update content of an existing text, code, or list_item block in-place.\n- create_block: Create a new block at a precise position. Use parent_block_id to nest inside notice_box, table cell, or layout cell.\n- delete_block: Remove any block. The ONLY option for BOARD, WIDGET, DOC embed, and GIPHY blocks.\n- replace_block: Delete a block and create a new one in its place (use when update_block is not supported).\n- add_comment: Create a new comment or reply on the document (doc-level, block-level, or text-selection).\n\nWHEN TO USE EACH OPERATION:\n- text / code / list_item → update_block. Use replace_block to change subtype (e.g. NORMAL_TEXT→LARGE_TITLE)\n- divider / table / image / video / notice_box / layout → replace_block (properties immutable after creation)\n- BOARD / WIDGET / DOC / GIPHY → delete_block only\n\nGETTING BLOCK IDs: Call read_docs with include_blocks: true — returns id, type, position, and content per block.\n\nBLOCK CONTENT (delta_format): Array of insert ops. Last op MUST be {insert: {text: "\\n"}}.\n- Plain: [{insert: {text: "Hello"}}, {insert: {text: "\\n"}}]\n- Bold: [{insert: {text: "Hi"}, attributes: {bold: true}}, {insert: {text: "\\n"}}]\n- Mention user/doc/board: [{insert: {text: "Hey "}}, {insert: {mention: {id: 12345, type: "USER"}}}, {insert: {text: "\\n"}}] — type is USER, DOC, or BOARD. id is numeric (user IDs from list_users_and_teams)\n- Inline column value: [{insert: {column_value: {item_id: 111, column_id: "status"}}}, {insert: {text: "\\n"}}]\n- Supported attributes: bold, italic, underline, strike, code, link, color, background (not applicable to mention/column_value ops)\n\nIMAGE WITH ASSET: For asset-based images, use create_block with block_type "image" and asset_id (instead of public_url). add_markdown_content does NOT support asset images — for mixed content, alternate add_markdown_content (text) and create_block (image) operations in sequence.\n\nCOMMENTS:\n- add_comment: Create a new comment or reply on the document. Three scopes:\n - Doc-level (no block_id): comment appears on the doc as a whole.\n - Block-level (block_id only): comment is anchored to a specific block. The block shows a comment indicator in the UI.\n - Text-selection (block_id + selection_from + selection_length): comment is anchored to a specific character range inside a text/code/list_item block. That text is highlighted with a comment marker.\n Block-level and text-selection comments only work on blocks with text content (text, code, list_item, title, quote). They do NOT work on: divider, page_break, table, layout, notice_box, image, video, or giphy blocks.\n Get block IDs from read_docs with include_blocks: true. Format body with HTML, not markdown. Use mentions_list for @mentions.'}getInputSchema(){return uh}async executeInternal(e){if(!e.doc_id&&!e.object_id)return{content:"Error: Either doc_id or object_id must be provided."};this.sessionContext.metadata={...this.sessionContext.metadata,operation_types:e.operations?.map((e=>e.operation_type)),operation_count:e.operations?.length??0,...e.object_id&&{object_id:e.object_id}};try{let t=e.doc_id;if(!t){const a=await this.mondayApi.request(ou,{objectId:[e.object_id]}),i=a.docs?.[0];if(!i)return{content:`Error: No document found for object_id ${e.object_id}.`};t=i.id}const a=[];let i=null;for(let n=0;n<e.operations.length;n++){const o=e.operations[n];try{const i=await this.executeOperation(t,o,e.object_id);a.push(`- [OK] ${o.operation_type}${i?`: ${i}`:""}`)}catch(e){const t=e instanceof Error?e.message:"Unknown error";a.push(`- [FAILED] ${o.operation_type}: ${t}`),i=n;break}}const n=null!==i?i:e.operations.length,o=e.operations.length,r=`Completed ${n}/${o} operation${1===o?"":"s"} on doc ${t}.`;return this.sessionContext.metadata={...this.sessionContext.metadata,doc_id:t},{content:`${r}\n\nResults:\n${a.join("\n")}\n\nDoc ID: ${t}`}}catch(e){return{content:`Error: ${e instanceof Error?e.message:String(e)}`}}}async executeOperation(e,t,a){switch(t.operation_type){case"set_name":return this.executeSetName(e,t.name);case"add_markdown_content":return this.executeAddMarkdown(e,t.markdown,t.after_block_id);case"update_block":return this.executeUpdateBlock(t.block_id,t.content);case"create_block":return this.executeCreateBlock(e,t.block,t.after_block_id,t.parent_block_id);case"delete_block":return this.executeDeleteBlock(t.block_id);case"replace_block":return this.executeReplaceBlock(e,t.block_id,t.block,t.after_block_id,t.parent_block_id);case"add_comment":return this.executeAddComment(e,a,t.body,t.parent_update_id,t.mentions_list,t.block_id,t.selection_from,t.selection_length);default:{const e=t.operation_type;throw new Error(`Unsupported operation type: "${e}"`)}}}async executeSetName(e,t){const a={docId:e,name:t},i=await this.mondayApi.request(iu,a);if(!i?.update_doc_name)throw new Error(`No confirmation from update_doc_name — rename to "${t}" may not have applied`);return`Renamed to "${t}"`}async executeAddMarkdown(e,t,a){if(!t.trim())throw new Error("markdown must not be empty");const i={docId:e,markdown:t,afterBlockId:a},n=await this.mondayApi.request(nu,i),o=n?.add_content_to_doc_from_markdown;if(!o?.success)throw new Error(o?.error||"Failed to add markdown content");const r=o.block_ids?.length??0;return`${r} block${1===r?"":"s"} added${o.block_ids?.length?`. Block IDs: ${o.block_ids.join(", ")}`:""}`}async executeUpdateBlock(e,t){const a=function(e){switch(e.block_content_type){case"text":return{deltaFormat:Pu(e.delta_format),alignment:e.alignment,direction:e.direction};case"code":return{deltaFormat:Pu(e.delta_format),language:e.language};case"list_item":return{deltaFormat:Pu(e.delta_format),checked:e.checked,indentation:e.indentation};default:{const t=e.block_content_type;throw new Error(`Unsupported block_content_type: "${t}"`)}}}(t),i={blockId:e,content:JSON.stringify(a)},n=await this.mondayApi.request(ru,i);if(!n?.update_doc_block)throw new Error("No response from update_doc_block");return`Block ${e} updated`}async executeCreateBlock(e,t,a,i){const n=function(e){switch(e.block_type){case"text":return{text_block:{delta_format:Uu(e.delta_format),text_block_type:e.text_block_type?e.text_block_type:void 0,alignment:$u(e.alignment),direction:xu(e.direction)}};case"list_item":return{list_block:{delta_format:Uu(e.delta_format),list_block_type:e.list_block_type?e.list_block_type:void 0,indentation:e.indentation}};case"code":return{text_block:{delta_format:Uu(e.delta_format),text_block_type:Kr.Code}};case"divider":return{divider_block:{}};case"page_break":return{page_break_block:{}};case"image":if(null==e.asset_id&&!e.public_url)throw new Error("image block requires either asset_id or public_url");return{image_block:null!=e.asset_id?{asset_id:String(e.asset_id),width:e.width}:{public_url:e.public_url,width:e.width}};case"video":return{video_block:{raw_url:e.raw_url,width:e.width}};case"notice_box":return{notice_box_block:{theme:e.theme}};case"table":return{table_block:{row_count:e.row_count,column_count:e.column_count,width:e.width,column_style:e.column_style?.map((e=>({width:e.width})))}};case"layout":return{layout_block:{column_count:e.column_count,column_style:e.column_style?.map((e=>({width:e.width})))}};default:{const t=e.block_type;throw new Error(`Unsupported block_type: "${t}"`)}}}(t);if(i){const e=Object.keys(n);if(1!==e.length)throw new Error(`Cannot inject parent_block_id: expected exactly 1 key in block input, got: ${e.join(", ")}`);const t=e[0],a=n[t];if(!a||"object"!=typeof a)throw new Error(`Cannot inject parent_block_id into block type "${t}" — block value is not an object`);a.parent_block_id=i}const o={docId:e,afterBlockId:a,blocksInput:[n]},r=await this.mondayApi.request(mu,o),s=r?.create_doc_blocks;if(!s||0===s.length)throw new Error("No blocks returned from create_doc_blocks");return`Block created (ID: ${s.map((e=>e.id)).join(", ")})`}async executeDeleteBlock(e){const t={blockId:e},a=await this.mondayApi.request(su,t);if(!a?.delete_doc_block)throw new Error("No response from delete_doc_block");return`Block ${e} deleted`}async resolveObjectId(e,t){if(t)return t;const a=await this.mondayApi.request(du,{docId:[e]}),i=a.docs?.[0];if(!i?.object_id)throw new Error(`Could not resolve object_id for doc ${e}`);return i.object_id}async resolveDocItemId(e){const t=await this.mondayApi.request(pu,{boardId:e}),a=t.boards?.[0]?.items_page?.items?.[0]?.id;if(!a)throw new Error(`No item found on the document backing board (object_id: ${e})`);return a}async fetchAllBlockContent(e){const t=await this.mondayApi.request(lu,{docId:[e]});return(t.docs?.[0]?.blocks??[]).filter((e=>null!=e)).map((t=>{let a;if("string"==typeof t.content)try{a=JSON.parse(t.content)}catch{throw new Error(`Failed to parse content of block ${t.id} in doc ${e} as JSON`)}else a=t.content??{};return{id:t.id??"",type:t.type??"",content:a}}))}async executeAddComment(e,t,a,i,n,o,r,s){if((null!=r||null!=s)&&!o)throw new Error("selection_from and selection_length require block_id");if(null!=r!=(null!=s))throw new Error("selection_from and selection_length must both be provided together");const d=o?Array.isArray(o)?o:[o]:[];if((null!=r||null!=s)&&d.length>1)throw new Error("selection_from and selection_length are only supported with a single block_id");const p=await this.resolveObjectId(e,t),l=await this.resolveDocItemId(p);let c;if(n){const e=JSON.parse(n),t=Qc.safeParse(e);if(!t.success)throw new Error(`Invalid mentions_list format: ${t.error.message}`);c=t.data}const m={itemId:l,body:a,parentId:i?.toString(),mentionsList:c},u=await this.mondayApi.request(cu,m);if(!u.create_update?.id)throw new Error("Failed to create comment: no update returned");const h=u.create_update.id,f=Number(h),_=i?`Reply to update ${i}`:"Comment";if(d.length>0){if(Number.isNaN(f))throw new Error(`${_} created (update ID: ${h}) but block annotation aborted: comment ID is not numeric and cannot be used as a delta reference`);const t=await this.fetchAllBlockContent(e);for(const a of d){const i=t.find((e=>e.id===a));if(!i)throw new Error(`${_} created (update ID: ${h}) but block annotation failed: block ${a} not found in doc ${e}`);const n=i.content.deltaFormat;if(!n)throw new Error(`${_} created (update ID: ${h}) but block annotation failed: block ${a} has no deltaFormat — only text, code, and list_item blocks are supported`);let o=0;for(const e of n)o+="string"==typeof e.insert?e.insert.length:1;if(0===o)throw new Error(`${_} created (update ID: ${h}) but block annotation failed: block ${a} has an empty deltaFormat and cannot be annotated`);const d=r??0,p=s??o;if(d+p>o)throw new Error(`${_} created (update ID: ${h}) but block annotation failed: selection [${d}, ${d+p}) is out of range for block ${a} (total length ${o})`);let l;try{l=Vu(n,f,d,p)}catch(e){const t=e instanceof Error?e.message:String(e);throw new Error(`${_} created (update ID: ${h}) but delta annotation failed for block ${a}: ${t}`)}const c={...i.content,deltaFormat:l},m=await this.mondayApi.request(ru,{blockId:a,content:JSON.stringify(c)});if(!m?.update_doc_block)throw new Error(`${_} created (update ID: ${h}) but block annotation write returned no confirmation for block ${a}`)}}const g=d.length;return`${_} created${g>1?` across ${g} blocks`:1===g?" on block":""} (update ID: ${h})`}async executeReplaceBlock(e,t,a,i,n){await this.executeDeleteBlock(t);try{return`Block ${t} replaced. ${await this.executeCreateBlock(e,a,i,n)}`}catch(e){const a=e instanceof Error?e.message:String(e);throw new Error(`Original block ${t} was deleted, but replacement creation failed: ${a}. The original block is gone.`)}}},class extends me{constructor(){super(...arguments),this.name="update_workspace",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Workspace",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Update an existing workspace in monday.com"}getInputSchema(){return yh}async executeInternal(e){const t={id:e.id,attributes:{account_product_id:e.attributeAccountProductId,description:e.attributeDescription,kind:e.attributeKind,name:e.attributeName}},a=await this.mondayApi.request(vh,t),i=await Zm(this.mondayApi),n=i?eu(i,a.update_workspace?.id):void 0;return{content:{message:`Workspace ${a.update_workspace?.id} updated`,workspace_id:a.update_workspace?.id,workspace_name:a.update_workspace?.name,workspace_url:n}}}},class extends me{constructor(){super(...arguments),this.name="update_folder",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Folder",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Update an existing folder in monday.com"}getInputSchema(){return wh}async executeInternal(e){const{position_object_id:t,position_object_type:a,position_is_after:i}=e;if(!!t!=!!a)throw new Error("position_object_id and position_object_type must be provided together");const n={folderId:e.folderId,name:e.name,color:e.color,fontWeight:e.fontWeight,customIcon:e.customIcon,parentFolderId:e.parentFolderId,workspaceId:e.workspaceId,accountProductId:e.accountProductId,position:t?{position_is_after:i,position_object_id:t,position_object_type:a}:void 0},o=await this.mondayApi.request(Ih,n);return{content:{message:`Folder ${o.update_folder?.id} updated`,folder_id:o.update_folder?.id,folder_name:o.update_folder?.name}}}},class extends me{constructor(){super(...arguments),this.name="create_workspace",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Workspace",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new workspace in monday.com"}getInputSchema(){return Eh}async executeInternal(e){const t={name:e.name,workspaceKind:e.workspaceKind,description:e.description,accountProductId:e.accountProductId},a=await this.mondayApi.request(Th,t),i=await Zm(this.mondayApi),n=i&&a.create_workspace?.id?eu(i,a.create_workspace.id):void 0;return{content:{message:`Workspace ${a.create_workspace?.id} successfully created`,workspace_id:a.create_workspace?.id,workspace_name:a.create_workspace?.name,workspace_url:n}}}},class extends me{constructor(){super(...arguments),this.name="create_folder",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Folder",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new folder in a monday.com workspace"}getInputSchema(){return Sh}async executeInternal(e){const t={workspaceId:e.workspaceId,name:e.name,color:e.color,fontWeight:e.fontWeight,customIcon:e.customIcon,parentFolderId:e.parentFolderId},a=await this.mondayApi.request(Ah,t);return{content:{message:`Folder ${a.create_folder?.id} successfully created`,folder_id:a.create_folder?.id,folder_name:a.create_folder?.name}}}},class extends me{constructor(){super(...arguments),this.name="move_object",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Move Object",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Move a folder, board, or overview in monday.com. Use position for relative placement based on another object, parentFolderId for folder changes, workspaceId for workspace moves, and accountProductId for account product changes."}getInputSchema(){return Oh}async executeUpdateFolder(e){const{id:t,position_object_id:a,position_object_type:i,position_is_after:n,parentFolderId:o,workspaceId:r,accountProductId:s}=e;if(!!a!=!!i)throw new Error("position_object_id and position_object_type must be provided together");const d={folderId:t,position:a?{position_is_after:n,position_object_id:a,position_object_type:i}:void 0,parentFolderId:o,workspaceId:r,accountProductId:s},p=await this.mondayApi.request(Ih,d);return{content:{message:"Object moved",object_id:p.update_folder?.id}}}async executeUpdateBoardHierarchy(e){const{id:t,position_object_id:a,position_object_type:i,position_is_after:n,parentFolderId:o,workspaceId:r,accountProductId:s}=e;if(!!a!=!!i)throw new Error("position_object_id and position_object_type must be provided together");const d={boardId:t,attributes:{position:a?{position_is_after:n,position_object_id:a,position_object_type:i}:void 0,folder_id:o,workspace_id:r,account_product_id:s}},p=await this.mondayApi.request(Nh,d);return p.update_board_hierarchy?.success?{content:{message:"Board position updated",object_id:p.update_board_hierarchy?.board?.id,action_name:"move_board"}}:{content:`Board position update failed: ${p.update_board_hierarchy?.message}`}}async executeUpdateOverviewHierarchy(e){const{id:t,position_object_id:a,position_object_type:i,position_is_after:n,parentFolderId:o,workspaceId:r,accountProductId:s}=e;if(!!a!=!!i)throw new Error("position_object_id and position_object_type must be provided together");const d={overviewId:t,attributes:{position:a?{position_is_after:n,position_object_id:a,position_object_type:i}:void 0,folder_id:o,workspace_id:r,account_product_id:s}},p=await this.mondayApi.request(Dh,d);return p.update_overview_hierarchy?.success?{content:{message:"Overview position updated",object_id:p.update_overview_hierarchy?.overview?.id}}:{content:`Overview position update failed: ${p.update_overview_hierarchy?.message}`}}async executeInternal(e){const{objectType:t}=e;switch(t){case wr.Folder:return this.executeUpdateFolder(e);case wr.Board:return this.executeUpdateBoardHierarchy(e);case wr.Overview:return this.executeUpdateOverviewHierarchy(e);default:throw new Error(`Unsupported object type: ${t}`)}}},class extends me{constructor(){super(...arguments),this.name="create_dashboard",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Dashboard",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Use this tool to create a new monday.com dashboard that aggregates data from one or more boards. \n Dashboards provide visual representations of board data through widgets and charts.\n \n Use this tool when users want to:\n - Create a dashboard to visualize board data\n - Aggregate information from multiple boards\n - Set up a data visualization container for widgets"}getInputSchema(){return gh}async executeInternal(e){try{const t={name:e.name,workspace_id:e.workspace_id.toString(),board_ids:e.board_ids,kind:e.kind,board_folder_id:e.board_folder_id?.toString()},a=await this.mondayApi.request(hh,t);if(!a.create_dashboard)throw new Error("Failed to create dashboard");const i=a.create_dashboard;return{content:{message:`Dashboard ${i.id} successfully created`,dashboard_id:i.id,dashboard_name:i.name}}}catch(e){const t=e instanceof Error?e.message:String(e);throw new Error(`Failed to create dashboard: ${t}`)}}},class extends me{constructor(){super(...arguments),this.name="all_widgets_schema",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get All Widget Schemas",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Fetch complete JSON Schema 7 definitions for all available widget types in monday.com.\n \n This tool is essential before creating widgets as it provides:\n - Complete schema definitions for all supported widgets\n - Required and optional fields for each widget type\n - Data type specifications and validation rules\n - Detailed descriptions of widget capabilities\n \n Use this tool when you need to:\n - Understand widget configuration requirements before creating widgets\n - Validate widget settings against official schemas\n - Plan widget implementations with proper data structures\n \n The response includes JSON Schema 7 definitions that describe exactly what settings each widget type accepts."}getInputSchema(){return{}}async executeInternal(){try{const e={},t=await this.mondayApi.request(fh,e);if(!t.all_widgets_schema||0===t.all_widgets_schema.length)throw new Error("No widget schemas found - API returned empty response");const a={};let i=0;for(const e of t.all_widgets_schema)if(e?.widget_type&&e?.schema){const t="string"==typeof e.schema?JSON.parse(e.schema):e.schema,n=t?.description||t?.title||`${e.widget_type} widget for data visualization`;a[e.widget_type]={type:e.widget_type,description:n,schema:e.schema},i++}if(0===i)throw new Error("No valid widget schemas found in API response");Object.keys(a).map((e=>`• **${e}**: ${a[e].description}`)).join("\n");return{content:{message:"Widgets schema",data:a,url:Am}}}catch(e){const t=e instanceof Error?e.message:String(e);throw new Error(`Failed to fetch widget schemas: ${t}`)}}},class extends me{constructor(){super(...arguments),this.name="create_widget",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Widget",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new widget in a dashboard or board view with specific configuration settings.\n \n This tool creates data visualization widgets that display information from monday.com boards:\n **Parent Containers:**\n - **DASHBOARD**: Place widget in a dashboard (most common use case)\n - **BOARD_VIEW**: Place widget in a specific board view\n \n **Critical Requirements:**\n 1. **Schema Compliance**: Widget settings MUST conform to the JSON schema for the specific widget type\n 2. **Use all_widgets_schema first**: Always fetch widget schemas before creating widgets\n 3. **Validate settings**: Ensure all required fields are provided and data types match\n \n **Workflow:**\n 1. Use 'all_widgets_schema' to get schema definitions\n 2. Prepare widget settings according to the schema\n 3. Use this tool to create the widget"}getInputSchema(){return bh}async executeInternal(e){if(!e.settings)throw new Error("You must pass the settings parameter");try{const t={parent:{kind:e.parent_container_type,id:e.parent_container_id.toString()},kind:e.widget_kind,name:e.widget_name,settings:e.settings},a=await this.mondayApi.request(_h,t);if(!a.create_widget)throw new Error("Failed to create widget");const i=a.create_widget;i.parent?.kind===us.Dashboard?i.parent.id:i.parent;return{content:{message:`Widget ${i.id} created`,widget_id:i.id,widget_name:i.name,dashboard_id:i.parent?.id}}}catch(t){const a=t instanceof Error?t.message:String(t);throw new Error(`Failed to create ${e.widget_kind} widget: ${a}`)}}},class extends me{constructor(){super(...arguments),this.name="board_insights",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Insights",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"This tool allows you to calculate insights about board's data by filtering, grouping and aggregating columns. For example, you can get the total number of items in a board, the number of items in each status, the number of items in each column, etc. Use this tool when you need to get a summary of the board's data, for example, you want to know the total number of items in a board, the number of items in each status, the number of items in each column, etc.[REQUIRED PRECONDITION]: Before using this tool, if new columns were added to the board or if you are not familiar with the board's structure (column IDs, column types, status labels, etc.), first use get_board_info to understand the board metadata. This is essential for constructing proper filters and knowing which columns are available.[IMPORTANT]: For some columns, human-friendly label is returned inside 'LABEL_<column_id' field. E.g. for column with id 'status_123' the label is returned inside 'LABEL_status_123' field."}getInputSchema(){return Lh}async executeInternal(e){if(!e.aggregations)return{content:'Input must contain the "aggregations" field.'};const{selectElements:t,groupByElements:a}=function(e){const t={},a=e.groupBy?.map((e=>({column_id:e})))||[],i=new Set(e.aggregations.filter((e=>e.function===In.Label)).map((e=>e.columnId))),n=e.groupBy?.filter((e=>!i.has(e))).map((e=>({function:In.Label,columnId:e})))??[],o=e.aggregations.concat(n).map((e=>{if(e.function){const o=`${e.function}_${e.columnId}`,r=t[o]||0;t[o]=r+1;const s=`${o}_${r}`;return $h.has(e.function)&&(a.some((e=>e.column_id===s))||a.push({column_id:s})),{type:yn.Function,function:(i=e.function,n=e.columnId,{function:i,params:i===In.CountItems?[]:[{type:yn.Column,column:xh(n),as:n}]}),as:s}}var i,n;const o={type:yn.Column,column:xh(e.columnId),as:e.columnId};return a.some((t=>t.column_id===e.columnId))||a.push({column_id:e.columnId}),o}));return a.forEach((e=>{o.some((t=>t.as===e.column_id))||o.push({type:yn.Column,column:xh(e.column_id),as:e.column_id})})),{selectElements:o,groupByElements:a}}(e),i=function(e){if(!e.filters&&!e.orderBy)return;const t={};return e.filters&&(t.rules=e.filters.map((e=>({column_id:e.columnId,compare_value:e.compareValue,operator:e.operator,compare_attribute:e.compareAttribute}))),t.operator=e.filtersOperator),e.orderBy&&(t.order_by=function(e){return e.orderBy?.map((e=>({column_id:e.columnId,direction:e.direction})))}(e)),t}(e),n=function(e){return{id:e.boardId.toString(),type:vn.Table}}(e),o={query:{from:n,query:i,select:t,group_by:a,limit:e.limit},boardId:String(e.boardId)},r=await this.mondayApi.request(kh,o),s=(r.aggregate?.results??[]).map((e=>{const t={};return(e.entries??[]).forEach((e=>{const a=e.alias??"";if(!a)return;const i=e.value;if(!i)return void(t[a]=null);const n=i.result??i.value??null;t[a]=n})),t}));return s.length?{content:{message:"Board insights retrieved",board_name:r.boards?.[0]?.name,board_url:r.boards?.[0]?.url,data:s}}:{content:"No board insights found for the given query."}}},class extends me{constructor(){super(...arguments),this.name="search",this.type=exports.ToolType.READ,this.annotations=ce({title:"Search",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Search within monday.com platform. Supported searchType values: BOARD, DOCUMENTS, FOLDERS, WORKSPACES, UPDATES, ITEMS, TIMELINE_ITEMS.\nFor searching/listing specific users and teams, use list_users_and_teams tool.\nFor account-level info (plan, member count, products), use get_user_context tool.\nFor browsing all boards, docs, or folders within a workspace without a search term, use workspace_info tool.\nFor groups, use get_board_info tool.\nITEMS search returns id, title, and url.\nWORKSPACES search returns id, title, and description.\nUPDATES search returns id, title (the update body), itemId, boardId, and creatorId. Optionally scope it with boardIds and/or creatorIds.\nTIMELINE_ITEMS search returns id, title, summary, and content.\nFOLDERS search requires workspaceIds and returns id and title.\n "}getInputSchema(){return Gh}async executeInternal(e){try{if(e.searchType===qh.FOLDERS){return{content:{message:"Search results",data:await this.searchFoldersAsync(e)}}}return{content:{message:"Search results",data:await this.runSmartSearchAsync(e)}}}catch(e){throw dp(e),e}}async runSmartSearchAsync(e){const t=e.workspaceIds?.map((e=>e.toString()));if(e.searchType===qh.BOARD)return this.searchBoardsAsync(e.searchTerm,e.limit,t);if(e.searchType===qh.DOCUMENTS)return this.searchDocsAsync(e.searchTerm,e.limit,t);if(e.searchType===qh.WORKSPACES)return this.searchWorkspacesAsync(e.searchTerm,e.limit);if(e.searchType===qh.UPDATES){const t=e.boardIds?.map((e=>e.toString())),a=e.creatorIds?.map((e=>e.toString()));return this.searchUpdatesAsync(e.searchTerm,e.limit,t,a)}if(e.searchType===qh.ITEMS)return this.searchItemsAsync(e.searchTerm,e.limit,t);if(e.searchType===qh.TIMELINE_ITEMS)return this.searchTimelineItemsAsync(e.searchTerm,e.limit);throw new Error(`Unsupported search type for smart search: ${e.searchType}`)}async searchBoardsAsync(e,t,a){const i={query:e,limit:t,workspaceIds:a};return(await this.mondayApi.request(Fh,i,{timeout:wc})).search.boards.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.name,url:e.indexed_data.url})))}async searchDocsAsync(e,t,a){const i={query:e,limit:t,workspaceIds:a};return(await this.mondayApi.request(Vh,i,{timeout:wc})).search.docs.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.name})))}async searchWorkspacesAsync(e,t){const a={query:e,limit:t};return(await this.mondayApi.request(Mh,a,{timeout:wc})).search.workspaces.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.name,description:e.indexed_data.description||void 0})))}async searchUpdatesAsync(e,t,a,i){const n={query:e,limit:t,boardIds:a,creatorIds:i};return(await this.mondayApi.request(Bh,n,{timeout:wc})).search.updates.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.body,itemId:e.indexed_data.item_id,boardId:e.indexed_data.board_id,creatorId:e.indexed_data.creator_id})))}async searchItemsAsync(e,t,a){const i={query:e,limit:t,workspaceIds:a};return(await this.mondayApi.request(Ph,i,{timeout:wc})).search.items.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.name,url:e.indexed_data.url})))}async searchTimelineItemsAsync(e,t){const a={query:e,limit:t};return(await this.mondayApi.request(zh,a,{timeout:wc})).search.timeline_items.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.title,summary:e.indexed_data.summary||void 0,content:e.indexed_data.content||void 0})))}async searchFoldersAsync(e){const t=e.workspaceIds?.map((e=>e.toString()))??[];0===t.length&&sp(new Error("Searching for folders require specifying workspace ids"),"search folders");const a={page:1,limit:100,workspace_ids:t},i=(await this.mondayApi.request(Uh,a)).folders||[],n=jh(e.searchTerm);return i.filter((e=>e?.name&&jh(e.name).includes(n))).filter((e=>e?.id)).slice(0,e.limit).map((e=>({id:e.id,title:e.name})))}},class extends me{constructor(){super(...arguments),this.name="get_user_context",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get User Context",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Fetch current user information, account information, and their relevant items (boards, folders, workspaces, dashboards).\n\n Use this tool to:\n - Get context about who the current user is (id, name, title)\n - Get account info: plan tier, active member count, trial status, and active products\n - Get the number of active members in the account (returns active_members_count)\n - Discover user's favorite boards, folders, workspaces, and dashboards\n - Get user's most relevant boards based on visit frequency and recency\n - Get user's most relevant people based on interaction frequency and recency\n - Reduce the need for search requests by knowing user's commonly accessed items\n "}getInputSchema(){}async executeInternal(){const{me:e,favorites:t,intelligence:a}=await this.mondayApi.request(ef,{},{versionOverride:"dev"});if(!e)return{content:"AUTHENTICATION_ERROR: Unable to fetch current user. Verify API token and user permissions."};const i=await this.fetchFavorites(t||[]),n=this.extractRelevantBoards(a),o=this.extractRelevantPeople(a),{account:r,...s}=e;return{content:{message:"User context",...{user:s,account:r?{tier:r.tier,active_members_count:r.active_members_count,is_during_trial:r.is_during_trial,products:r.products?.filter(Boolean).map((e=>({kind:e.kind,tier:e.tier})))??[]}:null,favorites:i,relevantBoards:n,relevantPeople:o}}}}async fetchFavorites(e){const t=this.groupByType(e),a=Object.keys(t);if(0===a.length)return[];const i={};for(const e of a)i[af[e]]=t[e];const n=await this.mondayApi.request(tf,i),o=[];for(const e of a){const t=nf[e];for(const a of n[t]??[])a?.id&&o.push({id:a.id,name:a.name,type:e})}return o}extractRelevantBoards(e){if(!e?.relevant_boards)return[];const t=[];for(const a of e.relevant_boards)a?.id&&a?.board?.name&&t.push({id:a.id,name:a.board.name});return t}extractRelevantPeople(e){if(!e?.relevant_people)return[];const t=[];for(const a of e.relevant_people)a?.id&&a?.user?.name&&t.push({id:a.id,name:a.user.name});return t}groupByType(e){const t={};for(const a of e){const e=a?.object;e?.id&&e?.type&&(t[e.type]??=[]).push(e.id)}return t}},class extends me{constructor(){super(...arguments),this.name="update_assets_on_item",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Assets On Item",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Update a file or doc column value on an item using existing assets, docs, or links. Sets the column to the provided list of files, adding new ones and removing any not in the list."}getInputSchema(){return Jh}async executeInternal(e){const t={boardId:e.boardId,itemId:e.itemId,columnId:e.columnId,files:e.files},a=await this.mondayApi.request(Kh,t);return{content:`Item ${a.update_assets_on_item?.id} (${a.update_assets_on_item?.name}) assets successfully updated`}}},class extends me{constructor(){super(...arguments),this.name="get_assets",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Assets",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get assets (files) by their IDs. Returns file metadata including name, extension, size, public URL (valid for 1 hour), thumbnail URL, upload date, and who uploaded it."}getInputSchema(){return Zh}async executeInternal(e){const t=await this.mondayApi.request(Xh,{ids:e.ids}),a=t.assets?.filter(Boolean);if(!a||0===a.length)return{content:`No assets found for the provided IDs: ${e.ids.join(", ")}`};return{content:{results:a.map((e=>({id:e.id,name:e.name,file_extension:e.file_extension,file_size:e.file_size,public_url:e.public_url,url:e.url,url_thumbnail:e.url_thumbnail??null,created_at:e.created_at??null,original_geometry:e.original_geometry??null,uploaded_by:e.uploaded_by})))}}}},class extends me{constructor(){super(...arguments),this.name="get_notetaker_meetings",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Notetaker Meetings",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Retrieve notetaker meetings with optional detailed fields. Use include_summary, include_topics, include_action_items, and include_transcript flags to control which details are returned. Use access to filter by meeting access level (OWN, SHARED_WITH_ME, SHARED_WITH_ACCOUNT, ALL). Defaults to OWN. Supports filtering by ids, search term, and cursor-based pagination."}getInputSchema(){return rf}async executeInternal(e){const t={access:e.access};e.ids&&e.ids.length>0&&(t.ids=e.ids),e.search&&(t.search=e.search);const a={limit:e.limit,cursor:e.cursor||void 0,filters:t,includeSummary:e.include_summary,includeTopics:e.include_topics,includeActionItems:e.include_action_items,includeTranscript:e.include_transcript},i=await this.mondayApi.request(of,a,{versionOverride:"2026-04"}),n=i.notetaker?.meetings;if(!n?.meetings||0===n.meetings.length)return{content:"No notetaker meetings found matching the specified criteria."};return{content:{message:"Meetings retrieved",data:{meetings:n.meetings,pagination:{has_next_page:n.page_info?.has_next_page??!1,cursor:n.page_info?.cursor??null,count:n.meetings.length}}}}}},class extends me{constructor(){super(...arguments),this.name="create_view",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create View",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Create a new board view (tab) with optional filters and sorting. This creates a saved view on a monday.com board that users can switch to.\n\nFilter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text\n\nExample filter for people column: { "rules": [{ "column_id": "people", "compare_value": ["person-12345"], "operator": "any_of" }] }\nExample filter for status column: { "rules": [{ "column_id": "status", "compare_value": [1], "operator": "any_of" }] }'}getInputSchema(){return Mp}async executeInternal(e){const t={boardId:e.boardId,type:e.type,name:e.name,filter:e.filter,sort:e.sort,settings:e.settings},a=await this.mondayApi.request(Vp,t);return a.create_view?{content:`View "${a.create_view.name}" (ID: ${a.create_view.id}, type: ${a.create_view.type}) successfully created`}:{content:"Failed to create view - no response from API"}}},class extends me{constructor(){super(...arguments),this.name="update_view",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update View",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Update an existing board view (tab) — change its name, filter rules, or sort order. Provide only the fields you want to change. Omitted fields are left unchanged.\n\nFilter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text\n\nExample filter for people column: { "rules": [{ "column_id": "people", "compare_value": ["person-12345"], "operator": "any_of" }] }\nExample filter for status column: { "rules": [{ "column_id": "status", "compare_value": [1], "operator": "any_of" }] }'}getInputSchema(){return zp}async executeInternal(e){const t={viewId:e.viewId,boardId:e.boardId,type:e.type,name:e.name,filter:e.filter,sort:e.sort,settings:e.settings},a=await this.mondayApi.request(Bp,t);return a.update_view?{content:`View "${a.update_view.name}" (ID: ${a.update_view.id}, type: ${a.update_view.type}) successfully updated`}:{content:"Failed to update view - no response from API"}}},class extends me{constructor(){super(...arguments),this.name="create_view_table",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Table View",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Create a new table-type board view with optional filters, sort, tags, and table-specific settings (column visibility/order and group-by). Use this instead of create_view when you need to configure table-specific settings. For a simple table view, create_view also works.\n\nFilter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text\n\nExample settings.columns: { "column_properties": [{ "column_id": "status", "visible": true }], "column_order": ["name", "status", "date"] }\nExample settings.group_by: { "conditions": [{ "columnId": "status" }], "hideEmptyGroups": true }'}getInputSchema(){return Hp}async executeInternal(e){const t={boardId:e.boardId,name:e.name,filter:e.filter,sort:e.sort,tags:e.tags,settings:e.settings},a=await this.mondayApi.request(jp,t);return a.create_view_table?{content:`Table view "${a.create_view_table.name}" (ID: ${a.create_view_table.id}, type: ${a.create_view_table.type}) successfully created`}:{content:"Failed to create table view - no response from API"}}},class extends me{constructor(){super(...arguments),this.name="update_view_table",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Table View",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Update an existing table-type board view — change its name, filters, sort, tags, or table-specific settings (column visibility/order and group-by). Provide only the fields you want to change. Omitted fields are left unchanged.\n\nFilter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text\n\nExample settings.columns: { "column_properties": [{ "column_id": "status", "visible": true }], "column_order": ["name", "status", "date"] }\nExample settings.group_by: { "conditions": [{ "columnId": "status" }], "hideEmptyGroups": true }'}getInputSchema(){return Qp}async executeInternal(e){const t={viewId:e.viewId,boardId:e.boardId,name:e.name,filter:e.filter,sort:e.sort,tags:e.tags,settings:e.settings},a=await this.mondayApi.request(Wp,t);return a.update_view_table?{content:`Table view "${a.update_view_table.name}" (ID: ${a.update_view_table.id}, type: ${a.update_view_table.type}) successfully updated`}:{content:"Failed to update table view - no response from API"}}},class extends me{constructor(){super(...arguments),this.name="undo_action",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Undo Action",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Undo a previous action on a board using its action_record_uuid. Supports undoing column changes, deletes, archives, moves, duplicates, and more. Use get_board_activity with includeData=true to find the action_record_uuid."}getInputSchema(){return df}async executeInternal(e){return await this.mondayApi.request(sf,{boardId:e.boardId.toString(),undoRecordId:e.undoRecordId},{versionOverride:"dev"}),{content:`Successfully undid action "${e.undoRecordId}" on board ${e.boardId}.`}}},class extends me{constructor(){super(...arguments),this.name="get_object_schemas",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Object Schemas",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Retrieve account-level object schemas by their IDs or names. Schemas define the structure and columns of boards. Provide ids or names to filter specific schemas. Omit both to list all schemas (paginated)."}getInputSchema(){return fp}async executeInternal(e){const t={ids:e.ids,names:e.names,limit:e.limit,page:e.page,excludeCreatedByMonday:e.excludeCreatedByMonday},a=(await this.mondayApi.request(hp,t)).get_object_schemas??[];return{content:{message:`Retrieved ${a.length} object schema(s)`,schemas:a}}}},class extends me{constructor(){super(...arguments),this.name="create_object_schema",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Object Schema",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new account-level object schema. Schemas define the structure and columns of boards."}getInputSchema(){return gp}async executeInternal(e){const t={name:e.name,parentId:e.parentId,description:e.description},a=await this.mondayApi.request(_p,t);return{content:{message:`Object schema "${a.create_object_schema?.name}" successfully created`,schema_id:a.create_object_schema?.id,schema_name:a.create_object_schema?.name,revision:a.create_object_schema?.revision}}}},class extends me{constructor(){super(...arguments),this.name="update_object_schema",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Object Schema",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Update an account-level object schema. Requires the current revision number for optimistic locking — retrieve it first via get_object_schemas."}getInputSchema(){return vp}async executeInternal(e){const t={id:e.id,revision:e.revision,parentId:e.parentId,description:e.description},a=await this.mondayApi.request(bp,t);return{content:{message:`Object schema "${a.update_object_schema?.name}" successfully updated`,schema_id:a.update_object_schema?.id,schema_name:a.update_object_schema?.name,revision:a.update_object_schema?.revision}}}},class extends me{constructor(){super(...arguments),this.name="delete_object_schema",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Object Schema",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Delete an account-level object schema. Only allowed when no boards are connected to the schema. Provide either id or name."}getInputSchema(){return Ip}async executeInternal(e){if(!e.id&&!e.name)throw new Error("Either id or name must be provided");const t={id:e.id,name:e.name},a=await this.mondayApi.request(yp,t);return{content:{message:`Object schema "${a.delete_object_schema?.name}" successfully deleted`,schema_id:a.delete_object_schema?.id,schema_name:a.delete_object_schema?.name}}}},class extends me{constructor(){super(...arguments),this.name="delete_object_schema_columns",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Object Schema Columns",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Permanently delete columns from an account-level object schema. Only allowed when no boards are connected to the schema. Use manage_object_schema_column with action=deactivate for a reversible alternative."}getInputSchema(){return Tp}async executeInternal(e){if(!e.objectSchemaId&&!e.objectSchemaName)throw new Error("Either objectSchemaId or objectSchemaName must be provided");const t={objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName,columnIds:e.columnIds},a=await this.mondayApi.request(wp,t,{versionOverride:"dev"});return{content:{message:`${e.columnIds.length} column(s) successfully deleted from object schema "${a.delete_object_schema_columns?.name}"`,schema_id:a.delete_object_schema_columns?.id,schema_name:a.delete_object_schema_columns?.name,revision:a.delete_object_schema_columns?.revision}}}},class extends me{constructor(){super(...arguments),this.name="manage_object_schema_board_connection",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage Object Schema Board Connection",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Connect or detach a board from an account-level object schema. connect: attaches a board to an object schema so it inherits the schema column structure. detach: removes one or more boards from their object schema."}getInputSchema(){return Sp}async executeInternal(e){if("connect"===e.action){if(!e.boardId)throw new Error("boardId is required for action=connect");if(!e.objectSchemaId&&!e.objectSchemaName)throw new Error("Either objectSchemaId or objectSchemaName must be provided for action=connect");const t={boardId:e.boardId,objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName},a=await this.mondayApi.request(Ep,t);return{content:{message:"Board successfully connected to object schema",connection_id:a.connect_board_to_object_schema?.id,schema_id:a.connect_board_to_object_schema?.object_schema_id}}}{if(!e.boardIds?.length)throw new Error("boardIds is required for action=detach");const t={boardIds:e.boardIds},a=(await this.mondayApi.request(Ap,t)).detach_boards_from_object_schema??[],i=a.filter((e=>e.success)).length,n=a.filter((e=>!e.success));return{content:{message:`${i} board(s) successfully detached`,results:a,...n.length>0&&{failures:n}}}}}},class extends me{constructor(){super(...arguments),this.name="manage_object_schema_columns",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage Object Schema Columns",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return`Create or update columns on an account-level object schema. Column changes are propagated to all boards connected to the schema. create: adds new columns. Each column requires type and title. Call get_column_type_info with fetchMode "${Np.Schema}" first to understand valid defaults per column type. update: modifies existing columns. Each entry must include column_id. Only send the columns you want to modify — other columns are unaffected. Use opt_out_by_default=true to stop a column from being auto-added to boards (opt out), or opt_out_by_default=false to restore auto-adding (opt in).`}getInputSchema(){return $p}async executeInternal(e){if(!e.objectSchemaId&&!e.objectSchemaName)throw new Error("Either objectSchemaId or objectSchemaName must be provided");if("create"===e.action){const t=e.columns.map((e=>{const t=e;return{type:t.type,title:t.title,description:t.description,defaults:t.defaults,opt_out_by_default:t.opt_out_by_default,policy:{can_override:t.policy?.can_override??[],cannot_delete:t.policy?.cannot_delete??!1}}})),a={objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName,columns:t},i=await this.mondayApi.request(Dp,a);return{content:{message:`Columns successfully added to object schema "${i.create_object_schema_columns?.name}"`,schema_id:i.create_object_schema_columns?.id,schema_name:i.create_object_schema_columns?.name,revision:i.create_object_schema_columns?.revision}}}{const t={objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName,columns:e.columns.map((e=>{const t=e;return{column_id:t.column_id,title:t.title,description:t.description,defaults:t.defaults,opt_out_by_default:t.opt_out_by_default,policy:t.policy?{can_override:t.policy.can_override??[],cannot_delete:t.policy.cannot_delete??!1}:void 0}}))},a=await this.mondayApi.request(Op,t);return{content:{message:`Columns successfully updated on object schema "${a.update_object_schema_columns?.name}"`,schema_id:a.update_object_schema_columns?.id,schema_name:a.update_object_schema_columns?.name,revision:a.update_object_schema_columns?.revision}}}}},class extends me{constructor(){super(...arguments),this.name="set_object_schema_column_active_state",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Set Object Schema Column Active State",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Set the active state of a column on an account-level object schema. deactivate: soft-disables the column, preventing it from being used on new boards. The column is not deleted and can be restored. reactivate: restores a previously deactivated column, making it available again."}getInputSchema(){return Lp}async executeInternal(e){if(!e.objectSchemaId&&!e.objectSchemaName)throw new Error("Either objectSchemaId or objectSchemaName must be provided");const t={deactivate:go.Deactivate,reactivate:go.Reactivate},a={objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName,columnId:e.columnId,action:t[e.action]},i=await this.mondayApi.request(xp,a);return{content:{message:`Column successfully ${e.action}d on object schema "${i.set_object_schema_column_active_state?.name}"`,schema_id:i.set_object_schema_column_active_state?.id,schema_name:i.set_object_schema_column_active_state?.name,revision:i.set_object_schema_column_active_state?.revision}}}},class extends me{constructor(){super(...arguments),this.name="get_asset_upload_url",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Get Asset Upload URL",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Get a presigned URL to upload a file to monday.com. Returns an upload_id and upload_url.\n\nAfter calling this tool, upload the file to the returned URL using an HTTP PUT request and capture the ETag header from the response:\n\ncurl -i -X PUT "<upload_url>" \\\n -H "Content-Type: <the contentType you provided>" \\\n --data-binary @<local_file_path>\n\nThe response includes an ETag header (e.g. ETag: "abc123...") — save this value.\n\nThen call finalize_asset_upload with the upload_id, etag, board_id, item_id, and column_id to complete the upload and attach the file to an item\'s file column.\n\nMax file size: 500MB.'}getInputSchema(){return lf}async executeInternal(e){const t=(await this.mondayApi.request(pf,{input:{file_name:e.fileName,content_type:e.contentType,file_size:e.fileSize,source:"mcp",multipart:!1}},{versionOverride:"dev"})).create_upload,a=t.parts[0]?.url;if(!a)throw new Error("create_upload returned no upload URL — parts array was empty");return{content:{upload_id:t.upload_id,upload_url:a,url_expires_at:t.expires_at}}}},class extends me{constructor(){super(...arguments),this.name="finalize_asset_upload",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Finalize Asset Upload",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Finalize a file upload and create the asset on monday.com. Call this after uploading the file to the presigned URL from get_asset_upload_url. Requires the etag value from the PUT response headers. Automatically attaches the uploaded asset to the specified file column on the item. Returns the created asset_id."}getInputSchema(){return uf}async executeInternal(e){const t=(await this.mondayApi.request(cf,{input:{upload_id:e.uploadId,holder:{type:"ITEM",id:e.itemId},board_id:e.boardId,parts:[{part_number:1,etag:e.etag}]}},{versionOverride:"dev"})).complete_upload,a=JSON.stringify({added_file:{fileType:"ASSET",name:t.filename,assetId:String(t.id)}});return await this.mondayApi.request(mf,{boardId:e.boardId,itemId:e.itemId,columnId:e.columnId,value:a}),{content:{asset_id:t.id,filename:t.filename,content_type:t.content_type,file_size:t.file_size,url:t.url,filelink:t.filelink}}}},class extends me{constructor(){super(...arguments),this.name="link_board_items_workflow",this.type=exports.ToolType.READ,this.annotations=ce({title:"Link Board Items Workflow",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'When to use: any board-relation / cross-board linking task. **Hard gate — you MUST call this BEFORE get_board_items_page, or change_item_column_values in the same turn. No discovery, matching, or write happens first.** Triggers: **link** or **connect** items **across boards** (board-relation / "connect boards" / pairs) — also vague phrasings where only one side is named ("link this to **an** item on another board", "**the matching** row"). This tool is read-only (no API).'}getInputSchema(){return ff}async executeInternal(e){return{content:hf}}},class extends me{constructor(){super(...arguments),this.name="fetch_file_content",this.type=exports.ToolType.READ,this.annotations=ce({title:"Fetch File Content",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Fetch and extract the text content from a file stored in a monday.com files column.\n\nUse this tool when you need to read, summarize, or analyze the content of files attached to board items. Provide the item ID and column ID from the get_board_items_page response — the column value will be a URL like \"https://monday.com/protected_static/...\" indicating a file is present (null means no file).\n\nPROACTIVE USE: If you retrieve board items and notice a files column with a non-null value (a URL), consider fetching its content if it could help answer the user's question — don't wait to be explicitly asked.\n\nSupported file types and what is returned:\n- Text files (.txt, .md, .csv, .json): raw text content\n- Word documents (.docx): extracted text content\n- PDF files (.pdf): extracted text content\n- Excel files (.xlsx, .xls): extracted text content per sheet\n- Images (.png, .jpg, .gif, .webp, .svg, .bmp, .ico): returns the public URL so you can view or analyze the image directly\n\nText responses include a total_length field. If has_more is true, the content was truncated — you can call this tool again with next_offset if you need the remaining content.\n\nWhen to use:\n- User asks to summarize, read, or analyze the content of a file in a files column\n- User asks questions about what is inside a file (e.g., \"what does the PDF say?\")\n- User wants to extract data from a CSV or Excel file attached to a board item\n- A board item has a files column with a non-null value and the user's question may be answered by its content — even if the user didn't explicitly ask to read the file\n\nWhen NOT to use:\n- The files column value is null (no file uploaded for that item)"}getInputSchema(){return Af}async executeInternal(e){const{item_id:t,column_id:a,file_name:i,offset:n=0}=e,o=await this.mondayApi.request(_f,{itemId:[t],columnId:[a]}),r=o?.items?.[0]?.assets;if(!r||0===r.length)return{content:{message:`No file found for item ${t} in column ${a}. The column may be empty or the column ID may be incorrect.`}};return{content:{files:await Promise.all(r.map((e=>Df(e,n,i))))}}}},class extends me{constructor(){super(...arguments),this.name="manage_agent",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage monday Platform Agent",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return'Full lifecycle management for monday platform agents — create, read, update, delete, change state, and run.\n\nmonday platform agents are user-built work orchestrators on monday.com — each has a profile (name, role, avatar), a goal, and a markdown execution plan. Agents in state ACTIVE can be triggered automatically. They are NOT local LangChain or MCP agents.\n\nACTIONS (only pass fields that apply to the chosen action):\n- create: { action:"create", prompt, agent_model? } — AI-generated agent. Platform creates profile, goal, and plan from the prompt.\n- create_blank: { action:"create_blank", name?, role?, role_description?, avatar_url?, gender?, background_color?, user_prompt? } — manually defined agent.\n- get one: { action:"get", agent_id }\n- list owned: { action:"get" }\n- update: { action:"update", agent_id, name?, role?, role_description?, plan?, agent_model? }\n- delete: { action:"delete", agent_id }\n- activate: { action:"activate", agent_id }\n- deactivate: { action:"deactivate", agent_id }\n- run: { action:"run", agent_id }\n\nRULES:\n- "create_blank" with no fields creates a nameless blank agent — only do this intentionally.\n- "update" requires at least one of name/role/role_description/plan/agent_model.\n- "update", "delete", "activate", "deactivate", "run" all require "agent_id".\n- Created agents start INACTIVE. Follow with action:"activate" using the returned agent_id before they can be triggered.\n- ⚠️ DESTRUCTIVE — "delete" is permanent and irreversible. When the user refers to an agent by name, ALWAYS call action:"get" first to confirm the correct agent_id before deleting.\n- "run" is fire-and-forget. Returns trigger_uuid — no run-status query exists, treat successful enqueue as the only signal.\n- Agent state is one of ACTIVE, INACTIVE, ARCHIVED, or FAILED. DELETED only appears as the return value of action:"delete".\n\nUSAGE EXAMPLES:\n- AI create: { "action": "create", "prompt": "Run my daily standup every weekday at 9am." }\n- Manual create:{ "action": "create_blank", "name": "Standup Bot", "role": "Project Manager", "gender": "female" }\n- Fetch one: { "action": "get", "agent_id": "42" }\n- List mine: { "action": "get" }\n- Rename: { "action": "update", "agent_id": "7", "name": "New Name" }\n- Activate: { "action": "activate", "agent_id": "7" }\n- Deactivate: { "action": "deactivate", "agent_id": "7" }\n- Run: { "action": "run", "agent_id": "7" }\n- Delete: { "action": "delete", "agent_id": "7" }\n\nRELATED TOOLS:\n- agent_catalog — browse available trigger types and skills before wiring them to an agent\n- manage_agent_triggers — manage which triggers fire this agent automatically\n- manage_agent_skills — manage which skills this agent can perform\n- manage_agent_knowledge — manage which boards/docs this agent has access to'}getInputSchema(){return dy}async executeInternal(e){switch(e.action){case"create":return this.handleCreate(e);case"create_blank":return this.handleCreateBlank(e);case"get":return this.handleGet(e);case"update":return this.handleUpdate(e);case"delete":return this.handleDelete(e);case"activate":return this.handleActivate(e);case"deactivate":return this.handleDeactivate(e);case"run":return this.handleRun(e)}}async handleCreate(e){if(!e.prompt)throw new Error('manage_agent action:"create" requires "prompt". For a manually configured agent, use action:"create_blank".');try{const t={input:{prompt:e.prompt,agent_model:e.agent_model}},a=await this.mondayApi.request(Wv,t,{versionOverride:"dev"});if(!a.create_agent?.id)throw new Error("monday platform agent creation returned no id");return{content:{message:`monday platform agent ${a.create_agent.id} created in state INACTIVE — call manage_agent with action:"activate" and agent_id:"${a.create_agent.id}" to activate it`,agent:a.create_agent}}}catch(e){sp(e,"create monday platform agent")}}async handleCreateBlank(e){try{const t={};void 0!==e.name&&(t.name=e.name),void 0!==e.role&&(t.role=e.role),void 0!==e.role_description&&(t.role_description=e.role_description),void 0!==e.avatar_url&&(t.avatar_url=e.avatar_url),void 0!==e.gender&&(t.gender=e.gender),void 0!==e.background_color&&(t.background_color=e.background_color),void 0!==e.user_prompt&&(t.user_prompt=e.user_prompt);const a={input:t},i=await this.mondayApi.request(Yv,a,{versionOverride:"dev"});if(!i.create_blank_agent?.id)throw new Error("monday platform agent creation returned no id");return{content:{message:`monday platform agent ${i.create_blank_agent.id} created in state INACTIVE — call manage_agent with action:"activate" and agent_id:"${i.create_blank_agent.id}" to activate it`,agent:i.create_blank_agent}}}catch(e){sp(e,"create blank monday platform agent")}}async handleGet(e){if(void 0!==e.agent_id)try{const{custom_agents:t}=await this.mondayApi.request(Hv,{ids:[e.agent_id]},{versionOverride:"dev"}),a=t?.[0];return a?{content:{message:"monday platform agent",agent:a}}:{content:`monday platform agent ${e.agent_id} not found, or the authenticated user does not have access to it.`}}catch(e){sp(e,"get monday platform agent")}try{const{custom_agents:e}=await this.mondayApi.request(Hv,{limit:100},{versionOverride:"dev"}),t=e??[];return{content:{message:"monday platform agents owned by the authenticated user (limited to 100 — ask the user if they need more)",count:t.length,agents:t}}}catch(e){sp(e,"list monday platform agents")}}async handleUpdate(e){if(!e.agent_id)throw new Error('manage_agent action:"update" requires "agent_id".');try{const t={};if(void 0!==e.name&&(t.name=e.name),void 0!==e.role&&(t.role=e.role),void 0!==e.role_description&&(t.role_description=e.role_description),void 0!==e.plan&&(t.plan=e.plan),void 0!==e.agent_model&&(t.agent_model=e.agent_model),0===Object.keys(t).length)throw new Error('manage_agent action:"update" requires at least one of: name, role, role_description, plan, agent_model.');const a={id:e.agent_id,input:t},i=await this.mondayApi.request(Kv,a,{versionOverride:"dev"});if(!i.update_agent)throw new Error("update_agent returned no data — the agent may not exist");return{content:{message:"monday platform agent updated",agent:i.update_agent}}}catch(e){sp(e,"update monday platform agent")}}async handleDelete(e){if(!e.agent_id)throw new Error('manage_agent action:"delete" requires "agent_id".');try{const t={id:e.agent_id},a=await this.mondayApi.request(Qv,t,{versionOverride:"dev"});if(!a.delete_agent?.id)throw new Error("monday platform agent delete returned no id");return{content:{message:`monday platform agent ${a.delete_agent.id} deleted`,agent:a.delete_agent}}}catch(e){sp(e,"delete monday platform agent")}}async handleActivate(e){if(!e.agent_id)throw new Error('manage_agent action:"activate" requires "agent_id".');try{const t=await this.mondayApi.request(Jv,{id:e.agent_id},{versionOverride:"dev"});return{content:{message:"Agent activated.",success:t.activate_agent?.success??!1}}}catch(e){sp(e,"activate monday platform agent")}}async handleDeactivate(e){if(!e.agent_id)throw new Error('manage_agent action:"deactivate" requires "agent_id".');try{const t={id:e.agent_id,inactive_reason:Yg.DeactivatedByUser},a=await this.mondayApi.request(Xv,t,{versionOverride:"dev"});return{content:{message:"Agent deactivated.",success:a.deactivate_agent?.success??!1}}}catch(e){sp(e,"deactivate monday platform agent")}}async handleRun(e){if(!e.agent_id)throw new Error('manage_agent action:"run" requires "agent_id".');try{const t=await this.mondayApi.request(Zv,{id:e.agent_id},{versionOverride:"dev"});if(!t.run_agent)throw new Error("run_agent returned no data — the agent run may not have been enqueued");return{content:{message:"Agent run enqueued.",trigger_uuid:t.run_agent.trigger_uuid}}}catch(e){sp(e,"run monday platform agent")}}},class extends me{constructor(){super(...arguments),this.name="manage_agent_triggers",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage monday Platform Agent Triggers",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Manage the triggers attached to a monday platform agent — triggers define WHEN the agent runs automatically.\n\nACTIONS:\n- list: { agent_id } — returns active triggers with node_id, block_reference_id, name, field_summary.\n- add: { agent_id, block_reference_id, field_values? } — attaches a trigger type to the agent.\n- remove: { agent_id, node_id } — detaches a trigger instance by node_id (NOT block_reference_id).\n\nWORKFLOW — add a trigger:\n1. Call agent_catalog action:"list_triggers" — note block_reference_id, field_schemas, and required_fields.\n2. Collect required field values from the user (e.g. board_id, column_id).\n3. Call this tool action:"add" with block_reference_id and field_values.\nNote: add returns only { success } — no node_id for the new instance. Call action:"list" afterward if you need the node_id.\n\nWORKFLOW — remove a trigger:\n1. Call action:"list" to see active triggers and note the node_id of the instance to remove.\n2. Call action:"remove" with that node_id.\n\nNOTE: Only triggers that can be added programmatically appear in the catalog. OAuth/3rd-party triggers (Slack, Gmail, Salesforce, etc.)\nrequire user setup in the monday.com UI — they will not appear in agent_catalog and cannot be managed here.\n\nUSAGE EXAMPLES:\n- List triggers: { "action": "list", "agent_id": "7" }\n- Add trigger: { "action": "add", "agent_id": "7", "block_reference_id": "status-change-ref", "field_values": { "board_id": "42" } }\n- Remove trigger: { "action": "remove", "agent_id": "7", "node_id": "node-abc" }\n\nRELATED TOOLS:\n- agent_catalog action:"list_triggers" — discover available trigger types and their required field_values before calling action:"add" here\n- manage_agent_skills — manage which skills this agent can perform\n- manage_agent — manage the agent entity itself (create, activate, deactivate, etc.)'}getInputSchema(){return py}async executeInternal(e){switch(e.action){case"list":return this.handleList(e);case"add":return this.handleAdd(e);case"remove":return this.handleRemove(e)}}async handleList(e){try{const t={agent_id:e.agent_id},a=(await this.mondayApi.request(ey,t,{versionOverride:"dev"})).agent_active_triggers??[];return{content:{message:'Active triggers on this agent. Use node_id with action:"remove" to detach a trigger.',count:a.length,triggers:a}}}catch(e){sp(e,"list active triggers for monday platform agent")}}async handleAdd(e){if(!e.block_reference_id)throw new Error('block_reference_id is required for action:"add". Call agent_catalog action:"list_triggers" first to find the block_reference_id.');try{const t={agent_id:e.agent_id,block_reference_id:e.block_reference_id,field_values:e.field_values},a=await this.mondayApi.request(ty,t,{versionOverride:"dev"});return{content:{message:'Trigger added to agent. Call action:"list" to verify and retrieve the node_id.',success:a.add_trigger_to_agent?.success??!1}}}catch(e){sp(e,"add trigger to monday platform agent")}}async handleRemove(e){if(!e.node_id)throw new Error('node_id is required for action:"remove". Call action:"list" first to get node_id values.');try{const t={agent_id:e.agent_id,node_id:e.node_id},a=await this.mondayApi.request(ay,t,{versionOverride:"dev"});return{content:{message:"Trigger removed from agent.",success:a.remove_trigger_from_agent?.success??!1}}}catch(e){sp(e,"remove trigger from monday platform agent")}}},class extends me{constructor(){super(...arguments),this.name="manage_agent_skills",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage monday Platform Agent Skills",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Manage the full skill lifecycle for monday platform agents — create new skills in the catalog, attach skills to an agent, or detach them.\n\nSkills extend what an agent can do (e.g. sending emails, querying databases, posting to Slack).\n\nACTIONS:\n- create: { name, content, description? } — creates a new custom skill in the account-wide catalog.\n The skill becomes available to all agents in the account.\n- add: { agent_id, skill_id } — attaches a skill to this agent.\n- remove: { agent_id, skill_id } — detaches a skill from this agent.\n\nWORKFLOW — attach an existing skill:\n1. Call agent_catalog action:"list_skills" — find the skill_id of the skill to attach.\n2. Call this tool action:"add" with agent_id and that skill_id.\n\nWORKFLOW — create a new skill and attach it:\n1. Call this tool action:"create" with name and content — note the returned id.\n2. Call this tool action:"add" with agent_id and that id directly (no catalog lookup needed).\n\nNOTE: There is no action to list which skills are currently attached to a specific agent — the platform does not yet expose that query.\nTo browse all skills available in the account catalog, use agent_catalog action:"list_skills".\n\nUSAGE EXAMPLES:\n- Create a skill: { "action": "create", "name": "Send Slack Message", "content": "## Instructions\\nPost a message to a Slack channel.", "description": "Sends a message to Slack" }\n- Add a skill: { "action": "add", "agent_id": "7", "skill_id": "skill-abc-123" }\n- Remove a skill: { "action": "remove", "agent_id": "7", "skill_id": "skill-abc-123" }\n\nRELATED TOOLS:\n- agent_catalog action:"list_skills" — browse existing skills to find a skill_id before calling action:"add"\n- manage_agent_triggers — manage which triggers fire this agent automatically\n- manage_agent — manage the agent entity itself (create, activate, deactivate, etc.)'}getInputSchema(){return ly}async executeInternal(e){switch(e.action){case"create":return this.handleCreate(e);case"add":return this.handleAdd(e);case"remove":return this.handleRemove(e)}}async handleCreate(e){if(!e.name||!e.content)throw new Error('action:"create" requires both "name" and "content".');try{const t={name:e.name,content:e.content,description:e.description},a=await this.mondayApi.request(sy,t,{versionOverride:"dev"});if(!a.create_agent_skill)throw new Error("create_agent_skill returned no data");return{content:{message:'Skill created and added to the account catalog. Use the returned id with action:"add" to attach it to an agent.',skill:a.create_agent_skill}}}catch(e){sp(e,"create monday platform agent skill")}}async handleAdd(e){if(!e.agent_id)throw new Error('agent_id is required for action:"add".');if(!e.skill_id)throw new Error('skill_id is required for action:"add". Get it from agent_catalog action:"list_skills" or from action:"create" in this tool.');try{const t={agent_id:e.agent_id,skill_id:e.skill_id},a=await this.mondayApi.request(iy,t,{versionOverride:"dev"});return{content:{message:"Skill added to agent.",success:a.add_skill_to_agent?.success??!1}}}catch(e){sp(e,"add skill to monday platform agent")}}async handleRemove(e){if(!e.agent_id)throw new Error('agent_id is required for action:"remove".');if(!e.skill_id)throw new Error('skill_id is required for action:"remove".');try{const t={agent_id:e.agent_id,skill_id:e.skill_id},a=await this.mondayApi.request(ny,t,{versionOverride:"dev"});return{content:{message:"Skill removed from agent.",success:a.remove_skill_from_agent?.success??!1}}}catch(e){sp(e,"remove skill from monday platform agent")}}},class extends me{constructor(){super(...arguments),this.name="manage_agent_knowledge",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage monday Platform Agent Knowledge",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'List, grant, update, or revoke a monday platform agent\'s access to boards and docs.\n\nAn agent\'s "knowledge" is the set of monday.com boards and docs it can read from or write to during a run.\n\n- list: Returns all resources the agent currently has access to, including permission level and resource type.\n- add: Grants the agent access to a board or doc with the specified permission level.\n- update: Changes the permission level on a resource the agent already has access to. Call action:"list" first to confirm the resource_id exists.\n- remove: Revokes the agent\'s access to a board or doc entirely. Call action:"list" first to confirm the resource_id exists.\n\nPermission types:\n- READ: Agent can read data from the resource.\n- READ_WRITE: Agent can read and write data to the resource.\n\nUSAGE EXAMPLES:\n- List: { "action": "list", "agent_id": "7" }\n- Add board access: { "action": "add", "agent_id": "7", "resource_id": "42", "scope_type": "BOARD", "permission_type": "READ" }\n- Update to read-write: { "action": "update", "agent_id": "7", "resource_id": "42", "scope_type": "BOARD", "permission_type": "READ_WRITE" }\n- Remove access: { "action": "remove", "agent_id": "7", "resource_id": "42", "scope_type": "BOARD" }\n\nRELATED TOOLS:\n- manage_agent — manage the agent entity itself (create, activate, deactivate, etc.)\n- manage_agent_triggers — manage which triggers fire this agent automatically\n- manage_agent_skills — manage which skills this agent can perform'}getInputSchema(){return fy}async executeInternal(e){switch(e.action){case"list":return this.handleList(e);case"add":return this.handleAdd(e);case"update":return this.handleUpdate(e);case"remove":return this.handleRemove(e)}}async handleList(e){try{const t=(await this.mondayApi.request(cy,{id:e.agent_id},{versionOverride:"dev"})).agent_knowledge??{resources:[],files:[]};return{content:{message:"Current agent resource access.",count:t.resources?.length??0,knowledge:t}}}catch(e){sp(e,"list agent knowledge for monday platform agent")}}async handleAdd(e){if(!e.resource_id||!e.scope_type||!e.permission_type)throw new Error("resource_id, scope_type, and permission_type are required for action:add");try{const t=await this.mondayApi.request(my,{id:e.agent_id,resource_id:e.resource_id,scope_type:e.scope_type,permission_type:e.permission_type},{versionOverride:"dev"});return{content:{message:"Resource access granted to agent.",success:t.add_agent_resource_access?.success??!1}}}catch(e){sp(e,"add agent resource access for monday platform agent")}}async handleUpdate(e){if(!e.resource_id||!e.scope_type||!e.permission_type)throw new Error("resource_id, scope_type, and permission_type are required for action:update");try{const t=await this.mondayApi.request(hy,{id:e.agent_id,resource_id:e.resource_id,scope_type:e.scope_type,permission_type:e.permission_type},{versionOverride:"dev"});return{content:{message:"Resource access updated.",success:t.update_agent_resource_access?.success??!1}}}catch(e){sp(e,"update agent resource access for monday platform agent")}}async handleRemove(e){if(!e.resource_id||!e.scope_type)throw new Error("resource_id and scope_type are required for action:remove");try{const t=await this.mondayApi.request(uy,{id:e.agent_id,resource_id:e.resource_id,scope_type:e.scope_type},{versionOverride:"dev"});return{content:{message:"Resource access removed from agent.",success:t.remove_agent_resource_access?.success??!1}}}catch(e){sp(e,"remove agent resource access for monday platform agent")}}},class extends me{constructor(){super(...arguments),this.name="agent_catalog",this.type=exports.ToolType.READ,this.annotations=ce({title:"monday Platform Agent Catalog",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Browse the account-wide catalog of available trigger types and skills for monday platform agents. READ-ONLY — no agent_id required.\n\nUse this tool to discover what\'s available BEFORE wiring anything to a specific agent.\n\nACTIONS:\n- list_triggers: { block_reference_ids? } — returns available trigger types.\n Each entry has block_reference_id (required for manage_agent_triggers action:"add"), name, description,\n field_schemas (describes field_values shape), and required_fields (fields to collect from the user).\n Note: only triggers that can be added programmatically appear here. OAuth/3rd-party triggers (Slack, Gmail, Salesforce, etc.)\n require user setup in the monday.com UI and will not appear here.\n\n- list_skills: {} — returns available skills with id, name, description.\n Never guess or invent a skill id — always look it up here before calling manage_agent_skills action:"add".\n\nUSAGE EXAMPLES:\n- List all trigger types: { "action": "list_triggers" }\n- Fetch specific trigger: { "action": "list_triggers", "block_reference_ids": ["some-block-ref-id"] }\n- List all skills: { "action": "list_skills" }\n\nRELATED TOOLS:\n- manage_agent_triggers — use block_reference_id from list_triggers to attach a trigger to a specific agent\n- manage_agent_skills — use skill id from list_skills, or action:"create" to author a new skill, then attach to an agent\n- manage_agent — manage the agent entity itself (create, update, delete, activate, etc.)'}getInputSchema(){return _y}async executeInternal(e){switch(e.action){case"list_triggers":return this.handleListTriggers(e);case"list_skills":return this.handleListSkills()}}async handleListTriggers(e){try{const t={block_reference_ids:e.block_reference_ids},a=(await this.mondayApi.request(oy,t,{versionOverride:"dev"})).agent_triggers_catalog??[];return{content:{message:'Available trigger types. Use block_reference_id and inspect field_schemas/required_fields before calling manage_agent_triggers action:"add".',count:a.length,triggers:a}}}catch(e){sp(e,"fetch monday platform agent triggers catalog")}}async handleListSkills(){try{const e=(await this.mondayApi.request(ry,{},{versionOverride:"dev"})).agent_skills_catalog??[];return{content:{message:'Available skills. Use id when calling manage_agent_skills action:"add".',count:e.length,skills:e}}}catch(e){sp(e,"fetch monday platform agent skills catalog")}}},class extends me{constructor(){super(...arguments),this.name="list_automations",this.type=exports.ToolType.READ,this.annotations=ce({title:"List Board Automations",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'List all automations on a specific monday.com board, including their ids, titles, active state, and configuration.\nReturns two groups: "workflows" (fully manageable, supports pagination via limit/cursor) and "legacyAutomations" (READ-ONLY automations set up in an older way — returned on the first page only, when no cursor is given).\nAlways present BOTH groups to the user together as one list of board automations — never omit or hide "legacyAutomations". The split and the read-only limitation are internal context for you only: don\'t volunteer them and don\'t label any automation "legacy" or "read-only". Only if the user asks to act on a legacy one, briefly explain it can\'t be changed (e.g. "This one was set up in an older way and can\'t be modified here").\nWhen NOT to use: Do not call this tool to get general board information unrelated to automations.\n'}getInputSchema(){return yy}async executeInternal(e){try{const a=!e.cursor,i={boardIds:[e.boardId],limit:e.limit??100,includeLegacy:a,...e.cursor?{cursor:e.cursor}:{}},n=await this.mondayApi.request(gy,i),o=(n.board_automations?.items??[]).map(vy),r=n.board_automations?.cursor??null,s=a?(t=n.board_automations?.legacy_automations,null==t||"object"==typeof t&&"error"in t?null:t):null;return{content:{message:`Found ${o.length} live workflow(s) on board ${e.boardId}`,workflows:o,...null!=s?{legacyAutomations:s}:{},pagination:{nextCursor:r,hasMore:null!==r}}}}catch(e){sp(e,"list live workflows")}var t}},class extends me{constructor(){super(...arguments),this.name="manage_automations",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage Automations",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return'Activate, deactivate, or delete an existing monday.com automation.\n\nRequires an automation id. When the user refers to an automation by name, always call list_automations first to resolve the id — never guess or infer ids.\n\nActions:\n- activate: enables a paused automation so it starts responding to its trigger.\n- deactivate: pauses an automation while preserving its definition.\n- delete: permanently removes an automation — irreversible.\n\nWhen intent is ambiguous ("stop", "turn off", "pause"), prefer deactivate over delete.'}getInputSchema(){return Ey}async executeInternal(e){const t=e;switch(t.action){case"activate":return this.activateWorkflow(t);case"deactivate":return this.deactivateWorkflow(t);case"delete":return this.deleteWorkflow(t)}}async activateWorkflow(e){try{const t={id:e.workflowId},a=await this.mondayApi.request(Iy,t,{versionOverride:"dev"});if(!a.activate_live_workflow?.is_success)throw new Error(`Workflow ${e.workflowId} activation did not report success`);return{content:{message:`Workflow ${e.workflowId} activated`,workflowId:e.workflowId,isActive:!0}}}catch(e){sp(e,"activate workflow")}}async deactivateWorkflow(e){try{const t={id:e.workflowId},a=await this.mondayApi.request(wy,t,{versionOverride:"dev"});if(!a.deactivate_live_workflow?.is_success)throw new Error(`Workflow ${e.workflowId} deactivation did not report success`);return{content:{message:`Workflow ${e.workflowId} deactivated`,workflowId:e.workflowId,isActive:!1}}}catch(e){sp(e,"deactivate workflow")}}async deleteWorkflow(e){try{const t={id:e.workflowId},a=await this.mondayApi.request(Ty,t,{versionOverride:"dev"});if(!a.delete_live_workflow?.is_success)throw new Error(`Workflow ${e.workflowId} deletion did not report success`);return{content:{message:`Workflow ${e.workflowId} deleted`,workflowId:e.workflowId}}}catch(e){sp(e,"delete workflow")}}},class extends me{constructor(e,t,a){super(e,a),this.apiToken=t,this.name="create_automation",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Automation",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'\n Creates an automation on a monday board from a structured natural-language description.\n\nUse this tool only when you know:\n- boardId\n- the user\'s intended trigger\n- at least one intended action\n- any details the user provided that are relevant to the trigger, conditions, or actions\n\nThe caller does not need to know the exact available automation blocks or their required fields. Describe the user\'s intent clearly — the tool will translate that intent into supported blocks and values.\n\nIf a required detail is missing from the user\'s request, ask for clarification before calling the tool.\n\nIf the tool returns status: "needs_clarification", present the unresolved fields to the user, gather answers, then call the tool again.\n\nDescribe the automation in this format:\n\nTrigger:\n When <the event that should start the automation>\n Details:\n <relevant detail>: <value>\n\nConditions:\n - Only if <condition that should be true>\n Details:\n <relevant detail>: <value>\n\nActions:\n - <action the automation should perform>:\n <relevant detail>: <value>\n\nRules:\n- Use one trigger.\n- Conditions are optional.\n- Multiple conditions mean AND.\n- Use one or more actions.\n- Do not use branching.\n- Use natural language, not block IDs or internal field names.\n- Actions may reference values from the trigger context, such as "{{item name}}", "{{creator}}", "{{status}}", "{{group}}", or "{{board}}".\n\nTerminology:\n- Trigger: the event that starts the automation, such as "when a new item is created".\n- Conditions: optional requirements that must be true before actions run.\n- Actions: what the automation does when it runs.\n\nExample:\n\nTrigger:\n When a new item is created\n\nActions:\n - Send a notification:\n Recipient: John Snow\n Title: Important Update\n Message: The item "{{item name}}" was created.\n\n - Move the item to a group:\n Group: Top group\n'}getInputSchema(){return Dy}async executeInternal(e){try{const t="function"==typeof this.apiToken?this.apiToken():this.apiToken,a=Ny(this.context),i=await a({serviceName:Ay,path:"/platform-ai-gateway/agents/lite-builder",method:"POST",headers:{...this.context?.fetchConfig?.fetch?{}:{Authorization:t},"Content-Type":"application/json"},body:JSON.stringify({userPrompt:e.userPrompt,boardId:e.boardId}),signal:AbortSignal.timeout(18e4)});if(!i.ok){const e=await i.text().catch((()=>""));throw new Error(`lite-builder responded with HTTP ${i.status}${e?`: ${e}`:""}`)}return{content:await i.json()}}catch(e){sp(e,"create automation")}}},class extends me{constructor(){super(...arguments),this.name="get_automation_runs",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Automation Runs",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Read automation/workflow run history. Read-only.\n\nModes:\n- "history": paginated run feed (state, duration, error reason). Use "filters" to narrow results and "nextPageOffset" to page (offset-only — next page = previous offset + returned count).\n- "detail": single run by "triggerUuid" (required) — returns block steps and MCP tool calls. Set "includeToolEvents": false to skip tool calls.\n\nScope: provide "boardId" for a specific board or "accountWide": true. One is required.\n\nKnown event states: "success", "failure", "exhausted".'}getInputSchema(){return Ly}async executeInternal(e){if(!e.boardId&&!e.accountWide)return{content:{message:'Either "boardId" or "accountWide": true must be provided.'}};try{return"detail"===e.mode?await this.runDetail(e):await this.runHistory(e)}catch(e){sp(e,"get automation runs")}}async runHistory(e){const t=e.nextPageOffset??0,a={...e.filters??{},...e.boardId?{boardId:e.boardId}:{}},i=await this.mondayApi.request(ky,{nextPageOffset:t,filters:a}),n=i.trigger_events?.triggerEvents??[],o=function(e){return e.reduce(((e,t)=>{const a=t.eventState??"unknown";return e[a]=(e[a]??0)+1,e}),{})}(n),r=e.boardId?`board ${e.boardId}`:"account-wide";return{content:{message:`Returned ${n.length} run(s) (${r}) at offset ${t}. By state: ${function(e){const t=Object.entries(e).map((([e,t])=>`${e}=${t}`));return t.length?t.join(", "):"none"}(o)}. Offset-only pagination — for the next page request offset ${t+n.length}.`,scope:r,offset:t,count:n.length,stateCounts:o,runs:n}}}async runDetail(e){if(!e.triggerUuid)return{content:{message:'detail mode requires "triggerUuid".'}};const t=!1!==e.includeToolEvents,a=e.blockEventsOffset??0,i=e.toolEventsOffset??0,n=(await this.mondayApi.request(Cy,{triggerUuid:e.triggerUuid})).trigger_event;if(!n)return{content:{message:`No run found for triggerUuid ${e.triggerUuid}.`,triggerUuid:e.triggerUuid,found:!1}};const[o,r]=await Promise.all([this.mondayApi.request(Ry,{triggerUuid:e.triggerUuid,nextPageOffset:a}),t?this.mondayApi.request($y,{triggerUuid:e.triggerUuid,nextPageOffset:i}):Promise.resolve(null)]),s=o.block_events?.blockEvents??[],d=r?.tool_events?.tool_events??[];return{content:{message:`Run ${e.triggerUuid}: state=${n.eventState??"unknown"}, ${s.length} block step(s), ${d.length} tool call(s).`,found:!0,run:n,blockEvents:s,blockEventsOffset:a,toolEvents:d,toolEventsOffset:i,toolEventsIncluded:t}}}},class extends me{constructor(){super(...arguments),this.name="get_automation_statistics",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Automation Statistics",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Aggregate automation run statistics. Read-only.\n\nBreakdowns:\n- "totals": success/failure/total counts at the account or board level.\n- "by_entity": per-automation and per-workflow counts for a given "runStatus" (required: "success" | "failure" | "exhausted"). Use "excludeAutomationIds" to omit specific automations.\n\nScope: provide "boardId" for a specific board or "accountWide": true. One is required.\n\nOptional "userIds" narrows results to specific creators.'}getInputSchema(){return Fy}async executeInternal(e){if(!e.boardId&&!e.accountWide)return{content:{message:'Either "boardId" or "accountWide": true must be provided.'}};const t=e.boardId?function(e){const t=Number(e.trim());if(!Number.isInteger(t)||t<=0)throw new Error(`Invalid boardId: '${e}' is not a positive integer.`);return t}(e.boardId):void 0,a=e.boardId?`board ${e.boardId}`:"account-wide";try{return"by_entity"===e.breakdown?await this.runByEntity(e,t,a):await this.runTotals(e,t,a)}catch(e){sp(e,"get automation statistics")}}async runTotals(e,t,a){const i=(await this.mondayApi.request(Uy,{filters:{board_id:t,user_ids:e.userIds}})).account_trigger_statistics;return{content:{message:`Totals (${a}): success=${i?.success??0}, failure=${i?.failure??0}, total=${i?.total??0}.`,scope:a,breakdown:"totals",statistics:i}}}async runByEntity(e,t,a){if(!e.runStatus)return{content:{message:'by_entity breakdown requires "runStatus" (success | failure | exhausted).'}};const i=(await this.mondayApi.request(Py,{runStatus:e.runStatus,filters:{board_id:t,automation_ids:e.excludeAutomationIds,user_ids:e.userIds}})).account_triggers_statistics_by_entity_id;return{content:{message:`By-entity '${e.runStatus}' statistics (${a}).`,scope:a,breakdown:"by_entity",runStatus:e.runStatus,automationStatistics:i?.automation_statistics,workflowStatistics:i?.workflow_statistics}}}},class extends me{constructor(){super(...arguments),this.name="create_workflow",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Workflow",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Creates a new empty workflow in a monday.com workspace.\n\nUse this when the user wants to build a new standalone workflow from scratch. Workflows are cross-board, workspace-level — distinct from automations (use create_automation for those). You only need a workspaceId to get started — all other fields are optional.\n\nReturns:\n- workflowObjectId: the workflow object ID\n- workflowDraftId: the current draft version ID — workflows start as drafts and must be published before they run\n\nTerminology:\n- Workflows vs. automations: workflows are standalone objects scoped to a workspace. Automations (create_automation) are per-board trigger/action rules. They are different products.\n- Draft: the editable, inactive version of a workflow. Changes are made on the draft version until it is published as the live version.\n- Privacy: PUBLIC — visible to all workspace members (default). PRIVATE — restricted access. SHAREABLE — accessible to guests outside the account.\n\nNote: if directing the user to the workflow in the UI, the correct URL path is custom_objects/, not workflows/ — e.g. {account}.monday.com/custom_objects/{workflowObjectId}.\n"}getInputSchema(){return My}async executeInternal(e){try{const t={workspace_id:e.workspaceId,...void 0!==e.title?{title:e.title}:{},...void 0!==e.privacyKind?{privacy_kind:e.privacyKind}:{},...void 0!==e.description?{description:e.description}:{},...void 0!==e.folderId?{folder_id:e.folderId}:{},...void 0!==e.ownerIds?{owner_ids:e.ownerIds}:{}},a=await this.mondayApi.request(Vy,t,{versionOverride:"dev"});if(!a.create_workflow)throw new Error("create_workflow returned null");const{workflow_object_id:i,workflow_draft_id:n}=a.create_workflow;if(!i||!n)throw new Error("create_workflow returned missing identifiers");return{content:{message:`Workflow Builder workflow created in workspace ${e.workspaceId}`,workflowObjectId:i,workflowDraftId:n}}}catch(e){sp(e,"create Workflow Builder workflow")}}},class extends me{constructor(e,t,a){super(e,a),this.apiToken=t,this.name="update_workflow",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Workflow",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Updates an existing workflow draft using an AI agent.\n\nThe agent interprets the prompt and applies structural changes to the workflow — creating, updating, or deleting steps. Pass clear, descriptive instructions and the agent will decide which operations to perform, then return a summary of what it did.\n\nUse this after create_workflow to build out the workflow step by step. You can call it multiple times on the same draft to iteratively refine the workflow.\n\nParameters:\n- workflowObjectId and workflowDraftId: both returned by create_workflow — they identify which draft to update.\n- prompt: describe what you want to change in plain English (e.g. "Add a trigger that fires when an item is created on the Marketing board"). Maximum 2000 characters.\n\nReturns:\n- workflowObjectId: the workflow object ID (unchanged)\n- workflowDraftId: the draft version ID (unchanged)\n- result: agent response describing the changes made\n\nNote: if directing the user to the workflow in the UI, the correct URL path is custom_objects/, not workflows/ — e.g. {account}.monday.com/custom_objects/{workflowObjectId}.\n\nNote: the workflow runs only after it is published to live version.\n'}getInputSchema(){return By}async executeInternal(e){try{const t="function"==typeof this.apiToken?this.apiToken():this.apiToken,a=Ny(this.context),i=await a({serviceName:Ay,path:"/platform-ai-gateway/agents/workflow-builder",method:"POST",headers:{...this.context?.fetchConfig?.fetch?{}:{Authorization:t},"Content-Type":"application/json"},body:JSON.stringify({workflowObjectId:e.workflowObjectId,workflowDraftId:e.workflowDraftId,prompt:e.prompt}),signal:AbortSignal.timeout(18e4)});if(!i.ok){const e=await i.text().catch((()=>""));throw new Error(`workflow-builder responded with HTTP ${i.status}${e?`: ${e}`:""}`)}return{content:await i.json()}}catch(e){sp(e,"update workflow")}}},class extends me{constructor(e,t,a){super(e,a),this.apiToken=t,this.name="plan_workflow",this.type=exports.ToolType.READ,this.annotations=ce({title:"Plan Workflow",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Plans one or more monday.com workflows for a described process using an AI agent.\n\nThe agent analyzes the prompt, decides how many workflows are needed, identifies the required boards and columns, selects the correct trigger and action blocks (with their IDs), and returns a structured implementation plan with Mermaid diagrams and build notes for each workflow.\n\nUse this before create_workflow to understand how to break a complex process into individual workflows and which resources to create first.\n\nParameters:\n- prompt: describe the full end-to-end process in plain English. Maximum 2000 characters.\n\nReturns:\n- result: structured markdown plan with workflow breakdowns, block IDs, resource definitions, and a list of assumptions and gaps\n"}getInputSchema(){return zy}async executeInternal(e){try{const t="function"==typeof this.apiToken?this.apiToken():this.apiToken,a=Ny(this.context),i=await a({serviceName:Ay,path:"/platform-ai-gateway/agents/workflow-planner",method:"POST",headers:{...this.context?.fetchConfig?.fetch?{}:{Authorization:t},"Content-Type":"application/json"},body:JSON.stringify({prompt:e.prompt}),signal:AbortSignal.timeout(18e4)});if(!i.ok){const e=await i.text().catch((()=>""));throw new Error(`workflow-planner responded with HTTP ${i.status}${e?`: ${e}`:""}`)}return{content:await i.json()}}catch(e){sp(e,"plan workflow")}}},class extends me{constructor(){super(...arguments),this.name="publish_workflow",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Publish Workflow",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Publishes a workflow draft, promoting it to the live version.\n\nUse this after create_workflow (and optionally update_workflow) to make the workflow active. Before publishing, the workflow is validated — if it has missing or misconfigured steps, publish will fail with a WORKFLOW_VALIDATION_FAILED error that includes structured issue details: which step failed, the issue type, and which inputs are missing. Use those details to guide the user on what to fix before retrying.\n\nParameters:\n- workflowObjectId and workflowDraftId: returned by create_workflow — they identify which draft to publish.\n- shouldActivate: whether to activate the workflow immediately after publish. Defaults to true — pass false to publish without activating.\n\nReturns:\n- workflowObjectId: the workflow object ID (unchanged)\n- workflowLiveId: the new live version ID — this changes on every publish, so do not cache it\n\nNote: if directing the user to the workflow in the UI, the correct URL path is custom_objects/, not workflows/ — e.g. {account}.monday.com/custom_objects/{workflowObjectId}.\n\n"}getInputSchema(){return qy}async executeInternal(e){try{const t={workflow_object_id:e.workflowObjectId,workflow_draft_id:e.workflowDraftId,...void 0!==e.shouldActivate?{should_activate:e.shouldActivate}:{}},a=await this.mondayApi.request(jy,t,{versionOverride:"dev"});if(!a.publish_workflow)throw new Error("publish_workflow returned null");const{workflow_object_id:i,workflow_live_id:n}=a.publish_workflow;if(!i||!n)throw new Error("publish_workflow returned missing identifiers");return{content:{message:`Workflow ${e.workflowObjectId} published successfully`,workflowObjectId:i,workflowLiveId:n}}}catch(e){sp(e,"publish workflow")}}},class extends me{constructor(){super(...arguments),this.name="configure_ai_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Configure AI Column",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Add AI to a column or set up an AI column on a monday.com board. Use this tool when the user wants to automatically categorize, summarize, translate, extract, generate text, improve writing, or assign people using AI on a column. This is the right tool for requests like "add AI to a column", "set up automatic extraction/categorization/summarization", "make a column use AI", "configure AI on a column", or "use AI to automatically fill a column".\n\nThe column must already exist on the board with a compatible type for the chosen block. To create a new AI column, first use create_column to create the column, then use this tool to add AI behavior.\n\nBLOCK TYPES (only pass fields that apply to the chosen block_type):\n- categorize: { block_type, source_type, source_column_id?, additional_instructions? } — assigns labels from target column\'s existing status/dropdown options\n- summarize: { block_type, source_type, source_column_id?, additional_instructions? } — generates concise summaries\n- translate: { block_type, source_type, source_column_id?, target_language } — translates to target language\n- improve_text: { block_type, source_type, source_column_id?, tone?, improver_length?, refinement_type? } — rewrites/fixes text\n- extract: { block_type, source_type, source_column_id?, entity_type, custom_instructions?, additional_instructions? } — extracts structured info\n- open_block: { block_type, ai_query } — flexible custom prompt, reference columns via {pulse.column_id}\n- write_me: { block_type, ai_query, tone, output_length } — generates new text from prompt\n- person_assignment: { block_type, source_type, source_column_id?, groups } — assigns people based on context\n\nSOURCE TYPES (required for all blocks except open_block and write_me):\n- item_name: uses the item\'s name as input\n- thread: uses the item\'s updates/comments as input\n- column: uses another column\'s value (requires source_column_id)\n- emails_and_activities: uses emails & activities (categorize only)\n\nCOLUMN REFERENCE SYNTAX (for open_block and write_me ai_query):\n- {pulse.column_id} — regular board column\n- {pulse.name} — the item name\n- {pulse.subitem.column_id} — subitem column\n\nRELATED TOOLS:\n- create_column — create the target column first if it doesn\'t exist\n- get_board_schema — discover existing columns and their types/IDs'}getInputSchema(){return Zy}async executeInternal(e){const t=void 0!==e.run_backfill?{run_backfill:e.run_backfill}:void 0;try{switch(e.block_type){case"categorize":return this.handleCategorize(e.board_id,e,t);case"summarize":return this.handleSummarize(e.board_id,e,t);case"translate":return this.handleTranslate(e.board_id,e,t);case"improve_text":return this.handleImproveText(e.board_id,e,t);case"extract":return this.handleExtract(e.board_id,e,t);case"open_block":return this.handleOpenBlock(e.board_id,e,t);case"write_me":return this.handleWriteMe(e.board_id,e,t);case"person_assignment":return this.handlePersonAssignment(e.board_id,e,t)}}catch(e){sp(e,"configure AI column")}}validateSourceType(e,t){if(!e.source_type)throw new Error(`source_type is required for ${t} block`);if("column"===e.source_type&&!e.source_column_id)throw new Error('source_column_id is required when source_type is "column"')}async handleCategorize(e,t,a){this.validateSourceType(t,"categorize");const i=await this.mondayApi.request(Gy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,additionalInstructions:t.additional_instructions,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_categorize_ai_column?.column_id}}}async handleSummarize(e,t,a){this.validateSourceType(t,"summarize");const i=await this.mondayApi.request(Hy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,additionalInstructions:t.additional_instructions,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_summarize_ai_column?.column_id}}}async handleTranslate(e,t,a){if(this.validateSourceType(t,"translate"),!t.target_language)throw new Error("target_language is required for translate block");const i=await this.mondayApi.request(Wy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,targetLanguage:t.target_language,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_translate_ai_column?.column_id}}}async handleImproveText(e,t,a){this.validateSourceType(t,"improve_text");const i=await this.mondayApi.request(Yy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,tone:t.tone,length:t.improver_length,refinementType:t.refinement_type,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_improve_text_ai_column?.column_id}}}async handleExtract(e,t,a){if(this.validateSourceType(t,"extract"),!t.entity_type)throw new Error("entity_type is required for extract block");if("custom"===t.entity_type&&!t.custom_instructions)throw new Error('custom_instructions is required for extract block when entity_type is "custom"');const i=await this.mondayApi.request(Ky,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,entityType:t.entity_type,customInstructions:t.custom_instructions,additionalInstructions:t.additional_instructions,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_extract_ai_column?.column_id}}}async handleOpenBlock(e,t,a){if(!t.ai_query)throw new Error("ai_query is required for open_block block");const i=await this.mondayApi.request(Qy,{boardId:e.toString(),columnId:t.column_id,aiQuery:t.ai_query,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_open_block_ai_column?.column_id}}}async handleWriteMe(e,t,a){if(!t.ai_query)throw new Error("ai_query is required for write_me block");if(!t.tone)throw new Error("tone is required for write_me block");if(!t.output_length)throw new Error("output_length is required for write_me block");const i=await this.mondayApi.request(Jy,{boardId:e.toString(),columnId:t.column_id,aiQuery:t.ai_query,tone:t.tone,length:t.output_length,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_write_me_ai_column?.column_id}}}async handlePersonAssignment(e,t,a){if(this.validateSourceType(t,"person_assignment"),!t.groups||0===t.groups.length)throw new Error("groups is required for person_assignment block");const i=await this.mondayApi.request(Xy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,groups:t.groups,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_person_assignment_ai_column?.column_id}}}},class extends me{constructor(){super(...arguments),this.name="remove_ai_from_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Remove AI from Column",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!0})}getDescription(){return"Remove AI from a column on a monday.com board. Use this tool when the user wants to disable AI on a column, turn off AI automation, stop AI from running on a column, or delete the AI behavior from a column. This deletes all AI automation recipes and the app feature extension associated with the column. The column itself is not deleted — only its AI behavior is removed.\n\nUse get_board_schema to find column IDs before calling this tool."}getInputSchema(){return tI}async executeInternal(e){try{const t=await this.mondayApi.request(eI,{boardId:e.board_id.toString(),columnId:e.column_id});return{content:{message:"AI removed from column successfully",column_id:t.remove_ai_from_column?.column_id,success:t.remove_ai_from_column?.success}}}catch(e){sp(e,"remove AI from column")}}}],xI=[...$I,...RI,...le];exports.allGraphqlApiTools=$I,exports.allMondayAppsTools=le,exports.allMondayDevTools=RI,exports.allTools=xI;
2975
+ `),i=await this.mondayApi.request(a);return i.__type?{content:{message:"Type details retrieved",data:{name:i.__type.name,kind:i.__type.kind,description:i.__type.description??null,fields:i.__type.fields??[],inputFields:i.__type.inputFields??[],interfaces:i.__type.interfaces??[],enumValues:i.__type.enumValues??[],possibleTypes:i.__type.possibleTypes??[]}}}:{content:`Type '${e.typeName}' not found in the GraphQL schema. Please check the type name and try again.`}}catch(e){const t=e instanceof Error?e.message:"Unknown error",a=t.includes("JSON");return{content:`Error fetching type details: ${t}${a?"\n\nThis could be because the type name is incorrect or the GraphQL query format is invalid. Please check the type name and try again.":""}`}}var t}},class extends me{constructor(){super(...arguments),this.name="create_custom_activity",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Custom Activity",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new custom activity in the E&A app"}getInputSchema(){return Fc}async executeInternal(e){const t={color:e.color,icon_id:e.icon_id,name:e.name};return await this.mondayApi.request(ep,t),{content:{message:`Custom activity '${e.name}' with color ${e.color} and icon ${e.icon_id} successfully created`,name:e.name,color:e.color,icon_id:e.icon_id}}}},class extends me{constructor(){super(...arguments),this.name="create_notification",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Notification",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Send a notification to a user via the bell icon and optionally by email. Use target_type "Post" for updates/replies or "Project" for items/boards.'}getInputSchema(){return Mc}async executeInternal(e){const t={user_id:e.user_id,target_id:e.target_id,text:e.text,target_type:e.target_type};try{await this.mondayApi.request(Vc,t);return{content:{message:"Notification sent",user_id:e.user_id,text:e.text}}}catch(t){return{content:`Failed to send notification to user ${e.user_id}`}}}},class extends me{constructor(){super(...arguments),this.name="create_timeline_item",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Timeline Item",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new timeline item in the E&A app"}getInputSchema(){return Yc}async executeInternal(e){const t={item_id:e.item_id.toString(),custom_activity_id:e.custom_activity_id,title:e.title,timestamp:e.timestamp,summary:e.summary,content:e.content,location:e.location,phone:e.phone,url:e.url};e.start_timestamp&&e.end_timestamp&&(t.time_range={start_timestamp:e.start_timestamp,end_timestamp:e.end_timestamp});const a=await this.mondayApi.request(tp,t);return{content:{message:`Timeline item '${e.title}' with ID ${a.create_timeline_item?.id} successfully created on item ${e.item_id}`,timeline_item_id:a.create_timeline_item?.id,item_id:e.item_id,title:e.title}}}},class extends me{constructor(){super(...arguments),this.name="fetch_custom_activity",this.type=exports.ToolType.READ,this.annotations=ce({title:"Fetch Custom Activities",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get custom activities from the E&A app"}getInputSchema(){return pm}async executeInternal(e){const t=await this.mondayApi.request(ap);if(!t.custom_activity||0===t.custom_activity.length)return{content:{message:"No custom activities found",data:[]}};const a=t.custom_activity.map((e=>({id:e.id,name:e.name,color:e.color,icon_id:e.icon_id,type:e.type})));return{content:{message:`Found ${a.length} custom activities`,data:a}}}},class extends me{constructor(){super(...arguments),this.name="read_docs",this.type=exports.ToolType.READ,this.annotations=ce({title:"Read Documents",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Get information about monday.com documents. Supports two modes:\n\nMODE: "content" (default) — Fetch documents with their full markdown content.\n- Requires: type ("ids" | "object_ids" | "workspace_ids") and ids array\n- Supports pagination via page/limit. Check has_more_pages in response.\n- If type "ids" returns no results, automatically retries with object_ids.\n- Set include_blocks: true to include block IDs, types, and positions in the response — required before calling update_doc.\n- Blocks default to 25 per page. Use blocks_limit and blocks_page to paginate through long documents.\n- Set include_comments: true to fetch all comments and replies on the document. Each comment is enriched with anchor info (block_id, selection_from, selection_length) indicating which block and text range it\'s attached to. Use comments_limit to control how many comments per item (default 50).\n\nMODE: "version_history" — Fetch the edit history of a single document.\n- Requires: ids with the document\'s object_id (use the object_id field from content mode results, NOT the id field).\n- The object_id is the numeric ID visible in the document URL.\n- Returns restoring points sorted newest-first. Use version_history_limit to cap results (e.g., "last 3 changes" → version_history_limit: 3).\n- Use since/until to filter by time range. If omitted, returns full history.\n- Set include_diff: true to see what content changed between versions (fetches up to 10 diffs, may be slower).\n- Examples:\n - { mode: "version_history", ids: ["5001466606"], version_history_limit: 3 }\n - { mode: "version_history", ids: ["5001466606"], since: "2026-03-11T00:00:00Z", include_diff: true }'}getInputSchema(){return gu}async executeInternal(e){return e.mode===fu?this.executeVersionHistory(e):this.executeContent(e)}async executeContent(e){try{if(!e.type||!e.ids||0===e.ids.length)return{content:'Error: type and ids are required when mode is "content".'};let t,a,i;switch(this.sessionContext.metadata={...this.sessionContext.metadata,mode:e.mode??hu,include_comments:e.include_comments??!1,include_blocks:e.include_blocks??!1},e.type){case"ids":t=e.ids;break;case"object_ids":a=e.ids;break;case"workspace_ids":i=e.ids}const n=e.include_blocks??!1,o=n?{blocksLimit:e.blocks_limit,blocksPage:e.blocks_page}:{},r={ids:t,object_ids:a,limit:e.limit||25,order_by:e.order_by,page:e.page,workspace_ids:i,includeBlocks:n,...o};let s=await this.mondayApi.request(Vd,r);if((!s.docs||0===s.docs.length)&&t){const a={ids:void 0,object_ids:t,limit:e.limit||25,order_by:e.order_by,page:e.page,workspace_ids:i,includeBlocks:n,...o};s=await this.mondayApi.request(Vd,a)}if(!s.docs||0===s.docs.length){return{content:`No documents found matching the specified criteria${e.page?` (page ${e.page})`:""}.`}}const d=e.include_comments??!1,p=e.comments_limit??50;return this.sessionContext.metadata={...this.sessionContext.metadata,doc_ids:s.docs.flatMap((e=>e?[e.id]:[])),object_ids:s.docs.flatMap((e=>e?.object_id?[e.object_id]:[]))},this.enrichDocsWithMarkdown(s.docs,r,n,d,p,e.blocks_limit,e.blocks_page)}catch(e){return{content:`Error reading documents: ${e instanceof Error?e.message:"Unknown error occurred"}`}}}async executeVersionHistory(e){const{include_diff:t,since:a,until:i,version_history_limit:n}=e,o=e.ids?.[0];if(!o)return{content:'Error: ids is required when mode is "version_history". Provide the document object_id.'};this.sessionContext.metadata={...this.sessionContext.metadata,mode:fu,object_ids:[o]};try{const e={docId:o,since:a,until:i},r=await this.mondayApi.request(Md,e);let s=r?.doc_version_history?.restoring_points;if(!s||0===s.length)return{content:`No version history found for document ${o}${a?` from ${a}`:""}.`};if(!t)return n&&(s=s.slice(0,n)),{content:{doc_id:o,since:a,until:i,restoring_points:s}};const d=Math.min(n??10,10),p=s.slice(0,d+1),l=s.length>d,c=(await Promise.allSettled(p.map((async(e,t)=>{if(t===p.length-1||!e.date)return e;const a=p[t+1];if(!a?.date)return e;const i={docId:o,date:e.date,prevDate:a.date},n=await this.mondayApi.request(zd,i);return{...e,diff:n?.doc_version_diff?.blocks??[]}}))).then((e=>e.map(((e,t)=>"fulfilled"===e.status?e.value:p[t]))))).slice(0,d);return{content:{doc_id:o,since:a,until:i,restoring_points:c,...l&&{truncated:!0,total_count:s.length}}}}catch(e){return{content:`Error fetching version history for document ${o}: ${e instanceof Error?e.message:"Unknown error"}`}}}buildCommentAnchorMap(e){const t=new Map;for(const a of e){const e=a.content?.deltaFormat;if(!e||!Array.isArray(e))continue;let i=0;for(const n of e){const e=n.insert,o="string"==typeof e?e.length:1,r=n.attributes,s=r?.comments;if(s&&Array.isArray(s))for(const e of s){const n=String(e),r=t.get(n);if(r&&r.block_id===a.id){const e=Math.max(r.selection_from+r.selection_length,i+o);r.selection_length=e-r.selection_from}else r||t.set(n,{block_id:a.id,selection_from:i,selection_length:o})}i+=o}}return t}async fetchDocComments(e,t,a){try{const i={boardId:e,itemsLimit:100,updatesLimit:a},[n,o]=await Promise.all([this.mondayApi.request(Bd,i),this.mondayApi.request(cu,{docId:[t]}).catch((()=>null))]),r=n.boards?.[0]?.items_page?.items;if(!r)return[];let s=new Map;if(o){const e=(o.docs?.[0]?.blocks??[]).filter((e=>null!=e)).map((e=>{let t;if("string"==typeof e.content)try{t=JSON.parse(e.content)}catch{t={}}else t=e.content??{};return{id:e.id??"",type:e.type??"",content:t}}));s=this.buildCommentAnchorMap(e)}const d=[];for(const e of r)if(e.updates&&0!==e.updates.length)for(const t of e.updates)d.push({id:t.id,text_body:t.text_body,body:t.body,created_at:t.created_at,creator:t.creator?{id:t.creator.id,name:t.creator.name}:null,item_id:e.id,item_name:e.name,anchor:s.get(t.id)??null,replies:(t.replies??[]).map((e=>({id:e.id,text_body:e.text_body,body:e.body,created_at:e.created_at,creator:e.creator?{id:e.creator.id,name:e.creator.name}:null})))});return d}catch(e){return`Error fetching comments: ${e instanceof Error?e.message:"Unknown error"}`}}async enrichDocsWithMarkdown(e,t,a,i=!1,n=50,o,r){const s=await Promise.all(e.filter((e=>null!==e)).map((async e=>{let t,s="";try{const t={docId:e.id},a=await this.mondayApi.request(ip,t);s=a.export_markdown_from_doc.success&&a.export_markdown_from_doc.markdown?a.export_markdown_from_doc.markdown:`Error getting markdown: ${a.export_markdown_from_doc.error||"Unknown error"}`}catch(e){s=`Error getting markdown: ${e instanceof Error?e.message:"Unknown error"}`}return i&&e.object_id&&(t=await this.fetchDocComments(e.object_id,e.id,n)),{id:e.id,object_id:e.object_id,name:e.name,doc_kind:e.doc_kind,created_at:e.created_at,created_by:e.created_by?.name||"Unknown",url:e.url,relative_url:e.relative_url,workspace:e.workspace?.name||"Unknown",workspace_id:e.workspace_id,doc_folder_id:e.doc_folder_id,settings:e.settings,...a&&{blocks:(e.blocks??[]).filter((e=>null!=e)).map((e=>({id:e.id,type:e.type,parent_block_id:e.parent_block_id,position:e.position,content:e.content}))),...void 0!==o||void 0!==r?{blocks_pagination:{current_page:r??1,limit:o??25,count:(e.blocks??[]).filter((e=>null!=e)).length,has_more_pages:(e.blocks??[]).length===(o??25)}}:{}},blocks_as_markdown:s,...i&&{comments:t}}}))),d=t.page||1,p=t.limit||25,l=s.length,c=l===p;return{content:{message:`Documents retrieved (${s.length})`,pagination:{current_page:d,limit:p,count:l,has_more_pages:c},data:s}}}},class extends me{constructor(){super(...arguments),this.name="workspace_info",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Workspace Information",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"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."}getInputSchema(){return bu}async executeInternal(e){const t={workspace_id:e.workspace_id},a=await this.mondayApi.request(np,t);if(!a.workspaces||0===a.workspaces.length)return{content:`No workspace found with ID ${e.workspace_id}`};const i=function(e,t){const{workspaces:a,boards:i,docs:n,folders:o}=e,r=a?.[0];if(!r)throw new Error("No workspace found");const s=new Map((o||[]).filter((e=>null!=e&&null!=e.id&&null!=e.name)).map((e=>[e.id,{id:e.id,name:e.name,boards:[],docs:[]}]))),d=[];(i||[]).filter((e=>null!=e&&null!=e.id&&null!=e.name)).forEach((e=>{const t={id:e.id,name:e.name};e.board_folder_id&&s.has(e.board_folder_id)?s.get(e.board_folder_id).boards.push(t):d.push(t)}));const p=[];return(n||[]).filter((e=>null!=e&&null!=e.id&&null!=e.name)).forEach((e=>{const t={id:e.id,name:e.name};e.doc_folder_id&&s.has(e.doc_folder_id)?s.get(e.doc_folder_id).docs.push(t):p.push(t)})),{workspace:{id:r.id,name:r.name,url:t?tu(t,r.id):void 0,description:r.description||"",kind:r.kind||"",created_at:r.created_at||"",state:r.state||"",is_default_workspace:r.is_default_workspace||!1,owners_subscribers:(r.owners_subscribers||[]).filter((e=>null!=e&&null!=e.id&&null!=e.name&&null!=e.email)).map((e=>({id:e.id,name:e.name,email:e.email})))},folders:Array.from(s.values()),root_items:{boards:d,docs:p}}}(a,await eu(this.mondayApi));return{content:{message:"Workspace info retrieved",data:i}}}},class extends me{constructor(){super(...arguments),this.name="list_workspaces",this.type=exports.ToolType.READ,this.annotations=ce({title:"List Workspaces",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'List all workspaces available to the user, ordered by membership (user\'s workspaces first). Returns workspaces with their ID, name, and description.\n[IMPORTANT] To search for workspaces by name, use the "search" tool with searchType WORKSPACES instead — it provides faster and more accurate results.'}getInputSchema(){return wu}async executeInternal(e){const t=t=>({limit:e.limit,page:e.page,membershipKind:t}),a=yu(await this.mondayApi.request(vu,t(fs.Member)));let i=a;if(!Iu(a)){i=yu(await this.mondayApi.request(vu,t(fs.All)))}if(!Iu(i))return{content:{message:"No workspaces found.",data:[]}};const n=i.length===e.limit,o=await eu(this.mondayApi),r=i.map((e=>({id:e.id,name:e.name,description:e.description||void 0,url:o&&e.id?tu(o,e.id):void 0})));return{content:{message:"Workspaces retrieved",...n?{next_page:e.page+1}:{},data:r}}}},class extends me{constructor(){super(...arguments),this.name="create_doc",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Document",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'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.\n\nLOCATION TYPES:\n- workspace: Creates a document in a workspace (requires workspace_id, optional doc_kind, optional folder_id, optional docOwnerIds)\n- item: Creates a document attached to an item (requires item_id, optional column_id, optional docOwnerIds)\n\nUSAGE EXAMPLES:\n- Workspace doc: { location: "workspace", workspace_id: 123, doc_name: "My Doc", doc_kind: "private" , markdown: "..." }\n- Workspace doc in folder: { location: "workspace", workspace_id: 123, doc_name: "My Doc", folder_id: 17264196 , markdown: "..." }\n- Item doc: { location: "item", item_id: 456, doc_name: "My Doc", column_id: "doc_col_1" , markdown: "..." }\n- Workspace doc with agent owner: { location: "workspace", workspace_id: 123, doc_name: "My Doc", markdown: "...", docOwnerIds: ["<agent_owner_user_id>"] }'}getInputSchema(){return Ou}async executeInternal(e){const t=Du.safeParse({...e,type:e.location});if(!t.success)return{content:`Required parameters were not provided for location parameter of ${e.location}`};const a=t.data;try{let t,i,n;if(a.type===Nu.enum.workspace){const o={location:{workspace:{workspace_id:a.workspace_id.toString(),name:e.doc_name,kind:a.doc_kind||Wn.Public,folder_id:a.folder_id?.toString()}},...void 0!==e.docOwnerIds?{docOwnerIds:e.docOwnerIds}:{}},r=await this.mondayApi.request(Eu,o);t=r?.create_doc?.id??void 0,i=r?.create_doc?.object_id??void 0,n=r?.create_doc?.url??void 0}else if(a.type===Nu.enum.item){const o={itemId:a.item_id.toString()},r=await this.mondayApi.request(Tu,o),s=r.items?.[0];if(!s)return{content:`Error: Item with id ${a.item_id} not found.`};const d=s.board?.id,p=s.board?.columns?.find((e=>e&&e.type===$c.Doc));let l=a.column_id;if(!l)if(p)l=p.id;else{const e={boardId:d.toString(),columnType:$c.Doc,columnTitle:"Doc"},t=await this.mondayApi.request(Kd,e);if(l=t?.create_column?.id,!l)return{content:"Error: Failed to create doc column."}}const c={location:{board:{item_id:a.item_id.toString(),column_id:l}},...void 0!==e.docOwnerIds?{docOwnerIds:e.docOwnerIds}:{}},m=await this.mondayApi.request(Eu,c);if(t=m.create_doc?.id??void 0,i=m.create_doc?.object_id??void 0,n=m.create_doc?.url??void 0,e.doc_name&&t)try{const a={docId:t,name:e.doc_name};await this.mondayApi.request(Su,a)}catch(e){console.warn("Failed to update doc name:",e)}}if(!t)return{content:"Error: Failed to create document."};const o={docId:t,markdown:e.markdown},r=await this.mondayApi.request(Au,o),s=r?.add_content_to_doc_from_markdown?.success,d=r?.add_content_to_doc_from_markdown?.error;return s?(this.sessionContext.metadata={...this.sessionContext.metadata,location:e.location,...t&&{doc_id:t},...i&&{object_id:i}},{content:{message:"Document successfully created",doc_id:t,object_id:i,doc_url:n,doc_name:e.doc_name}}):{content:`Document ${t} created, but failed to add markdown content: ${d||"Unknown error"}`}}catch(e){return{content:`Error creating document: ${e instanceof Error?e.message:"Unknown error"}`}}}},class extends me{constructor(){super(...arguments),this.name="add_content_to_doc",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Add Content to Document",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Add markdown content to an existing monday.com document.\n\nIDENTIFICATION: Provide either doc_id or object_id to identify the document:\n- doc_id: The document ID (the id field returned by read_docs). Takes priority if both provided.\n- object_id: The document object ID (the object_id field from read_docs, also visible in the document URL). Will be resolved to a doc_id.\n\nUSAGE EXAMPLES:\n- By doc_id: { doc_id: "123", markdown: "# New Section\\nContent here" }\n- By object_id: { object_id: "456", markdown: "# New Section\\nContent here" }\n- Insert after block: { doc_id: "123", markdown: "Inserted content", after_block_id: "block_789" }'}getInputSchema(){return $u}async executeInternal(e){if(!e.doc_id&&!e.object_id)return{content:"Error: Either doc_id or object_id must be provided."};try{let t=null;if(e.doc_id){const a=await this.mondayApi.request(Ru,{docId:[e.doc_id]});t=a.docs?.[0]??null}else{const a=await this.mondayApi.request(Cu,{objectId:[e.object_id]});t=a.docs?.[0]??null}if(!t){return{content:`Error: No document found for ${e.doc_id?`doc_id ${e.doc_id}`:`object_id ${e.object_id}`}.`}}this.sessionContext.metadata={...this.sessionContext.metadata,doc_id:t.id,...e.object_id&&{object_id:e.object_id}};const a={docId:t.id,markdown:e.markdown,afterBlockId:e.after_block_id},i=await this.mondayApi.request(ku,a);if(!i?.add_content_to_doc_from_markdown)return{content:"Error: Failed to add content to document — no response from API."};const{success:n,block_ids:o,error:r}=i.add_content_to_doc_from_markdown;if(!n)return{content:`Error adding content to document: ${r||"Unknown error"}`};const s=o?.length??0;return{content:{message:`Successfully added content to document ${t.id}. ${s} block${1===s?"":"s"} created.`,doc_id:t.id,block_ids:o,doc_name:t.name,doc_url:t.url}}}catch(e){return{content:`Error adding content to document: ${e instanceof Error?e.message:"Unknown error"}`}}}},class extends me{constructor(){super(...arguments),this.name="update_doc",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Document",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return'Update an existing monday.com document. Provide doc_id (preferred) or object_id, plus an ordered operations array (executed sequentially, stops on first failure).\n\nOPERATIONS:\n- set_name: Rename the document.\n- add_markdown_content: Append markdown as blocks (or insert after a block). Best for text, headings, lists, simple tables — no block IDs needed.\n- update_block: Update content of an existing text, code, or list_item block in-place.\n- create_block: Create a new block at a precise position. Use parent_block_id to nest inside notice_box, table cell, or layout cell.\n- delete_block: Remove any block. The ONLY option for BOARD, WIDGET, DOC embed, and GIPHY blocks.\n- replace_block: Delete a block and create a new one in its place (use when update_block is not supported).\n- add_comment: Create a new comment or reply on the document (doc-level, block-level, or text-selection).\n\nWHEN TO USE EACH OPERATION:\n- text / code / list_item → update_block. Use replace_block to change subtype (e.g. NORMAL_TEXT→LARGE_TITLE)\n- divider / table / image / video / notice_box / layout → replace_block (properties immutable after creation)\n- BOARD / WIDGET / DOC / GIPHY → delete_block only\n\nGETTING BLOCK IDs: Call read_docs with include_blocks: true — returns id, type, position, and content per block.\n\nBLOCK CONTENT (delta_format): Array of insert ops. Last op MUST be {insert: {text: "\\n"}}.\n- Plain: [{insert: {text: "Hello"}}, {insert: {text: "\\n"}}]\n- Bold: [{insert: {text: "Hi"}, attributes: {bold: true}}, {insert: {text: "\\n"}}]\n- Mention user/doc/board: [{insert: {text: "Hey "}}, {insert: {mention: {id: 12345, type: "USER"}}}, {insert: {text: "\\n"}}] — type is USER, DOC, or BOARD. id is numeric (user IDs from list_users_and_teams)\n- Inline column value: [{insert: {column_value: {item_id: 111, column_id: "status"}}}, {insert: {text: "\\n"}}]\n- Supported attributes: bold, italic, underline, strike, code, link, color, background (not applicable to mention/column_value ops)\n\nIMAGE WITH ASSET: For asset-based images, use create_block with block_type "image" and asset_id (instead of public_url). add_markdown_content does NOT support asset images — for mixed content, alternate add_markdown_content (text) and create_block (image) operations in sequence.\n\nCOMMENTS:\n- add_comment: Create a new comment or reply on the document. Three scopes:\n - Doc-level (no block_id): comment appears on the doc as a whole.\n - Block-level (block_id only): comment is anchored to a specific block. The block shows a comment indicator in the UI.\n - Text-selection (block_id + selection_from + selection_length): comment is anchored to a specific character range inside a text/code/list_item block. That text is highlighted with a comment marker.\n Block-level and text-selection comments only work on blocks with text content (text, code, list_item, title, quote). They do NOT work on: divider, page_break, table, layout, notice_box, image, video, or giphy blocks.\n Get block IDs from read_docs with include_blocks: true. Format body with HTML, not markdown. Use mentions_list for @mentions.'}getInputSchema(){return hh}async executeInternal(e){if(!e.doc_id&&!e.object_id)return{content:"Error: Either doc_id or object_id must be provided."};this.sessionContext.metadata={...this.sessionContext.metadata,operation_types:e.operations?.map((e=>e.operation_type)),operation_count:e.operations?.length??0,...e.object_id&&{object_id:e.object_id}};try{let t=e.doc_id;if(!t){const a=await this.mondayApi.request(ru,{objectId:[e.object_id]}),i=a.docs?.[0];if(!i)return{content:`Error: No document found for object_id ${e.object_id}.`};t=i.id}const a=[];let i=null;for(let n=0;n<e.operations.length;n++){const o=e.operations[n];try{const i=await this.executeOperation(t,o,e.object_id);a.push(`- [OK] ${o.operation_type}${i?`: ${i}`:""}`)}catch(e){const t=e instanceof Error?e.message:"Unknown error";a.push(`- [FAILED] ${o.operation_type}: ${t}`),i=n;break}}const n=null!==i?i:e.operations.length,o=e.operations.length,r=`Completed ${n}/${o} operation${1===o?"":"s"} on doc ${t}.`;return this.sessionContext.metadata={...this.sessionContext.metadata,doc_id:t},{content:`${r}\n\nResults:\n${a.join("\n")}\n\nDoc ID: ${t}`}}catch(e){return{content:`Error: ${e instanceof Error?e.message:String(e)}`}}}async executeOperation(e,t,a){switch(t.operation_type){case"set_name":return this.executeSetName(e,t.name);case"add_markdown_content":return this.executeAddMarkdown(e,t.markdown,t.after_block_id);case"update_block":return this.executeUpdateBlock(t.block_id,t.content);case"create_block":return this.executeCreateBlock(e,t.block,t.after_block_id,t.parent_block_id);case"delete_block":return this.executeDeleteBlock(t.block_id);case"replace_block":return this.executeReplaceBlock(e,t.block_id,t.block,t.after_block_id,t.parent_block_id);case"add_comment":return this.executeAddComment(e,a,t.body,t.parent_update_id,t.mentions_list,t.block_id,t.selection_from,t.selection_length);default:{const e=t.operation_type;throw new Error(`Unsupported operation type: "${e}"`)}}}async executeSetName(e,t){const a={docId:e,name:t},i=await this.mondayApi.request(nu,a);if(!i?.update_doc_name)throw new Error(`No confirmation from update_doc_name — rename to "${t}" may not have applied`);return`Renamed to "${t}"`}async executeAddMarkdown(e,t,a){if(!t.trim())throw new Error("markdown must not be empty");const i={docId:e,markdown:t,afterBlockId:a},n=await this.mondayApi.request(ou,i),o=n?.add_content_to_doc_from_markdown;if(!o?.success)throw new Error(o?.error||"Failed to add markdown content");const r=o.block_ids?.length??0;return`${r} block${1===r?"":"s"} added${o.block_ids?.length?`. Block IDs: ${o.block_ids.join(", ")}`:""}`}async executeUpdateBlock(e,t){const a=function(e){switch(e.block_content_type){case"text":return{deltaFormat:Fu(e.delta_format),alignment:e.alignment,direction:e.direction};case"code":return{deltaFormat:Fu(e.delta_format),language:e.language};case"list_item":return{deltaFormat:Fu(e.delta_format),checked:e.checked,indentation:e.indentation};default:{const t=e.block_content_type;throw new Error(`Unsupported block_content_type: "${t}"`)}}}(t),i={blockId:e,content:JSON.stringify(a)},n=await this.mondayApi.request(su,i);if(!n?.update_doc_block)throw new Error("No response from update_doc_block");return`Block ${e} updated`}async executeCreateBlock(e,t,a,i){const n=function(e){switch(e.block_type){case"text":return{text_block:{delta_format:Pu(e.delta_format),text_block_type:e.text_block_type?e.text_block_type:void 0,alignment:xu(e.alignment),direction:Lu(e.direction)}};case"list_item":return{list_block:{delta_format:Pu(e.delta_format),list_block_type:e.list_block_type?e.list_block_type:void 0,indentation:e.indentation}};case"code":return{text_block:{delta_format:Pu(e.delta_format),text_block_type:Kr.Code}};case"divider":return{divider_block:{}};case"page_break":return{page_break_block:{}};case"image":if(null==e.asset_id&&!e.public_url)throw new Error("image block requires either asset_id or public_url");return{image_block:null!=e.asset_id?{asset_id:String(e.asset_id),width:e.width}:{public_url:e.public_url,width:e.width}};case"video":return{video_block:{raw_url:e.raw_url,width:e.width}};case"notice_box":return{notice_box_block:{theme:e.theme}};case"table":return{table_block:{row_count:e.row_count,column_count:e.column_count,width:e.width,column_style:e.column_style?.map((e=>({width:e.width})))}};case"layout":return{layout_block:{column_count:e.column_count,column_style:e.column_style?.map((e=>({width:e.width})))}};default:{const t=e.block_type;throw new Error(`Unsupported block_type: "${t}"`)}}}(t);if(i){const e=Object.keys(n);if(1!==e.length)throw new Error(`Cannot inject parent_block_id: expected exactly 1 key in block input, got: ${e.join(", ")}`);const t=e[0],a=n[t];if(!a||"object"!=typeof a)throw new Error(`Cannot inject parent_block_id into block type "${t}" — block value is not an object`);a.parent_block_id=i}const o={docId:e,afterBlockId:a,blocksInput:[n]},r=await this.mondayApi.request(uu,o),s=r?.create_doc_blocks;if(!s||0===s.length)throw new Error("No blocks returned from create_doc_blocks");return`Block created (ID: ${s.map((e=>e.id)).join(", ")})`}async executeDeleteBlock(e){const t={blockId:e},a=await this.mondayApi.request(du,t);if(!a?.delete_doc_block)throw new Error("No response from delete_doc_block");return`Block ${e} deleted`}async resolveObjectId(e,t){if(t)return t;const a=await this.mondayApi.request(pu,{docId:[e]}),i=a.docs?.[0];if(!i?.object_id)throw new Error(`Could not resolve object_id for doc ${e}`);return i.object_id}async resolveDocItemId(e){const t=await this.mondayApi.request(lu,{boardId:e}),a=t.boards?.[0]?.items_page?.items?.[0]?.id;if(!a)throw new Error(`No item found on the document backing board (object_id: ${e})`);return a}async fetchAllBlockContent(e){const t=await this.mondayApi.request(cu,{docId:[e]});return(t.docs?.[0]?.blocks??[]).filter((e=>null!=e)).map((t=>{let a;if("string"==typeof t.content)try{a=JSON.parse(t.content)}catch{throw new Error(`Failed to parse content of block ${t.id} in doc ${e} as JSON`)}else a=t.content??{};return{id:t.id??"",type:t.type??"",content:a}}))}async executeAddComment(e,t,a,i,n,o,r,s){if((null!=r||null!=s)&&!o)throw new Error("selection_from and selection_length require block_id");if(null!=r!=(null!=s))throw new Error("selection_from and selection_length must both be provided together");const d=o?Array.isArray(o)?o:[o]:[];if((null!=r||null!=s)&&d.length>1)throw new Error("selection_from and selection_length are only supported with a single block_id");const p=await this.resolveObjectId(e,t),l=await this.resolveDocItemId(p);let c;if(n){const e=JSON.parse(n),t=Jc.safeParse(e);if(!t.success)throw new Error(`Invalid mentions_list format: ${t.error.message}`);c=t.data}const m={itemId:l,body:a,parentId:i?.toString(),mentionsList:c},u=await this.mondayApi.request(mu,m);if(!u.create_update?.id)throw new Error("Failed to create comment: no update returned");const h=u.create_update.id,f=Number(h),_=i?`Reply to update ${i}`:"Comment";if(d.length>0){if(Number.isNaN(f))throw new Error(`${_} created (update ID: ${h}) but block annotation aborted: comment ID is not numeric and cannot be used as a delta reference`);const t=await this.fetchAllBlockContent(e);for(const a of d){const i=t.find((e=>e.id===a));if(!i)throw new Error(`${_} created (update ID: ${h}) but block annotation failed: block ${a} not found in doc ${e}`);const n=i.content.deltaFormat;if(!n)throw new Error(`${_} created (update ID: ${h}) but block annotation failed: block ${a} has no deltaFormat — only text, code, and list_item blocks are supported`);let o=0;for(const e of n)o+="string"==typeof e.insert?e.insert.length:1;if(0===o)throw new Error(`${_} created (update ID: ${h}) but block annotation failed: block ${a} has an empty deltaFormat and cannot be annotated`);const d=r??0,p=s??o;if(d+p>o)throw new Error(`${_} created (update ID: ${h}) but block annotation failed: selection [${d}, ${d+p}) is out of range for block ${a} (total length ${o})`);let l;try{l=Mu(n,f,d,p)}catch(e){const t=e instanceof Error?e.message:String(e);throw new Error(`${_} created (update ID: ${h}) but delta annotation failed for block ${a}: ${t}`)}const c={...i.content,deltaFormat:l},m=await this.mondayApi.request(su,{blockId:a,content:JSON.stringify(c)});if(!m?.update_doc_block)throw new Error(`${_} created (update ID: ${h}) but block annotation write returned no confirmation for block ${a}`)}}const g=d.length;return`${_} created${g>1?` across ${g} blocks`:1===g?" on block":""} (update ID: ${h})`}async executeReplaceBlock(e,t,a,i,n){await this.executeDeleteBlock(t);try{return`Block ${t} replaced. ${await this.executeCreateBlock(e,a,i,n)}`}catch(e){const a=e instanceof Error?e.message:String(e);throw new Error(`Original block ${t} was deleted, but replacement creation failed: ${a}. The original block is gone.`)}}},class extends me{constructor(){super(...arguments),this.name="update_workspace",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Workspace",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Update an existing workspace in monday.com"}getInputSchema(){return Ih}async executeInternal(e){const t={id:e.id,attributes:{account_product_id:e.attributeAccountProductId,description:e.attributeDescription,kind:e.attributeKind,name:e.attributeName}},a=await this.mondayApi.request(yh,t),i=await eu(this.mondayApi),n=i?tu(i,a.update_workspace?.id):void 0;return{content:{message:`Workspace ${a.update_workspace?.id} updated`,workspace_id:a.update_workspace?.id,workspace_name:a.update_workspace?.name,workspace_url:n}}}},class extends me{constructor(){super(...arguments),this.name="update_folder",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Folder",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Update an existing folder in monday.com"}getInputSchema(){return Th}async executeInternal(e){const{position_object_id:t,position_object_type:a,position_is_after:i}=e;if(!!t!=!!a)throw new Error("position_object_id and position_object_type must be provided together");const n={folderId:e.folderId,name:e.name,color:e.color,fontWeight:e.fontWeight,customIcon:e.customIcon,parentFolderId:e.parentFolderId,workspaceId:e.workspaceId,accountProductId:e.accountProductId,position:t?{position_is_after:i,position_object_id:t,position_object_type:a}:void 0},o=await this.mondayApi.request(wh,n);return{content:{message:`Folder ${o.update_folder?.id} updated`,folder_id:o.update_folder?.id,folder_name:o.update_folder?.name}}}},class extends me{constructor(){super(...arguments),this.name="create_workspace",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Workspace",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new workspace in monday.com"}getInputSchema(){return Ah}async executeInternal(e){const t={name:e.name,workspaceKind:e.workspaceKind,description:e.description,accountProductId:e.accountProductId},a=await this.mondayApi.request(Eh,t),i=await eu(this.mondayApi),n=i&&a.create_workspace?.id?tu(i,a.create_workspace.id):void 0;return{content:{message:`Workspace ${a.create_workspace?.id} successfully created`,workspace_id:a.create_workspace?.id,workspace_name:a.create_workspace?.name,workspace_url:n}}}},class extends me{constructor(){super(...arguments),this.name="create_folder",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Folder",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new folder in a monday.com workspace"}getInputSchema(){return Nh}async executeInternal(e){const t={workspaceId:e.workspaceId,name:e.name,color:e.color,fontWeight:e.fontWeight,customIcon:e.customIcon,parentFolderId:e.parentFolderId},a=await this.mondayApi.request(Sh,t);return{content:{message:`Folder ${a.create_folder?.id} successfully created`,folder_id:a.create_folder?.id,folder_name:a.create_folder?.name}}}},class extends me{constructor(){super(...arguments),this.name="move_object",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Move Object",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Move a folder, board, or overview in monday.com. Use position for relative placement based on another object, parentFolderId for folder changes, workspaceId for workspace moves, and accountProductId for account product changes."}getInputSchema(){return kh}async executeUpdateFolder(e){const{id:t,position_object_id:a,position_object_type:i,position_is_after:n,parentFolderId:o,workspaceId:r,accountProductId:s}=e;if(!!a!=!!i)throw new Error("position_object_id and position_object_type must be provided together");const d={folderId:t,position:a?{position_is_after:n,position_object_id:a,position_object_type:i}:void 0,parentFolderId:o,workspaceId:r,accountProductId:s},p=await this.mondayApi.request(wh,d);return{content:{message:"Object moved",object_id:p.update_folder?.id}}}async executeUpdateBoardHierarchy(e){const{id:t,position_object_id:a,position_object_type:i,position_is_after:n,parentFolderId:o,workspaceId:r,accountProductId:s}=e;if(!!a!=!!i)throw new Error("position_object_id and position_object_type must be provided together");const d={boardId:t,attributes:{position:a?{position_is_after:n,position_object_id:a,position_object_type:i}:void 0,folder_id:o,workspace_id:r,account_product_id:s}},p=await this.mondayApi.request(Dh,d);return p.update_board_hierarchy?.success?{content:{message:"Board position updated",object_id:p.update_board_hierarchy?.board?.id,action_name:"move_board"}}:{content:`Board position update failed: ${p.update_board_hierarchy?.message}`}}async executeUpdateOverviewHierarchy(e){const{id:t,position_object_id:a,position_object_type:i,position_is_after:n,parentFolderId:o,workspaceId:r,accountProductId:s}=e;if(!!a!=!!i)throw new Error("position_object_id and position_object_type must be provided together");const d={overviewId:t,attributes:{position:a?{position_is_after:n,position_object_id:a,position_object_type:i}:void 0,folder_id:o,workspace_id:r,account_product_id:s}},p=await this.mondayApi.request(Oh,d);return p.update_overview_hierarchy?.success?{content:{message:"Overview position updated",object_id:p.update_overview_hierarchy?.overview?.id}}:{content:`Overview position update failed: ${p.update_overview_hierarchy?.message}`}}async executeInternal(e){const{objectType:t}=e;switch(t){case wr.Folder:return this.executeUpdateFolder(e);case wr.Board:return this.executeUpdateBoardHierarchy(e);case wr.Overview:return this.executeUpdateOverviewHierarchy(e);default:throw new Error(`Unsupported object type: ${t}`)}}},class extends me{constructor(){super(...arguments),this.name="create_dashboard",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Dashboard",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Use this tool to create a new monday.com dashboard that aggregates data from one or more boards. \n Dashboards provide visual representations of board data through widgets and charts.\n \n Use this tool when users want to:\n - Create a dashboard to visualize board data\n - Aggregate information from multiple boards\n - Set up a data visualization container for widgets"}getInputSchema(){return bh}async executeInternal(e){try{const t={name:e.name,workspace_id:e.workspace_id.toString(),board_ids:e.board_ids,kind:e.kind,board_folder_id:e.board_folder_id?.toString()},a=await this.mondayApi.request(fh,t);if(!a.create_dashboard)throw new Error("Failed to create dashboard");const i=a.create_dashboard;return{content:{message:`Dashboard ${i.id} successfully created`,dashboard_id:i.id,dashboard_name:i.name}}}catch(e){const t=e instanceof Error?e.message:String(e);throw new Error(`Failed to create dashboard: ${t}`)}}},class extends me{constructor(){super(...arguments),this.name="all_widgets_schema",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get All Widget Schemas",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Fetch complete JSON Schema 7 definitions for all available widget types in monday.com.\n \n This tool is essential before creating widgets as it provides:\n - Complete schema definitions for all supported widgets\n - Required and optional fields for each widget type\n - Data type specifications and validation rules\n - Detailed descriptions of widget capabilities\n \n Use this tool when you need to:\n - Understand widget configuration requirements before creating widgets\n - Validate widget settings against official schemas\n - Plan widget implementations with proper data structures\n \n The response includes JSON Schema 7 definitions that describe exactly what settings each widget type accepts."}getInputSchema(){return{}}async executeInternal(){try{const e={},t=await this.mondayApi.request(_h,e);if(!t.all_widgets_schema||0===t.all_widgets_schema.length)throw new Error("No widget schemas found - API returned empty response");const a={};let i=0;for(const e of t.all_widgets_schema)if(e?.widget_type&&e?.schema){const t="string"==typeof e.schema?JSON.parse(e.schema):e.schema,n=t?.description||t?.title||`${e.widget_type} widget for data visualization`;a[e.widget_type]={type:e.widget_type,description:n,schema:e.schema},i++}if(0===i)throw new Error("No valid widget schemas found in API response");Object.keys(a).map((e=>`• **${e}**: ${a[e].description}`)).join("\n");return{content:{message:"Widgets schema",data:a,url:Sm}}}catch(e){const t=e instanceof Error?e.message:String(e);throw new Error(`Failed to fetch widget schemas: ${t}`)}}},class extends me{constructor(){super(...arguments),this.name="create_widget",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Widget",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new widget in a dashboard or board view with specific configuration settings.\n \n This tool creates data visualization widgets that display information from monday.com boards:\n **Parent Containers:**\n - **DASHBOARD**: Place widget in a dashboard (most common use case)\n - **BOARD_VIEW**: Place widget in a specific board view\n \n **Critical Requirements:**\n 1. **Schema Compliance**: Widget settings MUST conform to the JSON schema for the specific widget type\n 2. **Use all_widgets_schema first**: Always fetch widget schemas before creating widgets\n 3. **Validate settings**: Ensure all required fields are provided and data types match\n \n **Workflow:**\n 1. Use 'all_widgets_schema' to get schema definitions\n 2. Prepare widget settings according to the schema\n 3. Use this tool to create the widget"}getInputSchema(){return vh}async executeInternal(e){if(!e.settings)throw new Error("You must pass the settings parameter");try{const t={parent:{kind:e.parent_container_type,id:e.parent_container_id.toString()},kind:e.widget_kind,name:e.widget_name,settings:e.settings},a=await this.mondayApi.request(gh,t);if(!a.create_widget)throw new Error("Failed to create widget");const i=a.create_widget;i.parent?.kind===us.Dashboard?i.parent.id:i.parent;return{content:{message:`Widget ${i.id} created`,widget_id:i.id,widget_name:i.name,dashboard_id:i.parent?.id}}}catch(t){const a=t instanceof Error?t.message:String(t);throw new Error(`Failed to create ${e.widget_kind} widget: ${a}`)}}},class extends me{constructor(){super(...arguments),this.name="board_insights",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Board Insights",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"This tool allows you to calculate insights about board's data by filtering, grouping and aggregating columns. For example, you can get the total number of items in a board, the number of items in each status, the number of items in each column, etc. Use this tool when you need to get a summary of the board's data, for example, you want to know the total number of items in a board, the number of items in each status, the number of items in each column, etc.[REQUIRED PRECONDITION]: Before using this tool, if new columns were added to the board or if you are not familiar with the board's structure (column IDs, column types, status labels, etc.), first use get_board_info to understand the board metadata. This is essential for constructing proper filters and knowing which columns are available.[IMPORTANT]: For some columns, human-friendly label is returned inside 'LABEL_<column_id' field. E.g. for column with id 'status_123' the label is returned inside 'LABEL_status_123' field."}getInputSchema(){return Uh}async executeInternal(e){if(!e.aggregations)return{content:'Input must contain the "aggregations" field.'};const{selectElements:t,groupByElements:a}=function(e){const t={},a=e.groupBy?.map((e=>({column_id:e})))||[],i=new Set(e.aggregations.filter((e=>e.function===In.Label)).map((e=>e.columnId))),n=e.groupBy?.filter((e=>!i.has(e))).map((e=>({function:In.Label,columnId:e})))??[],o=e.aggregations.concat(n).map((e=>{if(e.function){const o=`${e.function}_${e.columnId}`,r=t[o]||0;t[o]=r+1;const s=`${o}_${r}`;return xh.has(e.function)&&(a.some((e=>e.column_id===s))||a.push({column_id:s})),{type:yn.Function,function:(i=e.function,n=e.columnId,{function:i,params:i===In.CountItems?[]:[{type:yn.Column,column:Lh(n),as:n}]}),as:s}}var i,n;const o={type:yn.Column,column:Lh(e.columnId),as:e.columnId};return a.some((t=>t.column_id===e.columnId))||a.push({column_id:e.columnId}),o}));return a.forEach((e=>{o.some((t=>t.as===e.column_id))||o.push({type:yn.Column,column:Lh(e.column_id),as:e.column_id})})),{selectElements:o,groupByElements:a}}(e),i=function(e){if(!e.filters&&!e.orderBy)return;const t={};return e.filters&&(t.rules=e.filters.map((e=>({column_id:e.columnId,compare_value:e.compareValue,operator:e.operator,compare_attribute:e.compareAttribute}))),t.operator=e.filtersOperator),e.orderBy&&(t.order_by=function(e){return e.orderBy?.map((e=>({column_id:e.columnId,direction:e.direction})))}(e)),t}(e),n=function(e){return{id:e.boardId.toString(),type:vn.Table}}(e),o={query:{from:n,query:i,select:t,group_by:a,limit:e.limit},boardId:String(e.boardId)},r=await this.mondayApi.request(Ch,o),s=(r.aggregate?.results??[]).map((e=>{const t={};return(e.entries??[]).forEach((e=>{const a=e.alias??"";if(!a)return;const i=e.value;if(!i)return void(t[a]=null);const n=i.result??i.value??null;t[a]=n})),t}));return s.length?{content:{message:"Board insights retrieved",board_name:r.boards?.[0]?.name,board_url:r.boards?.[0]?.url,data:s}}:{content:"No board insights found for the given query."}}},class extends me{constructor(){super(...arguments),this.name="search",this.type=exports.ToolType.READ,this.annotations=ce({title:"Search",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Search within monday.com platform. Supported searchType values: BOARD, DOCUMENTS, FOLDERS, WORKSPACES, UPDATES, ITEMS, TIMELINE_ITEMS.\nFor searching/listing specific users and teams, use list_users_and_teams tool.\nFor account-level info (plan, member count, products), use get_user_context tool.\nFor browsing all boards, docs, or folders within a workspace without a search term, use workspace_info tool.\nFor groups, use get_board_info tool.\nITEMS search returns id, title, and url.\nWORKSPACES search returns id, title, and description.\nUPDATES search returns id, title (the update body), itemId, boardId, and creatorId. Optionally scope it with boardIds and/or creatorIds.\nTIMELINE_ITEMS search returns id, title, summary, and content.\nFOLDERS search requires workspaceIds and returns id and title.\n "}getInputSchema(){return Hh}async executeInternal(e){try{if(e.searchType===Gh.FOLDERS){return{content:{message:"Search results",data:await this.searchFoldersAsync(e)}}}return{content:{message:"Search results",data:await this.runSmartSearchAsync(e)}}}catch(e){throw pp(e),e}}async runSmartSearchAsync(e){const t=e.workspaceIds?.map((e=>e.toString()));if(e.searchType===Gh.BOARD)return this.searchBoardsAsync(e.searchTerm,e.limit,t);if(e.searchType===Gh.DOCUMENTS)return this.searchDocsAsync(e.searchTerm,e.limit,t);if(e.searchType===Gh.WORKSPACES)return this.searchWorkspacesAsync(e.searchTerm,e.limit);if(e.searchType===Gh.UPDATES){const t=e.boardIds?.map((e=>e.toString())),a=e.creatorIds?.map((e=>e.toString()));return this.searchUpdatesAsync(e.searchTerm,e.limit,t,a)}if(e.searchType===Gh.ITEMS)return this.searchItemsAsync(e.searchTerm,e.limit,t);if(e.searchType===Gh.TIMELINE_ITEMS)return this.searchTimelineItemsAsync(e.searchTerm,e.limit);throw new Error(`Unsupported search type for smart search: ${e.searchType}`)}async searchBoardsAsync(e,t,a){const i={query:e,limit:t,workspaceIds:a};return(await this.mondayApi.request(Vh,i,{timeout:Tc})).search.boards.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.name,url:e.indexed_data.url})))}async searchDocsAsync(e,t,a){const i={query:e,limit:t,workspaceIds:a};return(await this.mondayApi.request(Mh,i,{timeout:Tc})).search.docs.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.name})))}async searchWorkspacesAsync(e,t){const a={query:e,limit:t};return(await this.mondayApi.request(Bh,a,{timeout:Tc})).search.workspaces.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.name,description:e.indexed_data.description||void 0})))}async searchUpdatesAsync(e,t,a,i){const n={query:e,limit:t,boardIds:a,creatorIds:i};return(await this.mondayApi.request(zh,n,{timeout:Tc})).search.updates.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.body,itemId:e.indexed_data.item_id,boardId:e.indexed_data.board_id,creatorId:e.indexed_data.creator_id})))}async searchItemsAsync(e,t,a){const i={query:e,limit:t,workspaceIds:a};return(await this.mondayApi.request(Fh,i,{timeout:Tc})).search.items.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.name,url:e.indexed_data.url})))}async searchTimelineItemsAsync(e,t){const a={query:e,limit:t};return(await this.mondayApi.request(jh,a,{timeout:Tc})).search.timeline_items.results.map((e=>({id:e.indexed_data.id,title:e.indexed_data.title,summary:e.indexed_data.summary||void 0,content:e.indexed_data.content||void 0})))}async searchFoldersAsync(e){const t=e.workspaceIds?.map((e=>e.toString()))??[];0===t.length&&dp(new Error("Searching for folders require specifying workspace ids"),"search folders");const a={page:1,limit:100,workspace_ids:t},i=(await this.mondayApi.request(Ph,a)).folders||[],n=qh(e.searchTerm);return i.filter((e=>e?.name&&qh(e.name).includes(n))).filter((e=>e?.id)).slice(0,e.limit).map((e=>({id:e.id,title:e.name})))}},class extends me{constructor(){super(...arguments),this.name="get_user_context",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get User Context",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Fetch current user information, account information, and their relevant items (boards, folders, workspaces, dashboards).\n\n Use this tool to:\n - Get context about who the current user is (id, name, title)\n - Get account info: plan tier, active member count, trial status, and active products\n - Get the number of active members in the account (returns active_members_count)\n - Discover user's favorite boards, folders, workspaces, and dashboards\n - Get user's most relevant boards based on visit frequency and recency\n - Get user's most relevant people based on interaction frequency and recency\n - Reduce the need for search requests by knowing user's commonly accessed items\n "}getInputSchema(){}async executeInternal(){const{me:e,favorites:t,intelligence:a}=await this.mondayApi.request(tf,{},{versionOverride:"dev"});if(!e)return{content:"AUTHENTICATION_ERROR: Unable to fetch current user. Verify API token and user permissions."};const i=await this.fetchFavorites(t||[]),n=this.extractRelevantBoards(a),o=this.extractRelevantPeople(a),{account:r,...s}=e;return{content:{message:"User context",...{user:s,account:r?{tier:r.tier,active_members_count:r.active_members_count,is_during_trial:r.is_during_trial,products:r.products?.filter(Boolean).map((e=>({kind:e.kind,tier:e.tier})))??[]}:null,favorites:i,relevantBoards:n,relevantPeople:o}}}}async fetchFavorites(e){const t=this.groupByType(e),a=Object.keys(t);if(0===a.length)return[];const i={};for(const e of a)i[nf[e]]=t[e];const n=await this.mondayApi.request(af,i),o=[];for(const e of a){const t=of[e];for(const a of n[t]??[])a?.id&&o.push({id:a.id,name:a.name,type:e})}return o}extractRelevantBoards(e){if(!e?.relevant_boards)return[];const t=[];for(const a of e.relevant_boards)a?.id&&a?.board?.name&&t.push({id:a.id,name:a.board.name});return t}extractRelevantPeople(e){if(!e?.relevant_people)return[];const t=[];for(const a of e.relevant_people)a?.id&&a?.user?.name&&t.push({id:a.id,name:a.user.name});return t}groupByType(e){const t={};for(const a of e){const e=a?.object;e?.id&&e?.type&&(t[e.type]??=[]).push(e.id)}return t}},class extends me{constructor(){super(...arguments),this.name="update_assets_on_item",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Assets On Item",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Update a file or doc column value on an item using existing assets, docs, or links. Sets the column to the provided list of files, adding new ones and removing any not in the list."}getInputSchema(){return Xh}async executeInternal(e){const t={boardId:e.boardId,itemId:e.itemId,columnId:e.columnId,files:e.files},a=await this.mondayApi.request(Qh,t);return{content:`Item ${a.update_assets_on_item?.id} (${a.update_assets_on_item?.name}) assets successfully updated`}}},class extends me{constructor(){super(...arguments),this.name="get_assets",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Assets",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Get assets (files) by their IDs. Returns file metadata including name, extension, size, public URL (valid for 1 hour), thumbnail URL, upload date, and who uploaded it."}getInputSchema(){return ef}async executeInternal(e){const t=await this.mondayApi.request(Zh,{ids:e.ids}),a=t.assets?.filter(Boolean);if(!a||0===a.length)return{content:`No assets found for the provided IDs: ${e.ids.join(", ")}`};return{content:{results:a.map((e=>({id:e.id,name:e.name,file_extension:e.file_extension,file_size:e.file_size,public_url:e.public_url,url:e.url,url_thumbnail:e.url_thumbnail??null,created_at:e.created_at??null,original_geometry:e.original_geometry??null,uploaded_by:e.uploaded_by})))}}}},class extends me{constructor(){super(...arguments),this.name="get_notetaker_meetings",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Notetaker Meetings",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Retrieve notetaker meetings with optional detailed fields. Use include_summary, include_topics, include_action_items, and include_transcript flags to control which details are returned. Use access to filter by meeting access level (OWN, SHARED_WITH_ME, SHARED_WITH_ACCOUNT, ALL). Defaults to OWN. Supports filtering by ids, search term, and cursor-based pagination."}getInputSchema(){return sf}async executeInternal(e){const t={access:e.access};e.ids&&e.ids.length>0&&(t.ids=e.ids),e.search&&(t.search=e.search);const a={limit:e.limit,cursor:e.cursor||void 0,filters:t,includeSummary:e.include_summary,includeTopics:e.include_topics,includeActionItems:e.include_action_items,includeTranscript:e.include_transcript},i=await this.mondayApi.request(rf,a,{versionOverride:"2026-04"}),n=i.notetaker?.meetings;if(!n?.meetings||0===n.meetings.length)return{content:"No notetaker meetings found matching the specified criteria."};return{content:{message:"Meetings retrieved",data:{meetings:n.meetings,pagination:{has_next_page:n.page_info?.has_next_page??!1,cursor:n.page_info?.cursor??null,count:n.meetings.length}}}}}},class extends me{constructor(){super(...arguments),this.name="create_view",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create View",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Create a new board view (tab) with optional filters and sorting. This creates a saved view on a monday.com board that users can switch to.\n\nFilter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text\n\nExample filter for people column: { "rules": [{ "column_id": "people", "compare_value": ["person-12345"], "operator": "any_of" }] }\nExample filter for status column: { "rules": [{ "column_id": "status", "compare_value": [1], "operator": "any_of" }] }'}getInputSchema(){return Bp}async executeInternal(e){const t={boardId:e.boardId,type:e.type,name:e.name,filter:e.filter,sort:e.sort,settings:e.settings},a=await this.mondayApi.request(Mp,t);return a.create_view?{content:`View "${a.create_view.name}" (ID: ${a.create_view.id}, type: ${a.create_view.type}) successfully created`}:{content:"Failed to create view - no response from API"}}},class extends me{constructor(){super(...arguments),this.name="update_view",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update View",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Update an existing board view (tab) — change its name, filter rules, or sort order. Provide only the fields you want to change. Omitted fields are left unchanged.\n\nFilter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text\n\nExample filter for people column: { "rules": [{ "column_id": "people", "compare_value": ["person-12345"], "operator": "any_of" }] }\nExample filter for status column: { "rules": [{ "column_id": "status", "compare_value": [1], "operator": "any_of" }] }'}getInputSchema(){return jp}async executeInternal(e){const t={viewId:e.viewId,boardId:e.boardId,type:e.type,name:e.name,filter:e.filter,sort:e.sort,settings:e.settings},a=await this.mondayApi.request(zp,t);return a.update_view?{content:`View "${a.update_view.name}" (ID: ${a.update_view.id}, type: ${a.update_view.type}) successfully updated`}:{content:"Failed to update view - no response from API"}}},class extends me{constructor(){super(...arguments),this.name="create_view_table",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Table View",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Create a new table-type board view with optional filters, sort, tags, and table-specific settings (column visibility/order and group-by). Use this instead of create_view when you need to configure table-specific settings. For a simple table view, create_view also works.\n\nFilter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text\n\nExample settings.columns: { "column_properties": [{ "column_id": "status", "visible": true }], "column_order": ["name", "status", "date"] }\nExample settings.group_by: { "conditions": [{ "columnId": "status" }], "hideEmptyGroups": true }'}getInputSchema(){return Wp}async executeInternal(e){const t={boardId:e.boardId,name:e.name,filter:e.filter,sort:e.sort,tags:e.tags,settings:e.settings},a=await this.mondayApi.request(qp,t);return a.create_view_table?{content:`Table view "${a.create_view_table.name}" (ID: ${a.create_view_table.id}, type: ${a.create_view_table.type}) successfully created`}:{content:"Failed to create table view - no response from API"}}},class extends me{constructor(){super(...arguments),this.name="update_view_table",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Table View",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Update an existing table-type board view — change its name, filters, sort, tags, or table-specific settings (column visibility/order and group-by). Provide only the fields you want to change. Omitted fields are left unchanged.\n\nFilter operators: any_of, not_any_of, is_empty, is_not_empty, greater_than, lower_than, between, contains_text, not_contains_text\n\nExample settings.columns: { "column_properties": [{ "column_id": "status", "visible": true }], "column_order": ["name", "status", "date"] }\nExample settings.group_by: { "conditions": [{ "columnId": "status" }], "hideEmptyGroups": true }'}getInputSchema(){return Jp}async executeInternal(e){const t={viewId:e.viewId,boardId:e.boardId,name:e.name,filter:e.filter,sort:e.sort,tags:e.tags,settings:e.settings},a=await this.mondayApi.request(Yp,t);return a.update_view_table?{content:`Table view "${a.update_view_table.name}" (ID: ${a.update_view_table.id}, type: ${a.update_view_table.type}) successfully updated`}:{content:"Failed to update table view - no response from API"}}},class extends me{constructor(){super(...arguments),this.name="undo_action",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Undo Action",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Undo a previous action on a board using its action_record_uuid. Supports undoing column changes, deletes, archives, moves, duplicates, and more. Use get_board_activity with includeData=true to find the action_record_uuid."}getInputSchema(){return pf}async executeInternal(e){return await this.mondayApi.request(df,{boardId:e.boardId.toString(),undoRecordId:e.undoRecordId},{versionOverride:"dev"}),{content:`Successfully undid action "${e.undoRecordId}" on board ${e.boardId}.`}}},class extends me{constructor(){super(...arguments),this.name="get_object_schemas",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Object Schemas",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Retrieve account-level object schemas by their IDs or names. Schemas define the structure and columns of boards. Provide ids or names to filter specific schemas. Omit both to list all schemas (paginated)."}getInputSchema(){return _p}async executeInternal(e){const t={ids:e.ids,names:e.names,limit:e.limit,page:e.page,excludeCreatedByMonday:e.excludeCreatedByMonday},a=(await this.mondayApi.request(fp,t)).get_object_schemas??[];return{content:{message:`Retrieved ${a.length} object schema(s)`,schemas:a}}}},class extends me{constructor(){super(...arguments),this.name="create_object_schema",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Object Schema",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Create a new account-level object schema. Schemas define the structure and columns of boards."}getInputSchema(){return bp}async executeInternal(e){const t={name:e.name,parentId:e.parentId,description:e.description},a=await this.mondayApi.request(gp,t);return{content:{message:`Object schema "${a.create_object_schema?.name}" successfully created`,schema_id:a.create_object_schema?.id,schema_name:a.create_object_schema?.name,revision:a.create_object_schema?.revision}}}},class extends me{constructor(){super(...arguments),this.name="update_object_schema",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Object Schema",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Update an account-level object schema. Requires the current revision number for optimistic locking — retrieve it first via get_object_schemas."}getInputSchema(){return yp}async executeInternal(e){const t={id:e.id,revision:e.revision,parentId:e.parentId,description:e.description},a=await this.mondayApi.request(vp,t);return{content:{message:`Object schema "${a.update_object_schema?.name}" successfully updated`,schema_id:a.update_object_schema?.id,schema_name:a.update_object_schema?.name,revision:a.update_object_schema?.revision}}}},class extends me{constructor(){super(...arguments),this.name="delete_object_schema",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Object Schema",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Delete an account-level object schema. Only allowed when no boards are connected to the schema. Provide either id or name."}getInputSchema(){return wp}async executeInternal(e){if(!e.id&&!e.name)throw new Error("Either id or name must be provided");const t={id:e.id,name:e.name},a=await this.mondayApi.request(Ip,t);return{content:{message:`Object schema "${a.delete_object_schema?.name}" successfully deleted`,schema_id:a.delete_object_schema?.id,schema_name:a.delete_object_schema?.name}}}},class extends me{constructor(){super(...arguments),this.name="delete_object_schema_columns",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Delete Object Schema Columns",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return"Permanently delete columns from an account-level object schema. Only allowed when no boards are connected to the schema. Use manage_object_schema_column with action=deactivate for a reversible alternative."}getInputSchema(){return Ep}async executeInternal(e){if(!e.objectSchemaId&&!e.objectSchemaName)throw new Error("Either objectSchemaId or objectSchemaName must be provided");const t={objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName,columnIds:e.columnIds},a=await this.mondayApi.request(Tp,t,{versionOverride:"dev"});return{content:{message:`${e.columnIds.length} column(s) successfully deleted from object schema "${a.delete_object_schema_columns?.name}"`,schema_id:a.delete_object_schema_columns?.id,schema_name:a.delete_object_schema_columns?.name,revision:a.delete_object_schema_columns?.revision}}}},class extends me{constructor(){super(...arguments),this.name="manage_object_schema_board_connection",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage Object Schema Board Connection",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Connect or detach a board from an account-level object schema. connect: attaches a board to an object schema so it inherits the schema column structure. detach: removes one or more boards from their object schema."}getInputSchema(){return Np}async executeInternal(e){if("connect"===e.action){if(!e.boardId)throw new Error("boardId is required for action=connect");if(!e.objectSchemaId&&!e.objectSchemaName)throw new Error("Either objectSchemaId or objectSchemaName must be provided for action=connect");const t={boardId:e.boardId,objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName},a=await this.mondayApi.request(Ap,t);return{content:{message:"Board successfully connected to object schema",connection_id:a.connect_board_to_object_schema?.id,schema_id:a.connect_board_to_object_schema?.object_schema_id}}}{if(!e.boardIds?.length)throw new Error("boardIds is required for action=detach");const t={boardIds:e.boardIds},a=(await this.mondayApi.request(Sp,t)).detach_boards_from_object_schema??[],i=a.filter((e=>e.success)).length,n=a.filter((e=>!e.success));return{content:{message:`${i} board(s) successfully detached`,results:a,...n.length>0&&{failures:n}}}}}},class extends me{constructor(){super(...arguments),this.name="manage_object_schema_columns",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage Object Schema Columns",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return`Create or update columns on an account-level object schema. Column changes are propagated to all boards connected to the schema. create: adds new columns. Each column requires type and title. Call get_column_type_info with fetchMode "${Dp.Schema}" first to understand valid defaults per column type. update: modifies existing columns. Each entry must include column_id. Only send the columns you want to modify — other columns are unaffected. Use opt_out_by_default=true to stop a column from being auto-added to boards (opt out), or opt_out_by_default=false to restore auto-adding (opt in).`}getInputSchema(){return xp}async executeInternal(e){if(!e.objectSchemaId&&!e.objectSchemaName)throw new Error("Either objectSchemaId or objectSchemaName must be provided");if("create"===e.action){const t=e.columns.map((e=>{const t=e;return{type:t.type,title:t.title,description:t.description,defaults:t.defaults,opt_out_by_default:t.opt_out_by_default,policy:{can_override:t.policy?.can_override??[],cannot_delete:t.policy?.cannot_delete??!1}}})),a={objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName,columns:t},i=await this.mondayApi.request(Op,a);return{content:{message:`Columns successfully added to object schema "${i.create_object_schema_columns?.name}"`,schema_id:i.create_object_schema_columns?.id,schema_name:i.create_object_schema_columns?.name,revision:i.create_object_schema_columns?.revision}}}{const t={objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName,columns:e.columns.map((e=>{const t=e;return{column_id:t.column_id,title:t.title,description:t.description,defaults:t.defaults,opt_out_by_default:t.opt_out_by_default,policy:t.policy?{can_override:t.policy.can_override??[],cannot_delete:t.policy.cannot_delete??!1}:void 0}}))},a=await this.mondayApi.request(kp,t);return{content:{message:`Columns successfully updated on object schema "${a.update_object_schema_columns?.name}"`,schema_id:a.update_object_schema_columns?.id,schema_name:a.update_object_schema_columns?.name,revision:a.update_object_schema_columns?.revision}}}}},class extends me{constructor(){super(...arguments),this.name="set_object_schema_column_active_state",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Set Object Schema Column Active State",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Set the active state of a column on an account-level object schema. deactivate: soft-disables the column, preventing it from being used on new boards. The column is not deleted and can be restored. reactivate: restores a previously deactivated column, making it available again."}getInputSchema(){return Up}async executeInternal(e){if(!e.objectSchemaId&&!e.objectSchemaName)throw new Error("Either objectSchemaId or objectSchemaName must be provided");const t={deactivate:go.Deactivate,reactivate:go.Reactivate},a={objectSchemaId:e.objectSchemaId,objectSchemaName:e.objectSchemaName,columnId:e.columnId,action:t[e.action]},i=await this.mondayApi.request(Lp,a);return{content:{message:`Column successfully ${e.action}d on object schema "${i.set_object_schema_column_active_state?.name}"`,schema_id:i.set_object_schema_column_active_state?.id,schema_name:i.set_object_schema_column_active_state?.name,revision:i.set_object_schema_column_active_state?.revision}}}},class extends me{constructor(){super(...arguments),this.name="get_asset_upload_url",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Get Asset Upload URL",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Get a presigned URL to upload a file to monday.com. Returns an upload_id and upload_url.\n\nAfter calling this tool, upload the file to the returned URL using an HTTP PUT request and capture the ETag header from the response:\n\ncurl -i -X PUT "<upload_url>" \\\n -H "Content-Type: <the contentType you provided>" \\\n --data-binary @<local_file_path>\n\nThe response includes an ETag header (e.g. ETag: "abc123...") — save this value.\n\nThen call finalize_asset_upload with the upload_id, etag, board_id, item_id, and column_id to complete the upload and attach the file to an item\'s file column.\n\nMax file size: 500MB.'}getInputSchema(){return cf}async executeInternal(e){const t=(await this.mondayApi.request(lf,{input:{file_name:e.fileName,content_type:e.contentType,file_size:e.fileSize,source:"mcp",multipart:!1}},{versionOverride:"dev"})).create_upload,a=t.parts[0]?.url;if(!a)throw new Error("create_upload returned no upload URL — parts array was empty");return{content:{upload_id:t.upload_id,upload_url:a,url_expires_at:t.expires_at}}}},class extends me{constructor(){super(...arguments),this.name="finalize_asset_upload",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Finalize Asset Upload",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Finalize a file upload and create the asset on monday.com. Call this after uploading the file to the presigned URL from get_asset_upload_url. Requires the etag value from the PUT response headers. Automatically attaches the uploaded asset to the specified file column on the item. Returns the created asset_id."}getInputSchema(){return hf}async executeInternal(e){const t=(await this.mondayApi.request(mf,{input:{upload_id:e.uploadId,holder:{type:"ITEM",id:e.itemId},board_id:e.boardId,parts:[{part_number:1,etag:e.etag}]}},{versionOverride:"dev"})).complete_upload,a=JSON.stringify({added_file:{fileType:"ASSET",name:t.filename,assetId:String(t.id)}});return await this.mondayApi.request(uf,{boardId:e.boardId,itemId:e.itemId,columnId:e.columnId,value:a}),{content:{asset_id:t.id,filename:t.filename,content_type:t.content_type,file_size:t.file_size,url:t.url,filelink:t.filelink}}}},class extends me{constructor(){super(...arguments),this.name="link_board_items_workflow",this.type=exports.ToolType.READ,this.annotations=ce({title:"Link Board Items Workflow",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'When to use: any board-relation / cross-board linking task. **Hard gate — you MUST call this BEFORE get_board_items_page, or change_item_column_values in the same turn. No discovery, matching, or write happens first.** Triggers: **link** or **connect** items **across boards** (board-relation / "connect boards" / pairs) — also vague phrasings where only one side is named ("link this to **an** item on another board", "**the matching** row"). This tool is read-only (no API).'}getInputSchema(){return _f}async executeInternal(e){return{content:ff}}},class extends me{constructor(){super(...arguments),this.name="fetch_file_content",this.type=exports.ToolType.READ,this.annotations=ce({title:"Fetch File Content",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Fetch and extract the text content from a file stored in a monday.com files column.\n\nUse this tool when you need to read, summarize, or analyze the content of files attached to board items. Provide the item ID and column ID from the get_board_items_page response — the column value will be a URL like \"https://monday.com/protected_static/...\" indicating a file is present (null means no file).\n\nPROACTIVE USE: If you retrieve board items and notice a files column with a non-null value (a URL), consider fetching its content if it could help answer the user's question — don't wait to be explicitly asked.\n\nSupported file types and what is returned:\n- Text files (.txt, .md, .csv, .json): raw text content\n- Word documents (.docx): extracted text content\n- PDF files (.pdf): extracted text content\n- Excel files (.xlsx, .xls): extracted text content per sheet\n- Images (.png, .jpg, .gif, .webp, .svg, .bmp, .ico): returns the public URL so you can view or analyze the image directly\n\nText responses include a total_length field. If has_more is true, the content was truncated — you can call this tool again with next_offset if you need the remaining content.\n\nWhen to use:\n- User asks to summarize, read, or analyze the content of a file in a files column\n- User asks questions about what is inside a file (e.g., \"what does the PDF say?\")\n- User wants to extract data from a CSV or Excel file attached to a board item\n- A board item has a files column with a non-null value and the user's question may be answered by its content — even if the user didn't explicitly ask to read the file\n\nWhen NOT to use:\n- The files column value is null (no file uploaded for that item)"}getInputSchema(){return Sf}async executeInternal(e){const{item_id:t,column_id:a,file_name:i,offset:n=0}=e,o=await this.mondayApi.request(gf,{itemId:[t],columnId:[a]}),r=o?.items?.[0]?.assets;if(!r||0===r.length)return{content:{message:`No file found for item ${t} in column ${a}. The column may be empty or the column ID may be incorrect.`}};return{content:{files:await Promise.all(r.map((e=>Of(e,n,i))))}}}},class extends me{constructor(){super(...arguments),this.name="manage_agent",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage monday Platform Agent",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return'Full lifecycle management for monday platform agents — create, read, update, delete, change state, and run.\n\nmonday platform agents are user-built work orchestrators on monday.com — each has a profile (name, role, avatar), a goal, and a markdown execution plan. Agents in state ACTIVE can be triggered automatically. They are NOT local LangChain or MCP agents.\n\nACTIONS (only pass fields that apply to the chosen action):\n- create: { action:"create", prompt, agent_model? } — AI-generated agent. Platform creates profile, goal, and plan from the prompt.\n- create_blank: { action:"create_blank", name?, role?, role_description?, avatar_url?, gender?, background_color?, user_prompt? } — manually defined agent.\n- get one: { action:"get", agent_id }\n- list owned: { action:"get" }\n- update: { action:"update", agent_id, name?, role?, role_description?, plan?, agent_model? }\n- delete: { action:"delete", agent_id }\n- activate: { action:"activate", agent_id }\n- deactivate: { action:"deactivate", agent_id }\n- run: { action:"run", agent_id }\n\nRULES:\n- "create_blank" with no fields creates a nameless blank agent — only do this intentionally.\n- "update" requires at least one of name/role/role_description/plan/agent_model.\n- "update", "delete", "activate", "deactivate", "run" all require "agent_id".\n- Created agents start INACTIVE. Follow with action:"activate" using the returned agent_id before they can be triggered.\n- ⚠️ DESTRUCTIVE — "delete" is permanent and irreversible. When the user refers to an agent by name, ALWAYS call action:"get" first to confirm the correct agent_id before deleting.\n- "run" is fire-and-forget. Returns trigger_uuid — no run-status query exists, treat successful enqueue as the only signal.\n- Agent state is one of ACTIVE, INACTIVE, ARCHIVED, or FAILED. DELETED only appears as the return value of action:"delete".\n\nUSAGE EXAMPLES:\n- AI create: { "action": "create", "prompt": "Run my daily standup every weekday at 9am." }\n- Manual create:{ "action": "create_blank", "name": "Standup Bot", "role": "Project Manager", "gender": "female" }\n- Fetch one: { "action": "get", "agent_id": "42" }\n- List mine: { "action": "get" }\n- Rename: { "action": "update", "agent_id": "7", "name": "New Name" }\n- Activate: { "action": "activate", "agent_id": "7" }\n- Deactivate: { "action": "deactivate", "agent_id": "7" }\n- Run: { "action": "run", "agent_id": "7" }\n- Delete: { "action": "delete", "agent_id": "7" }\n\nRELATED TOOLS:\n- agent_catalog — browse available trigger types and skills before wiring them to an agent\n- manage_agent_triggers — manage which triggers fire this agent automatically\n- manage_agent_skills — manage which skills this agent can perform\n- manage_agent_knowledge — manage which boards/docs this agent has access to'}getInputSchema(){return py}async executeInternal(e){switch(e.action){case"create":return this.handleCreate(e);case"create_blank":return this.handleCreateBlank(e);case"get":return this.handleGet(e);case"update":return this.handleUpdate(e);case"delete":return this.handleDelete(e);case"activate":return this.handleActivate(e);case"deactivate":return this.handleDeactivate(e);case"run":return this.handleRun(e)}}async handleCreate(e){if(!e.prompt)throw new Error('manage_agent action:"create" requires "prompt". For a manually configured agent, use action:"create_blank".');try{const t={input:{prompt:e.prompt,agent_model:e.agent_model}},a=await this.mondayApi.request(Yv,t,{versionOverride:"dev"});if(!a.create_agent?.id)throw new Error("monday platform agent creation returned no id");return{content:{message:`monday platform agent ${a.create_agent.id} created in state INACTIVE — call manage_agent with action:"activate" and agent_id:"${a.create_agent.id}" to activate it`,agent:a.create_agent}}}catch(e){dp(e,"create monday platform agent")}}async handleCreateBlank(e){try{const t={};void 0!==e.name&&(t.name=e.name),void 0!==e.role&&(t.role=e.role),void 0!==e.role_description&&(t.role_description=e.role_description),void 0!==e.avatar_url&&(t.avatar_url=e.avatar_url),void 0!==e.gender&&(t.gender=e.gender),void 0!==e.background_color&&(t.background_color=e.background_color),void 0!==e.user_prompt&&(t.user_prompt=e.user_prompt);const a={input:t},i=await this.mondayApi.request(Kv,a,{versionOverride:"dev"});if(!i.create_blank_agent?.id)throw new Error("monday platform agent creation returned no id");return{content:{message:`monday platform agent ${i.create_blank_agent.id} created in state INACTIVE — call manage_agent with action:"activate" and agent_id:"${i.create_blank_agent.id}" to activate it`,agent:i.create_blank_agent}}}catch(e){dp(e,"create blank monday platform agent")}}async handleGet(e){if(void 0!==e.agent_id)try{const{custom_agents:t}=await this.mondayApi.request(Wv,{ids:[e.agent_id]},{versionOverride:"dev"}),a=t?.[0];return a?{content:{message:"monday platform agent",agent:a}}:{content:`monday platform agent ${e.agent_id} not found, or the authenticated user does not have access to it.`}}catch(e){dp(e,"get monday platform agent")}try{const{custom_agents:e}=await this.mondayApi.request(Wv,{limit:100},{versionOverride:"dev"}),t=e??[];return{content:{message:"monday platform agents owned by the authenticated user (limited to 100 — ask the user if they need more)",count:t.length,agents:t}}}catch(e){dp(e,"list monday platform agents")}}async handleUpdate(e){if(!e.agent_id)throw new Error('manage_agent action:"update" requires "agent_id".');try{const t={};if(void 0!==e.name&&(t.name=e.name),void 0!==e.role&&(t.role=e.role),void 0!==e.role_description&&(t.role_description=e.role_description),void 0!==e.plan&&(t.plan=e.plan),void 0!==e.agent_model&&(t.agent_model=e.agent_model),0===Object.keys(t).length)throw new Error('manage_agent action:"update" requires at least one of: name, role, role_description, plan, agent_model.');const a={id:e.agent_id,input:t},i=await this.mondayApi.request(Qv,a,{versionOverride:"dev"});if(!i.update_agent)throw new Error("update_agent returned no data — the agent may not exist");return{content:{message:"monday platform agent updated",agent:i.update_agent}}}catch(e){dp(e,"update monday platform agent")}}async handleDelete(e){if(!e.agent_id)throw new Error('manage_agent action:"delete" requires "agent_id".');try{const t={id:e.agent_id},a=await this.mondayApi.request(Jv,t,{versionOverride:"dev"});if(!a.delete_agent?.id)throw new Error("monday platform agent delete returned no id");return{content:{message:`monday platform agent ${a.delete_agent.id} deleted`,agent:a.delete_agent}}}catch(e){dp(e,"delete monday platform agent")}}async handleActivate(e){if(!e.agent_id)throw new Error('manage_agent action:"activate" requires "agent_id".');try{const t=await this.mondayApi.request(Xv,{id:e.agent_id},{versionOverride:"dev"});return{content:{message:"Agent activated.",success:t.activate_agent?.success??!1}}}catch(e){dp(e,"activate monday platform agent")}}async handleDeactivate(e){if(!e.agent_id)throw new Error('manage_agent action:"deactivate" requires "agent_id".');try{const t={id:e.agent_id,inactive_reason:Kg.DeactivatedByUser},a=await this.mondayApi.request(Zv,t,{versionOverride:"dev"});return{content:{message:"Agent deactivated.",success:a.deactivate_agent?.success??!1}}}catch(e){dp(e,"deactivate monday platform agent")}}async handleRun(e){if(!e.agent_id)throw new Error('manage_agent action:"run" requires "agent_id".');try{const t=await this.mondayApi.request(ey,{id:e.agent_id},{versionOverride:"dev"});if(!t.run_agent)throw new Error("run_agent returned no data — the agent run may not have been enqueued");return{content:{message:"Agent run enqueued.",trigger_uuid:t.run_agent.trigger_uuid}}}catch(e){dp(e,"run monday platform agent")}}},class extends me{constructor(){super(...arguments),this.name="manage_agent_triggers",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage monday Platform Agent Triggers",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Manage the triggers attached to a monday platform agent — triggers define WHEN the agent runs automatically.\n\nACTIONS:\n- list: { agent_id } — returns active triggers with node_id, block_reference_id, name, field_summary.\n- add: { agent_id, block_reference_id, field_values? } — attaches a trigger type to the agent.\n- remove: { agent_id, node_id } — detaches a trigger instance by node_id (NOT block_reference_id).\n\nWORKFLOW — add a trigger:\n1. Call agent_catalog action:"list_triggers" — note block_reference_id, field_schemas, and required_fields.\n2. Collect required field values from the user (e.g. board_id, column_id).\n3. Call this tool action:"add" with block_reference_id and field_values.\nNote: add returns only { success } — no node_id for the new instance. Call action:"list" afterward if you need the node_id.\n\nWORKFLOW — remove a trigger:\n1. Call action:"list" to see active triggers and note the node_id of the instance to remove.\n2. Call action:"remove" with that node_id.\n\nNOTE: Only triggers that can be added programmatically appear in the catalog. OAuth/3rd-party triggers (Slack, Gmail, Salesforce, etc.)\nrequire user setup in the monday.com UI — they will not appear in agent_catalog and cannot be managed here.\n\nUSAGE EXAMPLES:\n- List triggers: { "action": "list", "agent_id": "7" }\n- Add trigger: { "action": "add", "agent_id": "7", "block_reference_id": "status-change-ref", "field_values": { "board_id": "42" } }\n- Remove trigger: { "action": "remove", "agent_id": "7", "node_id": "node-abc" }\n\nRELATED TOOLS:\n- agent_catalog action:"list_triggers" — discover available trigger types and their required field_values before calling action:"add" here\n- manage_agent_skills — manage which skills this agent can perform\n- manage_agent — manage the agent entity itself (create, activate, deactivate, etc.)'}getInputSchema(){return ly}async executeInternal(e){switch(e.action){case"list":return this.handleList(e);case"add":return this.handleAdd(e);case"remove":return this.handleRemove(e)}}async handleList(e){try{const t={agent_id:e.agent_id},a=(await this.mondayApi.request(ty,t,{versionOverride:"dev"})).agent_active_triggers??[];return{content:{message:'Active triggers on this agent. Use node_id with action:"remove" to detach a trigger.',count:a.length,triggers:a}}}catch(e){dp(e,"list active triggers for monday platform agent")}}async handleAdd(e){if(!e.block_reference_id)throw new Error('block_reference_id is required for action:"add". Call agent_catalog action:"list_triggers" first to find the block_reference_id.');try{const t={agent_id:e.agent_id,block_reference_id:e.block_reference_id,field_values:e.field_values},a=await this.mondayApi.request(ay,t,{versionOverride:"dev"});return{content:{message:'Trigger added to agent. Call action:"list" to verify and retrieve the node_id.',success:a.add_trigger_to_agent?.success??!1}}}catch(e){dp(e,"add trigger to monday platform agent")}}async handleRemove(e){if(!e.node_id)throw new Error('node_id is required for action:"remove". Call action:"list" first to get node_id values.');try{const t={agent_id:e.agent_id,node_id:e.node_id},a=await this.mondayApi.request(iy,t,{versionOverride:"dev"});return{content:{message:"Trigger removed from agent.",success:a.remove_trigger_from_agent?.success??!1}}}catch(e){dp(e,"remove trigger from monday platform agent")}}},class extends me{constructor(){super(...arguments),this.name="manage_agent_skills",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage monday Platform Agent Skills",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Manage the full skill lifecycle for monday platform agents — create new skills in the catalog, attach skills to an agent, or detach them.\n\nSkills extend what an agent can do (e.g. sending emails, querying databases, posting to Slack).\n\nACTIONS:\n- create: { name, content, description? } — creates a new custom skill in the account-wide catalog.\n The skill becomes available to all agents in the account.\n- add: { agent_id, skill_id } — attaches a skill to this agent.\n- remove: { agent_id, skill_id } — detaches a skill from this agent.\n\nWORKFLOW — attach an existing skill:\n1. Call agent_catalog action:"list_skills" — find the skill_id of the skill to attach.\n2. Call this tool action:"add" with agent_id and that skill_id.\n\nWORKFLOW — create a new skill and attach it:\n1. Call this tool action:"create" with name and content — note the returned id.\n2. Call this tool action:"add" with agent_id and that id directly (no catalog lookup needed).\n\nNOTE: There is no action to list which skills are currently attached to a specific agent — the platform does not yet expose that query.\nTo browse all skills available in the account catalog, use agent_catalog action:"list_skills".\n\nUSAGE EXAMPLES:\n- Create a skill: { "action": "create", "name": "Send Slack Message", "content": "## Instructions\\nPost a message to a Slack channel.", "description": "Sends a message to Slack" }\n- Add a skill: { "action": "add", "agent_id": "7", "skill_id": "skill-abc-123" }\n- Remove a skill: { "action": "remove", "agent_id": "7", "skill_id": "skill-abc-123" }\n\nRELATED TOOLS:\n- agent_catalog action:"list_skills" — browse existing skills to find a skill_id before calling action:"add"\n- manage_agent_triggers — manage which triggers fire this agent automatically\n- manage_agent — manage the agent entity itself (create, activate, deactivate, etc.)'}getInputSchema(){return cy}async executeInternal(e){switch(e.action){case"create":return this.handleCreate(e);case"add":return this.handleAdd(e);case"remove":return this.handleRemove(e)}}async handleCreate(e){if(!e.name||!e.content)throw new Error('action:"create" requires both "name" and "content".');try{const t={name:e.name,content:e.content,description:e.description},a=await this.mondayApi.request(dy,t,{versionOverride:"dev"});if(!a.create_agent_skill)throw new Error("create_agent_skill returned no data");return{content:{message:'Skill created and added to the account catalog. Use the returned id with action:"add" to attach it to an agent.',skill:a.create_agent_skill}}}catch(e){dp(e,"create monday platform agent skill")}}async handleAdd(e){if(!e.agent_id)throw new Error('agent_id is required for action:"add".');if(!e.skill_id)throw new Error('skill_id is required for action:"add". Get it from agent_catalog action:"list_skills" or from action:"create" in this tool.');try{const t={agent_id:e.agent_id,skill_id:e.skill_id},a=await this.mondayApi.request(ny,t,{versionOverride:"dev"});return{content:{message:"Skill added to agent.",success:a.add_skill_to_agent?.success??!1}}}catch(e){dp(e,"add skill to monday platform agent")}}async handleRemove(e){if(!e.agent_id)throw new Error('agent_id is required for action:"remove".');if(!e.skill_id)throw new Error('skill_id is required for action:"remove".');try{const t={agent_id:e.agent_id,skill_id:e.skill_id},a=await this.mondayApi.request(oy,t,{versionOverride:"dev"});return{content:{message:"Skill removed from agent.",success:a.remove_skill_from_agent?.success??!1}}}catch(e){dp(e,"remove skill from monday platform agent")}}},class extends me{constructor(){super(...arguments),this.name="manage_agent_knowledge",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage monday Platform Agent Knowledge",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'List, grant, update, or revoke a monday platform agent\'s access to boards and docs.\n\nAn agent\'s "knowledge" is the set of monday.com boards and docs it can read from or write to during a run.\n\n- list: Returns all resources the agent currently has access to, including permission level and resource type.\n- add: Grants the agent access to a board or doc with the specified permission level.\n- update: Changes the permission level on a resource the agent already has access to. Call action:"list" first to confirm the resource_id exists.\n- remove: Revokes the agent\'s access to a board or doc entirely. Call action:"list" first to confirm the resource_id exists.\n\nPermission types:\n- READ: Agent can read data from the resource.\n- READ_WRITE: Agent can read and write data to the resource.\n\nUSAGE EXAMPLES:\n- List: { "action": "list", "agent_id": "7" }\n- Add board access: { "action": "add", "agent_id": "7", "resource_id": "42", "scope_type": "BOARD", "permission_type": "READ" }\n- Update to read-write: { "action": "update", "agent_id": "7", "resource_id": "42", "scope_type": "BOARD", "permission_type": "READ_WRITE" }\n- Remove access: { "action": "remove", "agent_id": "7", "resource_id": "42", "scope_type": "BOARD" }\n\nRELATED TOOLS:\n- manage_agent — manage the agent entity itself (create, activate, deactivate, etc.)\n- manage_agent_triggers — manage which triggers fire this agent automatically\n- manage_agent_skills — manage which skills this agent can perform'}getInputSchema(){return _y}async executeInternal(e){switch(e.action){case"list":return this.handleList(e);case"add":return this.handleAdd(e);case"update":return this.handleUpdate(e);case"remove":return this.handleRemove(e)}}async handleList(e){try{const t=(await this.mondayApi.request(my,{id:e.agent_id},{versionOverride:"dev"})).agent_knowledge??{resources:[],files:[]};return{content:{message:"Current agent resource access.",count:t.resources?.length??0,knowledge:t}}}catch(e){dp(e,"list agent knowledge for monday platform agent")}}async handleAdd(e){if(!e.resource_id||!e.scope_type||!e.permission_type)throw new Error("resource_id, scope_type, and permission_type are required for action:add");try{const t=await this.mondayApi.request(uy,{id:e.agent_id,resource_id:e.resource_id,scope_type:e.scope_type,permission_type:e.permission_type},{versionOverride:"dev"});return{content:{message:"Resource access granted to agent.",success:t.add_agent_resource_access?.success??!1}}}catch(e){dp(e,"add agent resource access for monday platform agent")}}async handleUpdate(e){if(!e.resource_id||!e.scope_type||!e.permission_type)throw new Error("resource_id, scope_type, and permission_type are required for action:update");try{const t=await this.mondayApi.request(fy,{id:e.agent_id,resource_id:e.resource_id,scope_type:e.scope_type,permission_type:e.permission_type},{versionOverride:"dev"});return{content:{message:"Resource access updated.",success:t.update_agent_resource_access?.success??!1}}}catch(e){dp(e,"update agent resource access for monday platform agent")}}async handleRemove(e){if(!e.resource_id||!e.scope_type)throw new Error("resource_id and scope_type are required for action:remove");try{const t=await this.mondayApi.request(hy,{id:e.agent_id,resource_id:e.resource_id,scope_type:e.scope_type},{versionOverride:"dev"});return{content:{message:"Resource access removed from agent.",success:t.remove_agent_resource_access?.success??!1}}}catch(e){dp(e,"remove agent resource access for monday platform agent")}}},class extends me{constructor(){super(...arguments),this.name="agent_catalog",this.type=exports.ToolType.READ,this.annotations=ce({title:"monday Platform Agent Catalog",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Browse the account-wide catalog of available trigger types and skills for monday platform agents. READ-ONLY — no agent_id required.\n\nUse this tool to discover what\'s available BEFORE wiring anything to a specific agent.\n\nACTIONS:\n- list_triggers: { block_reference_ids? } — returns available trigger types.\n Each entry has block_reference_id (required for manage_agent_triggers action:"add"), name, description,\n field_schemas (describes field_values shape), and required_fields (fields to collect from the user).\n Note: only triggers that can be added programmatically appear here. OAuth/3rd-party triggers (Slack, Gmail, Salesforce, etc.)\n require user setup in the monday.com UI and will not appear here.\n\n- list_skills: {} — returns available skills with id, name, description.\n Never guess or invent a skill id — always look it up here before calling manage_agent_skills action:"add".\n\nUSAGE EXAMPLES:\n- List all trigger types: { "action": "list_triggers" }\n- Fetch specific trigger: { "action": "list_triggers", "block_reference_ids": ["some-block-ref-id"] }\n- List all skills: { "action": "list_skills" }\n\nRELATED TOOLS:\n- manage_agent_triggers — use block_reference_id from list_triggers to attach a trigger to a specific agent\n- manage_agent_skills — use skill id from list_skills, or action:"create" to author a new skill, then attach to an agent\n- manage_agent — manage the agent entity itself (create, update, delete, activate, etc.)'}getInputSchema(){return gy}async executeInternal(e){switch(e.action){case"list_triggers":return this.handleListTriggers(e);case"list_skills":return this.handleListSkills()}}async handleListTriggers(e){try{const t={block_reference_ids:e.block_reference_ids},a=(await this.mondayApi.request(ry,t,{versionOverride:"dev"})).agent_triggers_catalog??[];return{content:{message:'Available trigger types. Use block_reference_id and inspect field_schemas/required_fields before calling manage_agent_triggers action:"add".',count:a.length,triggers:a}}}catch(e){dp(e,"fetch monday platform agent triggers catalog")}}async handleListSkills(){try{const e=(await this.mondayApi.request(sy,{},{versionOverride:"dev"})).agent_skills_catalog??[];return{content:{message:'Available skills. Use id when calling manage_agent_skills action:"add".',count:e.length,skills:e}}}catch(e){dp(e,"fetch monday platform agent skills catalog")}}},class extends me{constructor(){super(...arguments),this.name="list_automations",this.type=exports.ToolType.READ,this.annotations=ce({title:"List Board Automations",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'List all automations on a specific monday.com board, including their ids, titles, active state, and configuration.\nReturns two groups: "workflows" (fully manageable, supports pagination via limit/cursor) and "legacyAutomations" (READ-ONLY automations set up in an older way — returned on the first page only, when no cursor is given).\nAlways present BOTH groups to the user together as one list of board automations — never omit or hide "legacyAutomations". The split and the read-only limitation are internal context for you only: don\'t volunteer them and don\'t label any automation "legacy" or "read-only". Only if the user asks to act on a legacy one, briefly explain it can\'t be changed (e.g. "This one was set up in an older way and can\'t be modified here").\nWhen NOT to use: Do not call this tool to get general board information unrelated to automations.\n'}getInputSchema(){return Iy}async executeInternal(e){try{const a=!e.cursor,i={boardIds:[e.boardId],limit:e.limit??100,includeLegacy:a,...e.cursor?{cursor:e.cursor}:{}},n=await this.mondayApi.request(by,i),o=(n.board_automations?.items??[]).map(yy),r=n.board_automations?.cursor??null,s=a?(t=n.board_automations?.legacy_automations,null==t||"object"==typeof t&&"error"in t?null:t):null;return{content:{message:`Found ${o.length} live workflow(s) on board ${e.boardId}`,workflows:o,...null!=s?{legacyAutomations:s}:{},pagination:{nextCursor:r,hasMore:null!==r}}}}catch(e){dp(e,"list live workflows")}var t}},class extends me{constructor(){super(...arguments),this.name="manage_automations",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Manage Automations",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!1})}getDescription(){return'Activate, deactivate, or delete an existing monday.com automation.\n\nRequires an automation id. When the user refers to an automation by name, always call list_automations first to resolve the id — never guess or infer ids.\n\nActions:\n- activate: enables a paused automation so it starts responding to its trigger.\n- deactivate: pauses an automation while preserving its definition.\n- delete: permanently removes an automation — irreversible.\n\nWhen intent is ambiguous ("stop", "turn off", "pause"), prefer deactivate over delete.'}getInputSchema(){return Ay}async executeInternal(e){const t=e;switch(t.action){case"activate":return this.activateWorkflow(t);case"deactivate":return this.deactivateWorkflow(t);case"delete":return this.deleteWorkflow(t)}}async activateWorkflow(e){try{const t={id:e.workflowId},a=await this.mondayApi.request(wy,t,{versionOverride:"dev"});if(!a.activate_live_workflow?.is_success)throw new Error(`Workflow ${e.workflowId} activation did not report success`);return{content:{message:`Workflow ${e.workflowId} activated`,workflowId:e.workflowId,isActive:!0}}}catch(e){dp(e,"activate workflow")}}async deactivateWorkflow(e){try{const t={id:e.workflowId},a=await this.mondayApi.request(Ty,t,{versionOverride:"dev"});if(!a.deactivate_live_workflow?.is_success)throw new Error(`Workflow ${e.workflowId} deactivation did not report success`);return{content:{message:`Workflow ${e.workflowId} deactivated`,workflowId:e.workflowId,isActive:!1}}}catch(e){dp(e,"deactivate workflow")}}async deleteWorkflow(e){try{const t={id:e.workflowId},a=await this.mondayApi.request(Ey,t,{versionOverride:"dev"});if(!a.delete_live_workflow?.is_success)throw new Error(`Workflow ${e.workflowId} deletion did not report success`);return{content:{message:`Workflow ${e.workflowId} deleted`,workflowId:e.workflowId}}}catch(e){dp(e,"delete workflow")}}},class extends me{constructor(e,t,a){super(e,a),this.apiToken=t,this.name="create_automation",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Automation",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'\n Creates an automation on a monday board from a structured natural-language description.\n\nUse this tool only when you know:\n- boardId\n- the user\'s intended trigger\n- at least one intended action\n- any details the user provided that are relevant to the trigger, conditions, or actions\n\nThe caller does not need to know the exact available automation blocks or their required fields. Describe the user\'s intent clearly — the tool will translate that intent into supported blocks and values.\n\nIf a required detail is missing from the user\'s request, ask for clarification before calling the tool.\n\nIf the tool returns status: "needs_clarification", present the unresolved fields to the user, gather answers, then call the tool again.\n\nDescribe the automation in this format:\n\nTrigger:\n When <the event that should start the automation>\n Details:\n <relevant detail>: <value>\n\nConditions:\n - Only if <condition that should be true>\n Details:\n <relevant detail>: <value>\n\nActions:\n - <action the automation should perform>:\n <relevant detail>: <value>\n\nRules:\n- Use one trigger.\n- Conditions are optional.\n- Multiple conditions mean AND.\n- Use one or more actions.\n- Do not use branching.\n- Use natural language, not block IDs or internal field names.\n- Actions may reference values from the trigger context, such as "{{item name}}", "{{creator}}", "{{status}}", "{{group}}", or "{{board}}".\n\nTerminology:\n- Trigger: the event that starts the automation, such as "when a new item is created".\n- Conditions: optional requirements that must be true before actions run.\n- Actions: what the automation does when it runs.\n\nExample:\n\nTrigger:\n When a new item is created\n\nActions:\n - Send a notification:\n Recipient: John Snow\n Title: Important Update\n Message: The item "{{item name}}" was created.\n\n - Move the item to a group:\n Group: Top group\n'}getInputSchema(){return Oy}async executeInternal(e){try{const t="function"==typeof this.apiToken?this.apiToken():this.apiToken,a=Dy(this.context),i=await a({serviceName:Sy,path:"/platform-ai-gateway/agents/lite-builder",method:"POST",headers:{...this.context?.fetchConfig?.fetch?{}:{Authorization:t},"Content-Type":"application/json"},body:JSON.stringify({userPrompt:e.userPrompt,boardId:e.boardId}),signal:AbortSignal.timeout(18e4)});if(!i.ok){const e=await i.text().catch((()=>""));throw new Error(`lite-builder responded with HTTP ${i.status}${e?`: ${e}`:""}`)}return{content:await i.json()}}catch(e){dp(e,"create automation")}}},class extends me{constructor(){super(...arguments),this.name="get_automation_runs",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Automation Runs",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Read automation/workflow run history. Read-only.\n\nModes:\n- "history": paginated run feed (state, duration, error reason). Use "filters" to narrow results and "nextPageOffset" to page (offset-only — next page = previous offset + returned count).\n- "detail": single run by "triggerUuid" (required) — returns block steps and MCP tool calls. Set "includeToolEvents": false to skip tool calls.\n\nScope: provide "boardId" for a specific board or "accountWide": true. One is required.\n\nKnown event states: "success", "failure", "exhausted".'}getInputSchema(){return Uy}async executeInternal(e){if(!e.boardId&&!e.accountWide)return{content:{message:'Either "boardId" or "accountWide": true must be provided.'}};try{return"detail"===e.mode?await this.runDetail(e):await this.runHistory(e)}catch(e){dp(e,"get automation runs")}}async runHistory(e){const t=e.nextPageOffset??0,a={...e.filters??{},...e.boardId?{boardId:e.boardId}:{}},i=await this.mondayApi.request(Cy,{nextPageOffset:t,filters:a}),n=i.trigger_events?.triggerEvents??[],o=function(e){return e.reduce(((e,t)=>{const a=t.eventState??"unknown";return e[a]=(e[a]??0)+1,e}),{})}(n),r=e.boardId?`board ${e.boardId}`:"account-wide";return{content:{message:`Returned ${n.length} run(s) (${r}) at offset ${t}. By state: ${function(e){const t=Object.entries(e).map((([e,t])=>`${e}=${t}`));return t.length?t.join(", "):"none"}(o)}. Offset-only pagination — for the next page request offset ${t+n.length}.`,scope:r,offset:t,count:n.length,stateCounts:o,runs:n}}}async runDetail(e){if(!e.triggerUuid)return{content:{message:'detail mode requires "triggerUuid".'}};const t=!1!==e.includeToolEvents,a=e.blockEventsOffset??0,i=e.toolEventsOffset??0,n=(await this.mondayApi.request(Ry,{triggerUuid:e.triggerUuid})).trigger_event;if(!n)return{content:{message:`No run found for triggerUuid ${e.triggerUuid}.`,triggerUuid:e.triggerUuid,found:!1}};const[o,r]=await Promise.all([this.mondayApi.request($y,{triggerUuid:e.triggerUuid,nextPageOffset:a}),t?this.mondayApi.request(xy,{triggerUuid:e.triggerUuid,nextPageOffset:i}):Promise.resolve(null)]),s=o.block_events?.blockEvents??[],d=r?.tool_events?.tool_events??[];return{content:{message:`Run ${e.triggerUuid}: state=${n.eventState??"unknown"}, ${s.length} block step(s), ${d.length} tool call(s).`,found:!0,run:n,blockEvents:s,blockEventsOffset:a,toolEvents:d,toolEventsOffset:i,toolEventsIncluded:t}}}},class extends me{constructor(){super(...arguments),this.name="get_automation_statistics",this.type=exports.ToolType.READ,this.annotations=ce({title:"Get Automation Statistics",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return'Aggregate automation run statistics. Read-only.\n\nBreakdowns:\n- "totals": success/failure/total counts at the account or board level.\n- "by_entity": per-automation and per-workflow counts for a given "runStatus" (required: "success" | "failure" | "exhausted"). Use "excludeAutomationIds" to omit specific automations.\n\nScope: provide "boardId" for a specific board or "accountWide": true. One is required.\n\nOptional "userIds" narrows results to specific creators.'}getInputSchema(){return Vy}async executeInternal(e){if(!e.boardId&&!e.accountWide)return{content:{message:'Either "boardId" or "accountWide": true must be provided.'}};const t=e.boardId?function(e){const t=Number(e.trim());if(!Number.isInteger(t)||t<=0)throw new Error(`Invalid boardId: '${e}' is not a positive integer.`);return t}(e.boardId):void 0,a=e.boardId?`board ${e.boardId}`:"account-wide";try{return"by_entity"===e.breakdown?await this.runByEntity(e,t,a):await this.runTotals(e,t,a)}catch(e){dp(e,"get automation statistics")}}async runTotals(e,t,a){const i=(await this.mondayApi.request(Py,{filters:{board_id:t,user_ids:e.userIds}})).account_trigger_statistics;return{content:{message:`Totals (${a}): success=${i?.success??0}, failure=${i?.failure??0}, total=${i?.total??0}.`,scope:a,breakdown:"totals",statistics:i}}}async runByEntity(e,t,a){if(!e.runStatus)return{content:{message:'by_entity breakdown requires "runStatus" (success | failure | exhausted).'}};const i=(await this.mondayApi.request(Fy,{runStatus:e.runStatus,filters:{board_id:t,automation_ids:e.excludeAutomationIds,user_ids:e.userIds}})).account_triggers_statistics_by_entity_id;return{content:{message:`By-entity '${e.runStatus}' statistics (${a}).`,scope:a,breakdown:"by_entity",runStatus:e.runStatus,automationStatistics:i?.automation_statistics,workflowStatistics:i?.workflow_statistics}}}},class extends me{constructor(){super(...arguments),this.name="create_workflow",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Create Workflow",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Creates a new empty workflow in a monday.com workspace.\n\nUse this when the user wants to build a new standalone workflow from scratch. Workflows are cross-board, workspace-level — distinct from automations (use create_automation for those). You only need a workspaceId to get started — all other fields are optional.\n\nReturns:\n- workflowObjectId: the workflow object ID\n- workflowDraftId: the current draft version ID — workflows start as drafts and must be published before they run\n\nTerminology:\n- Workflows vs. automations: workflows are standalone objects scoped to a workspace. Automations (create_automation) are per-board trigger/action rules. They are different products.\n- Draft: the editable, inactive version of a workflow. Changes are made on the draft version until it is published as the live version.\n- Privacy: PUBLIC — visible to all workspace members (default). PRIVATE — restricted access. SHAREABLE — accessible to guests outside the account.\n\nNote: if directing the user to the workflow in the UI, the correct URL path is custom_objects/, not workflows/ — e.g. {account}.monday.com/custom_objects/{workflowObjectId}.\n"}getInputSchema(){return By}async executeInternal(e){try{const t={workspace_id:e.workspaceId,...void 0!==e.title?{title:e.title}:{},...void 0!==e.privacyKind?{privacy_kind:e.privacyKind}:{},...void 0!==e.description?{description:e.description}:{},...void 0!==e.folderId?{folder_id:e.folderId}:{},...void 0!==e.ownerIds?{owner_ids:e.ownerIds}:{}},a=await this.mondayApi.request(My,t,{versionOverride:"dev"});if(!a.create_workflow)throw new Error("create_workflow returned null");const{workflow_object_id:i,workflow_draft_id:n}=a.create_workflow;if(!i||!n)throw new Error("create_workflow returned missing identifiers");return{content:{message:`Workflow Builder workflow created in workspace ${e.workspaceId}`,workflowObjectId:i,workflowDraftId:n}}}catch(e){dp(e,"create Workflow Builder workflow")}}},class extends me{constructor(e,t,a){super(e,a),this.apiToken=t,this.name="update_workflow",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Update Workflow",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Updates an existing workflow draft using an AI agent.\n\nThe agent interprets the prompt and applies structural changes to the workflow — creating, updating, or deleting steps. Pass clear, descriptive instructions and the agent will decide which operations to perform, then return a summary of what it did.\n\nUse this after create_workflow to build out the workflow step by step. You can call it multiple times on the same draft to iteratively refine the workflow.\n\nParameters:\n- workflowObjectId and workflowDraftId: both returned by create_workflow — they identify which draft to update.\n- prompt: describe what you want to change in plain English (e.g. "Add a trigger that fires when an item is created on the Marketing board"). Maximum 2000 characters.\n\nReturns:\n- workflowObjectId: the workflow object ID (unchanged)\n- workflowDraftId: the draft version ID (unchanged)\n- result: agent response describing the changes made\n\nNote: if directing the user to the workflow in the UI, the correct URL path is custom_objects/, not workflows/ — e.g. {account}.monday.com/custom_objects/{workflowObjectId}.\n\nNote: the workflow runs only after it is published to live version.\n'}getInputSchema(){return zy}async executeInternal(e){try{const t="function"==typeof this.apiToken?this.apiToken():this.apiToken,a=Dy(this.context),i=await a({serviceName:Sy,path:"/platform-ai-gateway/agents/workflow-builder",method:"POST",headers:{...this.context?.fetchConfig?.fetch?{}:{Authorization:t},"Content-Type":"application/json"},body:JSON.stringify({workflowObjectId:e.workflowObjectId,workflowDraftId:e.workflowDraftId,prompt:e.prompt}),signal:AbortSignal.timeout(18e4)});if(!i.ok){const e=await i.text().catch((()=>""));throw new Error(`workflow-builder responded with HTTP ${i.status}${e?`: ${e}`:""}`)}return{content:await i.json()}}catch(e){dp(e,"update workflow")}}},class extends me{constructor(e,t,a){super(e,a),this.apiToken=t,this.name="plan_workflow",this.type=exports.ToolType.READ,this.annotations=ce({title:"Plan Workflow",readOnlyHint:!0,destructiveHint:!1,idempotentHint:!0})}getDescription(){return"Plans one or more monday.com workflows for a described process using an AI agent.\n\nThe agent analyzes the prompt, decides how many workflows are needed, identifies the required boards and columns, selects the correct trigger and action blocks (with their IDs), and returns a structured implementation plan with Mermaid diagrams and build notes for each workflow.\n\nUse this before create_workflow to understand how to break a complex process into individual workflows and which resources to create first.\n\nParameters:\n- prompt: describe the full end-to-end process in plain English. Maximum 2000 characters.\n\nReturns:\n- result: structured markdown plan with workflow breakdowns, block IDs, resource definitions, and a list of assumptions and gaps\n"}getInputSchema(){return jy}async executeInternal(e){try{const t="function"==typeof this.apiToken?this.apiToken():this.apiToken,a=Dy(this.context),i=await a({serviceName:Sy,path:"/platform-ai-gateway/agents/workflow-planner",method:"POST",headers:{...this.context?.fetchConfig?.fetch?{}:{Authorization:t},"Content-Type":"application/json"},body:JSON.stringify({prompt:e.prompt}),signal:AbortSignal.timeout(18e4)});if(!i.ok){const e=await i.text().catch((()=>""));throw new Error(`workflow-planner responded with HTTP ${i.status}${e?`: ${e}`:""}`)}return{content:await i.json()}}catch(e){dp(e,"plan workflow")}}},class extends me{constructor(){super(...arguments),this.name="publish_workflow",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Publish Workflow",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return"Publishes a workflow draft, promoting it to the live version.\n\nUse this after create_workflow (and optionally update_workflow) to make the workflow active. Before publishing, the workflow is validated — if it has missing or misconfigured steps, publish will fail with a WORKFLOW_VALIDATION_FAILED error that includes structured issue details: which step failed, the issue type, and which inputs are missing. Use those details to guide the user on what to fix before retrying.\n\nParameters:\n- workflowObjectId and workflowDraftId: returned by create_workflow — they identify which draft to publish.\n- shouldActivate: whether to activate the workflow immediately after publish. Defaults to true — pass false to publish without activating.\n\nReturns:\n- workflowObjectId: the workflow object ID (unchanged)\n- workflowLiveId: the new live version ID — this changes on every publish, so do not cache it\n\nNote: if directing the user to the workflow in the UI, the correct URL path is custom_objects/, not workflows/ — e.g. {account}.monday.com/custom_objects/{workflowObjectId}.\n\n"}getInputSchema(){return Gy}async executeInternal(e){try{const t={workflow_object_id:e.workflowObjectId,workflow_draft_id:e.workflowDraftId,...void 0!==e.shouldActivate?{should_activate:e.shouldActivate}:{}},a=await this.mondayApi.request(qy,t,{versionOverride:"dev"});if(!a.publish_workflow)throw new Error("publish_workflow returned null");const{workflow_object_id:i,workflow_live_id:n}=a.publish_workflow;if(!i||!n)throw new Error("publish_workflow returned missing identifiers");return{content:{message:`Workflow ${e.workflowObjectId} published successfully`,workflowObjectId:i,workflowLiveId:n}}}catch(e){dp(e,"publish workflow")}}},class extends me{constructor(){super(...arguments),this.name="configure_ai_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Configure AI Column",readOnlyHint:!1,destructiveHint:!1,idempotentHint:!1})}getDescription(){return'Add AI to a column or set up an AI column on a monday.com board. Use this tool when the user wants to automatically categorize, summarize, translate, extract, generate text, improve writing, or assign people using AI on a column. This is the right tool for requests like "add AI to a column", "set up automatic extraction/categorization/summarization", "make a column use AI", "configure AI on a column", or "use AI to automatically fill a column".\n\nThe column must already exist on the board with a compatible type for the chosen block. To create a new AI column, first use create_column to create the column, then use this tool to add AI behavior.\n\nBLOCK TYPES (only pass fields that apply to the chosen block_type):\n- categorize: { block_type, source_type, source_column_id?, additional_instructions? } — assigns labels from target column\'s existing status/dropdown options\n- summarize: { block_type, source_type, source_column_id?, additional_instructions? } — generates concise summaries\n- translate: { block_type, source_type, source_column_id?, target_language } — translates to target language\n- improve_text: { block_type, source_type, source_column_id?, tone?, improver_length?, refinement_type? } — rewrites/fixes text\n- extract: { block_type, source_type, source_column_id?, entity_type, custom_instructions?, additional_instructions? } — extracts structured info\n- open_block: { block_type, ai_query } — flexible custom prompt, reference columns via {pulse.column_id}\n- write_me: { block_type, ai_query, tone, output_length } — generates new text from prompt\n- person_assignment: { block_type, source_type, source_column_id?, groups } — assigns people based on context\n\nSOURCE TYPES (required for all blocks except open_block and write_me):\n- item_name: uses the item\'s name as input\n- thread: uses the item\'s updates/comments as input\n- column: uses another column\'s value (requires source_column_id)\n- emails_and_activities: uses emails & activities (categorize only)\n\nCOLUMN REFERENCE SYNTAX (for open_block and write_me ai_query):\n- {pulse.column_id} — regular board column\n- {pulse.name} — the item name\n- {pulse.subitem.column_id} — subitem column\n\nRELATED TOOLS:\n- create_column — create the target column first if it doesn\'t exist\n- get_board_schema — discover existing columns and their types/IDs'}getInputSchema(){return eI}async executeInternal(e){const t=void 0!==e.run_backfill?{run_backfill:e.run_backfill}:void 0;try{switch(e.block_type){case"categorize":return this.handleCategorize(e.board_id,e,t);case"summarize":return this.handleSummarize(e.board_id,e,t);case"translate":return this.handleTranslate(e.board_id,e,t);case"improve_text":return this.handleImproveText(e.board_id,e,t);case"extract":return this.handleExtract(e.board_id,e,t);case"open_block":return this.handleOpenBlock(e.board_id,e,t);case"write_me":return this.handleWriteMe(e.board_id,e,t);case"person_assignment":return this.handlePersonAssignment(e.board_id,e,t)}}catch(e){dp(e,"configure AI column")}}validateSourceType(e,t){if(!e.source_type)throw new Error(`source_type is required for ${t} block`);if("column"===e.source_type&&!e.source_column_id)throw new Error('source_column_id is required when source_type is "column"')}async handleCategorize(e,t,a){this.validateSourceType(t,"categorize");const i=await this.mondayApi.request(Hy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,additionalInstructions:t.additional_instructions,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_categorize_ai_column?.column_id}}}async handleSummarize(e,t,a){this.validateSourceType(t,"summarize");const i=await this.mondayApi.request(Wy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,additionalInstructions:t.additional_instructions,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_summarize_ai_column?.column_id}}}async handleTranslate(e,t,a){if(this.validateSourceType(t,"translate"),!t.target_language)throw new Error("target_language is required for translate block");const i=await this.mondayApi.request(Yy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,targetLanguage:t.target_language,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_translate_ai_column?.column_id}}}async handleImproveText(e,t,a){this.validateSourceType(t,"improve_text");const i=await this.mondayApi.request(Ky,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,tone:t.tone,length:t.improver_length,refinementType:t.refinement_type,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_improve_text_ai_column?.column_id}}}async handleExtract(e,t,a){if(this.validateSourceType(t,"extract"),!t.entity_type)throw new Error("entity_type is required for extract block");if("custom"===t.entity_type&&!t.custom_instructions)throw new Error('custom_instructions is required for extract block when entity_type is "custom"');const i=await this.mondayApi.request(Qy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,entityType:t.entity_type,customInstructions:t.custom_instructions,additionalInstructions:t.additional_instructions,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_extract_ai_column?.column_id}}}async handleOpenBlock(e,t,a){if(!t.ai_query)throw new Error("ai_query is required for open_block block");const i=await this.mondayApi.request(Jy,{boardId:e.toString(),columnId:t.column_id,aiQuery:t.ai_query,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_open_block_ai_column?.column_id}}}async handleWriteMe(e,t,a){if(!t.ai_query)throw new Error("ai_query is required for write_me block");if(!t.tone)throw new Error("tone is required for write_me block");if(!t.output_length)throw new Error("output_length is required for write_me block");const i=await this.mondayApi.request(Xy,{boardId:e.toString(),columnId:t.column_id,aiQuery:t.ai_query,tone:t.tone,length:t.output_length,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_write_me_ai_column?.column_id}}}async handlePersonAssignment(e,t,a){if(this.validateSourceType(t,"person_assignment"),!t.groups||0===t.groups.length)throw new Error("groups is required for person_assignment block");const i=await this.mondayApi.request(Zy,{boardId:e.toString(),columnId:t.column_id,sourceType:t.source_type,sourceColumnId:t.source_column_id,groups:t.groups,extraSettings:a});return{content:{message:"AI column configured successfully",column_id:i.configure_person_assignment_ai_column?.column_id}}}},class extends me{constructor(){super(...arguments),this.name="remove_ai_from_column",this.type=exports.ToolType.WRITE,this.annotations=ce({title:"Remove AI from Column",readOnlyHint:!1,destructiveHint:!0,idempotentHint:!0})}getDescription(){return"Remove AI from a column on a monday.com board. Use this tool when the user wants to disable AI on a column, turn off AI automation, stop AI from running on a column, or delete the AI behavior from a column. This deletes all AI automation recipes and the app feature extension associated with the column. The column itself is not deleted — only its AI behavior is removed.\n\nUse get_board_schema to find column IDs before calling this tool."}getInputSchema(){return aI}async executeInternal(e){try{const t=await this.mondayApi.request(tI,{boardId:e.board_id.toString(),columnId:e.column_id});return{content:{message:"AI removed from column successfully",column_id:t.remove_ai_from_column?.column_id,success:t.remove_ai_from_column?.success}}}catch(e){dp(e,"remove AI from column")}}}],LI=[...xI,...$I,...le];exports.allGraphqlApiTools=xI,exports.allMondayAppsTools=le,exports.allMondayDevTools=$I,exports.allTools=LI;
2954
2976
  //# sourceMappingURL=index.js.map