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
feat: Add list_project_issues tool to fetch all issues in a project (#39)
* feat: Add list_project_issues tool to fetch all issues in a project
* feat: Enhance issue response structure with detailed state and priority information
---------
Co-authored-by: Surya Prashanth <[email protected]>
"Get all issues for a specific project. This requests project_id as uuid parameter. If you have a readable identifier for project, you can use the get_projects tool to get the project_id from it",
45
+
{
46
+
project_id: z.string().describe("The uuid identifier of the project to get issues for"),
"Get all issues for a specific project. When issue identifier is provided something like FIRST-123, ABC-123, etc. For FIRST-123, project_identifier is FIRST and issue_identifier is 123",
104
+
"Get a specific issue using its readable identifier. When issue identifier is provided something like FIRST-123, ABC-123, etc. For FIRST-123, project_identifier is FIRST and issue_identifier is 123",
11
105
{
12
-
project_identifier: z.string().describe("The readable identifier of the project to get issues for"),
13
-
issue_identifier: z.string().describe("The identifier of the issue to get"),
106
+
project_identifier: z.string().describe("The readable identifier of the project (e.g., 'FIRST' for FIRST-123)"),
107
+
issue_identifier: z.string().describe("The issue number (e.g., '123' for FIRST-123)"),
0 commit comments