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).",
126
+
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.",
127
127
inputSchema: {
128
-
limit: z.number().min(1).max(20).default(5).optional().describe("Number of assets to return (1-20, default: 5)"),
128
+
limit: z.number().min(1).default(20).optional().describe("Number of assets to return (default: 20)"),
129
+
offset: z.number().min(0).default(0).optional().describe("Number of assets to skip (for pagination, default: 0)"),
129
130
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).",
219
+
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.",
214
220
inputSchema: {
215
221
status: z.enum(["published","failed","publishing","queued"]).describe("The status to filter by"),
216
-
limit: z.number().min(1).max(20).default(10).optional().describe("Maximum number of results (1-20, default: 10)"),
222
+
limit: z.number().min(1).default(20).optional().describe("Maximum number of results (default: 20)"),
223
+
offset: z.number().min(0).default(0).optional().describe("Number of assets to skip (for pagination, default: 0)"),
0 commit comments