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
stateFilter: z.enum(["all","wellFormed","createPending","deleted"]).default("wellFormed").describe("Filter projects by their state. Defaults to 'wellFormed'."),
64
77
top: z.number().optional().describe("The maximum number of projects to return. Defaults to 100."),
65
78
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."),
79
+
continuationToken: z.number().optional().describe("Continuation token for pagination. Used to fetch the next set of results if available."),
80
+
projectNameFilter: z.string().optional().describe("Filter projects by name. Supports partial matches."),
"Retrieve a list of repositories for a given project",
139
152
{
140
-
project: z.string().describe("The name or ID of the Azure DevOps project."),
153
+
project: z.string().describe("The name or ID of the Azure DevOps project."),
154
+
repoNameFilter: z.string().optional().describe("Optional filter to search for repositories by name. If provided, only repositories with names containing this string will be returned."),
0 commit comments