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
Copy file name to clipboardExpand all lines: src/tools/core.ts
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -63,9 +63,10 @@ function configureCoreTools(
63
63
stateFilter: z.enum(["all","wellFormed","createPending","deleted"]).default("wellFormed").describe("Filter projects by their state. Defaults to 'wellFormed'."),
64
64
top: z.number().optional().describe("The maximum number of projects to return. Defaults to 100."),
65
65
skip: z.number().optional().describe("The number of projects to skip for pagination. Defaults to 0."),
66
-
continuationToken: z.number().optional().describe("Continuation token for pagination. Used to fetch the next set of results if available."),
66
+
continuationToken: z.number().optional().describe("Continuation token for pagination. Used to fetch the next set of results if available."),
67
+
projectNameFilter: z.string().optional().describe("Filter projects by name. Supports partial matches."),
0 commit comments