diff --git a/src/github/index.ts b/src/github/index.ts index 287cfdcb..3759e8b5 100644 --- a/src/github/index.ts +++ b/src/github/index.ts @@ -20,6 +20,7 @@ import { CreateRepositorySchema, ForkRepositorySchema, GetFileContentsSchema, + GetIssueSchema, GitHubCommitSchema, GitHubContentSchema, GitHubCreateUpdateFileResponseSchema, @@ -691,6 +692,29 @@ async function searchUsers( return SearchUsersResponseSchema.parse(await response.json()); } +async function getIssue( + owner: string, + repo: string, + issueNumber: number +): Promise { + const response = await fetch( + `https://api.github.com/repos/${owner}/${repo}/issues/${issueNumber}`, + { + headers: { + Authorization: `token ${GITHUB_PERSONAL_ACCESS_TOKEN}`, + Accept: "application/vnd.github.v3+json", + "User-Agent": "github-mcp-server", + }, + } +); + + if (!response.ok) { + throw new Error(`Github API error: ${response.statusText}`); + } + + return GitHubIssueSchema.parse(await response.json()); +} + server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: [ @@ -778,6 +802,11 @@ server.setRequestHandler(ListToolsRequestSchema, async () => { description: "Search for users on GitHub", inputSchema: zodToJsonSchema(SearchUsersSchema), }, + { + name: "get_issue", + description: "Get details of a specific issue in a GitHub repository.", + inputSchema: zodToJsonSchema(GetIssueSchema) + } ], }; }); @@ -972,6 +1001,16 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => { return { content: [{ type: "text", text: JSON.stringify(results, null, 2) }] }; } + case "get_issue": { + const args = z.object({ + owner: z.string(), + repo: z.string(), + issue_number: z.number() + }).parse(request.params.arguments); + const issue = await getIssue(args.owner, args.repo, args.issue_number); + return { toolResult: issue }; + } + default: throw new Error(`Unknown tool: ${request.params.name}`); } diff --git a/src/github/schemas.ts b/src/github/schemas.ts index bd0d8618..cefdc1d1 100644 --- a/src/github/schemas.ts +++ b/src/github/schemas.ts @@ -677,6 +677,12 @@ export const IssueCommentSchema = z.object({ body: z.string() }); +export const GetIssueSchema = z.object({ + owner: z.string().describe("Repository owner (username or organization)"), + repo: z.string().describe("Repository name"), + issue_number: z.number().describe("Issue number") +}); + // Export types export type GitHubAuthor = z.infer; export type GitHubFork = z.infer;