@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.
- package/dist/cjs/core/index.d.ts +2 -0
- package/dist/cjs/mcp/index.d.ts +3 -0
- package/dist/cjs/mcp/index.js +1 -1
- package/dist/cjs/mcp/index.js.map +1 -1
- package/dist/cjs/openai/index.d.ts +2 -0
- package/dist/esm/core/index.d.ts +2 -0
- package/dist/esm/mcp/index.d.ts +3 -0
- package/dist/esm/mcp/index.js +1 -1
- package/dist/esm/mcp/index.js.map +1 -1
- package/dist/esm/openai/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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
|
}
|
package/dist/esm/core/index.d.ts
CHANGED
|
@@ -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
|
}
|
package/dist/esm/mcp/index.d.ts
CHANGED
|
@@ -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
|
/**
|