Conversation
This commit updates the github_toolsets_permissions.json file to accurately
reflect the tools available in the GitHub MCP remote server.
Changes:
- Removed tools from 'context' toolset that are not available: get_me, get_team_members, get_teams
- Added search_issues to 'issues' toolset (tool is available in MCP server)
- Added search_pull_requests to 'pull_requests' toolset (tool is available in MCP server)
- Replaced individual action tools with wrapper tools in 'actions' toolset:
- Removed: download_workflow_run_artifact, get_workflow_run, get_workflow_run_logs,
get_workflow_run_usage, list_workflow_jobs, list_workflow_run_artifacts,
list_workflow_runs, list_workflows
- These are now accessible via: actions_get, actions_list methods
- Kept: get_job_logs (standalone tool)
This ensures the JSON mapping accurately represents the actual MCP server
capabilities and prevents discrepancies in toolset compilation.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
pelikhan
approved these changes
Dec 24, 2025
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.
This pull request updates the
pkg/workflow/data/github_toolsets_permissions.jsonfile to accurately reflect the tools available in the GitHub MCP remote server.Summary of Changes
Context Toolset
Removed tools (not available in MCP server):
get_meget_team_membersget_teamsCurrent tools:
get_copilot_spacegithub_support_docs_searchlist_copilot_spacesIssues Toolset
Added:
search_issues(tool is available in MCP server and also appears in search toolset)Pull Requests Toolset
Added:
search_pull_requests(tool is available in MCP server and also appears in search toolset)Actions Toolset
Replaced individual tools with wrapper methods:
Removed (these are methods within
actions_getandactions_list, not standalone tools):download_workflow_run_artifactget_workflow_runget_workflow_run_logsget_workflow_run_usagelist_workflow_jobslist_workflow_run_artifactslist_workflow_runslist_workflowsCurrent tools:
actions_get- wrapper tool with methods to get individual workflows, runs, jobs, and artifactsactions_list- wrapper tool with methods to list workflows, runs, jobs, and artifactsget_job_logs- standalone tool for retrieving job logsImpact
This update ensures the JSON mapping accurately represents the actual MCP server capabilities and prevents discrepancies in toolset compilation. The compiler will now correctly understand which tools are available when specific toolsets are enabled.
Verification
These changes were identified by: