Sync GitHub MCP toolset mappings - #53121
Merged
pelikhan merged 2 commits intoAug 16, 2026
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Sync GitHub MCP toolset mapping: add find_duplicate and copilot_issue_intents
Sync GitHub MCP toolset mappings
Aug 16, 2026
pelikhan
marked this pull request as ready for review
August 16, 2026 13:15
Contributor
There was a problem hiding this comment.
Pull request overview
Synchronizes gh-aw’s GitHub MCP metadata, validation mappings, tests, and reference documentation with upstream tools.
Changes:
- Adds
find_duplicateandcopilot_issue_intentsmetadata. - Updates runtime validation and regression tests.
- Expands MCP tool documentation and feature-flag notes.
Show a summary per file
| File | Description |
|---|---|
pkg/workflow/permissions_validator_test.go |
Tests new permissions metadata. |
pkg/workflow/github_tool_to_toolset_test.go |
Tests new runtime mappings. |
pkg/workflow/data/github_toolsets_permissions.json |
Adds toolset permissions and tools. |
pkg/workflow/data/github_tool_to_toolset.json |
Registers runtime tool mappings. |
.github/aw/github-mcp-server.md |
Documents toolsets, tools, and feature requirements. |
Review details
- Files reviewed: 5/5 changed files
- Comments generated: 5
- Review effort level: Balanced
|
|
||
| "issue_dependency_read": "issues", | ||
| "issue_dependency_write": "issues", | ||
| "find_duplicate": "issues", |
| |------|---------|----------------| | ||
| | `add_issue_comment` | Add a comment to an issue | `owner`, `repo`, `issue_number`, `body` | | ||
| | `find_duplicate` | Find likely duplicate issues for an existing issue | `owner`, `repo`, `issue_number`, `confidence_threshold` | | ||
| | `get_label` | Get details of a specific label | `owner`, `repo`, `name` | |
| ### issues | ||
| **Description**: Issue management | ||
|
|
||
| > **Note**: `find_duplicate`, `issue_dependency_read`, and `issue_dependency_write` require their upstream feature flags to be enabled, independently of toolset selection. |
| "assign_copilot_to_issue": "copilot", | ||
| "create_pull_request_with_copilot": "copilot", | ||
| "request_copilot_review": "copilot", | ||
| "assign_copilot_to_issue_with_intent": "copilot_issue_intents", |
| | `delete_file` | Delete a file from a repository | `owner`, `repo`, `path`, `message`, `sha`, `branch` | | ||
| | `fork_repository` | Fork a repository | `owner`, `repo`, `organization` | | ||
| | `get_commit` | Get details of a specific commit | `owner`, `repo`, `sha` | | ||
| | `get_file_blame` | Get line-by-line blame information for a file | `owner`, `repo`, `path`, `ref` | |
Contributor
|
🎉 This pull request is included in a new release. Release: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Aligns gh-aw’s GitHub MCP toolset metadata, runtime validation mapping, and reference documentation with newly registered upstream tools.
Toolset mappings
find_duplicatetoissues.copilot_issue_intentswithassign_copilot_to_issue_with_intent.2.5.Runtime validation
github_tool_to_toolset.jsonso allowed-tool validation recognizes them.Documentation
get_file_blame,get_label, andlist_issue_fieldsentries.