Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/gemini-invoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,11 @@ jobs:
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server:v0.18.0"
"ghcr.io/github/github-mcp-server:v0.27.0"
],
"includeTools": [
"add_issue_comment",
"get_issue",
"get_issue_comments",
"issue_read",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitHub MCP Server 0.20.0 introduced a new issue_read tool.

Similar to the consolidation of the pull request review tools in the previous release, the below listed tools have been consolidated into a single powerful issue_read tool:

  • get_issue
  • get_issue_comments
  • list_labels (with issue_number)
  • list_sub_issues

"list_issues",
"search_issues",
"create_pull_request",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gemini-issue-fixer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server:v0.18.0"
"ghcr.io/github/github-mcp-server:v0.27.0"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/gemini-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,12 @@ jobs:
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server:v0.18.0"
"ghcr.io/github/github-mcp-server:v0.27.0"
],
"includeTools": [
"add_comment_to_pending_review",
"create_pending_pull_request_review",
"pull_request_read",
"submit_pending_pull_request_review"
"pull_request_review_write"
Comment on lines 89 to +92
Copy link
Contributor Author

@Marukome0743 Marukome0743 Jan 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitHub MCP Server 0.19.0 introduced a new pull_request_review_write tool.

Similar to consolidation of the pull request tools in the previous release, the below pull request review tools have been consolidated into a single powerful pull_request_review_write tool:

  • create_and_submit_pull_request_review
  • create_pending_pull_request_review
  • submit_pending_pull_request_review
  • delete_pending_pull_request_review

],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
Expand Down
5 changes: 2 additions & 3 deletions examples/workflows/gemini-assistant/gemini-invoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,11 @@ jobs:
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server:v0.18.0"
"ghcr.io/github/github-mcp-server:v0.27.0"
],
"includeTools": [
"add_issue_comment",
"get_issue",
"get_issue_comments",
"issue_read",
"list_issues",
"search_issues",
"create_pull_request",
Expand Down
5 changes: 2 additions & 3 deletions examples/workflows/pr-review/gemini-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,12 @@ jobs:
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server:v0.18.0"
"ghcr.io/github/github-mcp-server:v0.27.0"
],
"includeTools": [
"add_comment_to_pending_review",
"create_pending_pull_request_review",
"pull_request_read",
"submit_pending_pull_request_review"
"pull_request_review_write"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
Expand Down