@mondaydotcomorg/agent-toolkit 5.52.0 → 5.53.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.
@@ -25,6 +25,8 @@ interface Tool<Input extends ZodRawShape | undefined, Output extends Record<stri
25
25
  annotations: ToolAnnotations;
26
26
  /** Whether the tool is enabled by default. Defaults to true if not specified. */
27
27
  enabledByDefault?: boolean;
28
+ /** Discovery/filtering tags surfaced on the MCP tool (e.g. `'crm'`, `'automations'`). */
29
+ tags?: string[];
28
30
  getDescription(): string;
29
31
  getInputSchema(): Input;
30
32
  }
@@ -26,6 +26,8 @@ interface Tool<Input extends ZodRawShape | undefined, Output extends Record<stri
26
26
  annotations: ToolAnnotations;
27
27
  /** Whether the tool is enabled by default. Defaults to true if not specified. */
28
28
  enabledByDefault?: boolean;
29
+ /** Discovery/filtering tags surfaced on the MCP tool (e.g. `'crm'`, `'automations'`). */
30
+ tags?: string[];
29
31
  getDescription(): string;
30
32
  getInputSchema(): Input;
31
33
  }
@@ -159,6 +161,7 @@ declare class MondayAgentToolkit extends McpServer {
159
161
  description: string;
160
162
  schema: any;
161
163
  annotations: any;
164
+ tags?: string[];
162
165
  handler: (params: any, extra?: any) => Promise<CallToolResult>;
163
166
  }>;
164
167
  /**