Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
v-3 authored Jan 22, 2025
2 parents 019fd25 + dfbf7f3 commit e09c620
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/github/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,21 +289,27 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
const args = issues.ListIssuesOptionsSchema.parse(request.params.arguments);
const { owner, repo, ...options } = args;
const result = await issues.listIssues(owner, repo, options);
return { toolResult: result };
return {
content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
};
}

case "update_issue": {
const args = issues.UpdateIssueOptionsSchema.parse(request.params.arguments);
const { owner, repo, issue_number, ...options } = args;
const result = await issues.updateIssue(owner, repo, issue_number, options);
return { toolResult: result };
return {
content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
};
}

case "add_issue_comment": {
const args = issues.IssueCommentSchema.parse(request.params.arguments);
const { owner, repo, issue_number, body } = args;
const result = await issues.addIssueComment(owner, repo, issue_number, body);
return { toolResult: result };
return {
content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
};
}

case "list_commits": {
Expand All @@ -323,7 +329,9 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
case "get_issue": {
const args = issues.GetIssueSchema.parse(request.params.arguments);
const issue = await issues.getIssue(args.owner, args.repo, args.issue_number);
return { toolResult: issue };
return {
content: [{ type: "text", text: JSON.stringify(issue, null, 2) }],
};
}

default:
Expand Down

0 comments on commit e09c620

Please sign in to comment.