Skip to content

Commit d96a7d7

Browse files
author
Krishna Prasath D
committed
Updating the descriptions
1 parent 95b097d commit d96a7d7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/tools/repositories.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1748,10 +1748,10 @@ function configureRepoTools(server: McpServer, tokenProvider: () => Promise<stri
17481748
project: z
17491749
.union([z.string().transform((value) => [value]), z.array(z.string())])
17501750
.optional()
1751-
.describe("Filter by projects"),
1752-
repository: z.array(z.string()).optional().describe("Filter by repositories"),
1753-
branch: z.array(z.string()).optional().describe("Filter by branches"),
1754-
author: z.array(z.string()).optional().describe("Filter by commit authors. Only full display names are supported."),
1751+
.describe("The names of the projects to search within. If omitted, searches across all projects in the organization."),
1752+
repository: z.array(z.string()).optional().describe("The names of the repositories to search within. If omitted, searches across all repositories in the specified projects."),
1753+
branch: z.array(z.string()).optional().describe("The names of the repository branches to search within. If omitted, searches across all branches in the specified repositories."),
1754+
author: z.array(z.string()).optional().describe("The names of the commit authors to search for. Only full display names are supported."),
17551755
commitStartDate: z.string().optional().describe("Filter commits from this date (format: 'YYYY-MM-DD' or 'YYYY-MM-DDTHH:MM:SS')"),
17561756
commitEndDate: z.string().optional().describe("Filter commits up to this date (format: 'YYYY-MM-DD' or 'YYYY-MM-DDTHH:MM:SS', e.g. '2025-06-19T23:59:59' for full day)"),
17571757
orderBy: z.enum(["ASC", "DESC"]).optional().describe("Sort commits by date: 'ASC' for oldest-first, 'DESC' for newest-first. Defaults to relevance if omitted."),

0 commit comments

Comments
 (0)