Merge pull request #44 from huerlisi/feat/add-issue-notes-support

feat: add issue discussions support
This commit is contained in:
zereight
2025-05-21 03:36:33 +09:00
committed by GitHub
3 changed files with 102 additions and 24 deletions

View File

@ -98,24 +98,25 @@ When using with the Claude App, you need to set up your API key and URLs directl
20. `update_issue` - Update an issue in a GitLab project 20. `update_issue` - Update an issue in a GitLab project
21. `delete_issue` - Delete an issue from a GitLab project 21. `delete_issue` - Delete an issue from a GitLab project
22. `list_issue_links` - List all issue links for a specific issue 22. `list_issue_links` - List all issue links for a specific issue
23. `get_issue_link` - Get a specific issue link 23. `list_issue_discussions` - List discussions for an issue in a GitLab project
24. `create_issue_link` - Create an issue link between two issues 24. `get_issue_link` - Get a specific issue link
25. `delete_issue_link` - Delete an issue link 25. `create_issue_link` - Create an issue link between two issues
26. `list_namespaces` - List all namespaces available to the current user 26. `delete_issue_link` - Delete an issue link
27. `get_namespace` - Get details of a namespace by ID or path 27. `list_namespaces` - List all namespaces available to the current user
28. `verify_namespace` - Verify if a namespace path exists 28. `get_namespace` - Get details of a namespace by ID or path
29. `get_project` - Get details of a specific project 29. `verify_namespace` - Verify if a namespace path exists
30. `list_projects` - List projects accessible by the current user 30. `get_project` - Get details of a specific project
31. `list_labels` - List labels for a project 31. `list_projects` - List projects accessible by the current user
32. `get_label` - Get a single label from a project 32. `list_labels` - List labels for a project
33. `create_label` - Create a new label in a project 33. `get_label` - Get a single label from a project
34. `update_label` - Update an existing label in a project 34. `create_label` - Create a new label in a project
35. `delete_label` - Delete a label from a project 35. `update_label` - Update an existing label in a project
36. `list_group_projects` - List projects in a GitLab group with filtering options 36. `delete_label` - Delete a label from a project
37. `list_wiki_pages` - List wiki pages in a GitLab project 37. `list_group_projects` - List projects in a GitLab group with filtering options
38. `get_wiki_page` - Get details of a specific wiki page 38. `list_wiki_pages` - List wiki pages in a GitLab project
39. `create_wiki_page` - Create a new wiki page in a GitLab project 39. `get_wiki_page` - Get details of a specific wiki page
40. `update_wiki_page` - Update an existing wiki page in a GitLab project 40. `create_wiki_page` - Create a new wiki page in a GitLab project
41. `delete_wiki_page` - Delete a wiki page from a GitLab project 41. `update_wiki_page` - Update an existing wiki page in a GitLab project
42. `get_repository_tree` - Get the repository tree for a GitLab project (list files and directories) 42. `delete_wiki_page` - Delete a wiki page from a GitLab project
43. `get_repository_tree` - Get the repository tree for a GitLab project (list files and directories)
<!-- TOOLS-END --> <!-- TOOLS-END -->

View File

@ -61,6 +61,7 @@ import {
GitLabIssueLinkSchema, GitLabIssueLinkSchema,
GitLabIssueWithLinkDetailsSchema, GitLabIssueWithLinkDetailsSchema,
ListIssueLinksSchema, ListIssueLinksSchema,
ListIssueDiscussionsSchema,
GetIssueLinkSchema, GetIssueLinkSchema,
CreateIssueLinkSchema, CreateIssueLinkSchema,
DeleteIssueLinkSchema, DeleteIssueLinkSchema,
@ -311,6 +312,11 @@ const allTools = [
description: "List all issue links for a specific issue", description: "List all issue links for a specific issue",
inputSchema: zodToJsonSchema(ListIssueLinksSchema), inputSchema: zodToJsonSchema(ListIssueLinksSchema),
}, },
{
name: "list_issue_discussions",
description: "List discussions for an issue in a GitLab project",
inputSchema: zodToJsonSchema(ListIssueDiscussionsSchema),
},
{ {
name: "get_issue_link", name: "get_issue_link",
description: "Get a specific issue link", description: "Get a specific issue link",
@ -424,6 +430,7 @@ const readOnlyTools = [
"list_issues", "list_issues",
"get_issue", "get_issue",
"list_issue_links", "list_issue_links",
"list_issue_discussions",
"get_issue_link", "get_issue_link",
"list_namespaces", "list_namespaces",
"get_namespace", "get_namespace",
@ -1023,6 +1030,56 @@ async function listMergeRequestDiscussions(
return z.array(GitLabDiscussionSchema).parse(data); return z.array(GitLabDiscussionSchema).parse(data);
} }
/**
* List discussions for an issue
*
* @param {string} projectId - The ID or URL-encoded path of the project
* @param {number} issueIid - The internal ID of the project issue
* @param {Object} options - Pagination and sorting options
* @returns {Promise<GitLabDiscussion[]>} List of issue discussions
*/
async function listIssueDiscussions(
projectId: string,
issueIid: number,
options: {
page?: number,
per_page?: number,
sort?: "asc" | "desc",
order_by?: "created_at" | "updated_at"
} = {}
): Promise<GitLabDiscussion[]> {
projectId = decodeURIComponent(projectId); // Decode project ID
const url = new URL(
`${GITLAB_API_URL}/projects/${encodeURIComponent(
projectId
)}/issues/${issueIid}/discussions`
);
// Add query parameters for pagination and sorting
if (options.page) {
url.searchParams.append("page", options.page.toString());
}
if (options.per_page) {
url.searchParams.append("per_page", options.per_page.toString());
}
if (options.sort) {
url.searchParams.append("sort", options.sort);
}
if (options.order_by) {
url.searchParams.append("order_by", options.order_by);
}
const response = await fetch(url.toString(), {
...DEFAULT_FETCH_CONFIG,
});
await handleGitLabError(response);
const data = await response.json();
// Parse the response as an array of discussions
return z.array(GitLabDiscussionSchema).parse(data);
}
/** /**
* Modify an existing merge request thread note * Modify an existing merge request thread note
* 병합 요청 토론 노트 수정 * 병합 요청 토론 노트 수정
@ -1581,7 +1638,7 @@ async function createNote(
* Create a new thread on a merge request * Create a new thread on a merge request
* 📦 새로운 함수: createMergeRequestThread - 병합 요청에 새로운 스레드(토론)를 생성하는 함수 * 📦 새로운 함수: createMergeRequestThread - 병합 요청에 새로운 스레드(토론)를 생성하는 함수
* (New function: createMergeRequestThread - Function to create a new thread (discussion) on a merge request) * (New function: createMergeRequestThread - Function to create a new thread (discussion) on a merge request)
* *
* This function provides more capabilities than createNote, including the ability to: * This function provides more capabilities than createNote, including the ability to:
* - Create diff notes (comments on specific lines of code) * - Create diff notes (comments on specific lines of code)
* - Specify exact positions for comments * - Specify exact positions for comments
@ -1609,12 +1666,12 @@ async function createMergeRequestThread(
); );
const payload: Record<string, any> = { body }; const payload: Record<string, any> = { body };
// Add optional parameters if provided // Add optional parameters if provided
if (position) { if (position) {
payload.position = position; payload.position = position;
} }
if (createdAt) { if (createdAt) {
payload.created_at = createdAt; payload.created_at = createdAt;
} }
@ -2387,7 +2444,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
content: [{ type: "text", text: JSON.stringify(note, null, 2) }], content: [{ type: "text", text: JSON.stringify(note, null, 2) }],
}; };
} }
case "create_merge_request_note": { case "create_merge_request_note": {
const args = CreateMergeRequestNoteSchema.parse( const args = CreateMergeRequestNoteSchema.parse(
request.params.arguments request.params.arguments
@ -2647,6 +2704,16 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
}; };
} }
case "list_issue_discussions": {
const args = ListIssueDiscussionsSchema.parse(request.params.arguments);
const { project_id, issue_iid, ...options } = args;
const discussions = await listIssueDiscussions(project_id, issue_iid, options);
return {
content: [{ type: "text", text: JSON.stringify(discussions, null, 2) }],
};
}
case "get_issue_link": { case "get_issue_link": {
const args = GetIssueLinkSchema.parse(request.params.arguments); const args = GetIssueLinkSchema.parse(request.params.arguments);
const link = await getIssueLink( const link = await getIssueLink(

View File

@ -757,6 +757,15 @@ export const ListIssueLinksSchema = z.object({
issue_iid: z.number().describe("The internal ID of a project's issue"), issue_iid: z.number().describe("The internal ID of a project's issue"),
}); });
export const ListIssueDiscussionsSchema = z.object({
project_id: z.string().describe("Project ID or URL-encoded path"),
issue_iid: z.number().describe("The internal ID of the project issue"),
page: z.number().optional().describe("Page number for pagination"),
per_page: z.number().optional().describe("Number of items per page"),
sort: z.enum(["asc", "desc"]).optional().describe("Return issue discussions sorted in ascending or descending order"),
order_by: z.enum(["created_at", "updated_at"]).optional().describe("Return issue discussions ordered by created_at or updated_at fields"),
});
export const GetIssueLinkSchema = z.object({ export const GetIssueLinkSchema = z.object({
project_id: z.string().describe("Project ID or URL-encoded path"), project_id: z.string().describe("Project ID or URL-encoded path"),
issue_iid: z.number().describe("The internal ID of a project's issue"), issue_iid: z.number().describe("The internal ID of a project's issue"),
@ -1075,6 +1084,7 @@ export type GitLabMergeRequestDiff = z.infer<
>; >;
export type CreateNoteOptions = z.infer<typeof CreateNoteSchema>; export type CreateNoteOptions = z.infer<typeof CreateNoteSchema>;
export type GitLabIssueLink = z.infer<typeof GitLabIssueLinkSchema>; export type GitLabIssueLink = z.infer<typeof GitLabIssueLinkSchema>;
export type ListIssueDiscussionsOptions = z.infer<typeof ListIssueDiscussionsSchema>;
export type GitLabNamespace = z.infer<typeof GitLabNamespaceSchema>; export type GitLabNamespace = z.infer<typeof GitLabNamespaceSchema>;
export type GitLabNamespaceExistsResponse = z.infer< export type GitLabNamespaceExistsResponse = z.infer<
typeof GitLabNamespaceExistsResponseSchema typeof GitLabNamespaceExistsResponseSchema