@mondaydotcomorg/agent-toolkit 2.28.1 → 2.29.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.
@@ -79,13 +79,14 @@ declare class MondayAgentToolkit extends McpServer {
79
79
  getServer(): McpServer;
80
80
  /**
81
81
  * Get all tools as an array of tool objects that can be registered individually
82
- * Each tool includes name, description, schema, and handler for external registration
82
+ * Each tool includes name, description, schema, annotations, and handler for external registration
83
83
  * @returns Array of tool objects ready for individual registration
84
84
  */
85
85
  getTools(): Array<{
86
86
  name: string;
87
87
  description: string;
88
88
  schema: any;
89
+ annotations: any;
89
90
  handler: (params: any) => Promise<any>;
90
91
  }>;
91
92
  /**
@@ -97,6 +98,7 @@ declare class MondayAgentToolkit extends McpServer {
97
98
  name: string;
98
99
  description: string;
99
100
  schema: any;
101
+ annotations: any;
100
102
  handler: (params: any, extra?: any) => Promise<CallToolResult>;
101
103
  }>;
102
104
  /**