[mcp-tools] Add code_quality toolset to GitHub MCP toolsets mapping#40625
Merged
Conversation
The github-mcp-server added a new code_quality toolset (ID: code_quality, defined in pkg/github/code_quality.go) exposing the get_code_quality_finding tool. This adds it to the mapping with security-events read permission. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
Author
|
Hey One thing worth adding before this lands:
If you'd like a hand wiring that up, here's a ready-to-use prompt:
|
This was referenced Jun 21, 2026
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.
"body": "## Add
code_qualitytoolset to GitHub MCP toolsets mapping\n\n### Summary\n\nRegisters the newcode_qualitytoolset in the GitHub MCP toolsets permissions map (pkg/workflow/data/github_toolsets_permissions.json). This mirrors a new toolset that was added togithub-mcp-server(defined inpkg/github/code_quality.go), which exposes theget_code_quality_findingtool for reading code quality findings.\n\n### Changes\n\n| File | Change |\n|------|--------|\n|pkg/workflow/data/github_toolsets_permissions.json| Addedcode_qualitytoolset entry |\n\nNew toolset entry:\njson\n\"code_quality\": {\n \"description\": \"Code quality findings\",\n \"read_permissions\": [\"security-events\"],\n \"write_permissions\": [],\n \"tools\": [\"get_code_quality_finding\"]\n}\n\n\nThe entry is inserted alphabetically between the existingactionsandcode_securitytoolsets. Likecode_security, it requestssecurity-eventsread permission, but requires no write permissions.\n\n### Impact\n\n- Breaking change: No\n- Scope: Data file only — no logic changes\n- Permissions: Addssecurity-eventsread scope to any workflow that enables thecode_qualitytoolset (no broader than the existingcode_securitytoolset already grants)\n\n### Testing\n\nNo test changes required; this is a data-only addition to the toolsets mapping. Existing tests that validate the JSON schema and toolset permission structure will cover correctness."