You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Show, list, or display recent knowledge assets. Use when user asks 'show me recent assets', 'what was published', 'last X assets', etc. Can filter by status (published, failed, publishing, queued). Always returns up to 20 most recent assets (capped at 20).",
136
+
description: "Show, list, or display recent knowledge assets. Use when user asks 'show me recent assets', 'what was published', 'last X assets', 'publishes 200-500', etc. Can filter by status (published, failed, publishing, queued). Supports pagination with offset for large queries.",
137
137
inputSchema: {
138
-
limit: z.number().min(1).max(20).default(5).optional().describe("Number of assets to return (1-20, default: 5)"),
138
+
limit: z.number().min(1).default(20).optional().describe("Number of assets to return (default: 20)"),
139
+
offset: z.number().min(0).default(0).optional().describe("Number of assets to skip (for pagination, default: 0)"),
139
140
status: z.enum(["published","failed","publishing","queued"]).optional().describe("Filter by status (optional)"),
description: "Find, show, list, or query knowledge assets by publishing status. Use when user asks 'show me all published', 'failed assets', 'what's publishing', etc. Supports statuses: published (successfully published), failed (publishing failed), publishing (currently being published), queued (waiting to publish). Always returns up to 20 most recent assets matching the status (capped at 20).",
229
+
description: "Find, show, list, or query knowledge assets by publishing status. Use when user asks 'show me all published', 'failed assets', 'what's publishing', 'publishes 100-200', etc. Supports statuses: published (successfully published), failed (publishing failed), publishing (currently being published), queued (waiting to publish). Supports pagination with offset for large queries.",
224
230
inputSchema: {
225
231
status: z.enum(["published","failed","publishing","queued"]).describe("The status to filter by"),
226
-
limit: z.number().min(1).max(20).default(10).optional().describe("Maximum number of results (1-20, default: 10)"),
232
+
limit: z.number().min(1).default(20).optional().describe("Maximum number of results (default: 20)"),
233
+
offset: z.number().min(0).default(0).optional().describe("Number of assets to skip (for pagination, default: 0)"),
0 commit comments