Fix missing GitHub MCP tools in Claude Implementation workflow#1159
Open
atxtechbro wants to merge 1 commit intomainfrom
Open
Fix missing GitHub MCP tools in Claude Implementation workflow#1159atxtechbro wants to merge 1 commit intomainfrom
atxtechbro wants to merge 1 commit intomainfrom
Conversation
…tation workflow Enable mcp__github__create_pull_request and other GitHub tools that Claude needs for automated PR creation. The generic mcp__github permission wasn't sufficient. This fixes the issue where Claude reports "PR Creation tool not available" when asked to create pull requests automatically. Principle: systems-stewardship
Contributor
|
⏳ I'm reviewing this pull request for security vulnerabilities and code quality issues. I'll provide an update when I'm done |
Contributor
|
✅ I finished the code review, and didn't find any security or code quality issues. |
This was referenced Aug 4, 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.
Summary
Enable specific GitHub MCP tools in the Claude Implementation workflow to allow automated PR creation and other GitHub operations.
Problem
Claude was unable to create pull requests automatically when requested because the
mcp__github__create_pull_requesttool wasn't explicitly allowed in the workflow configuration.Solution
Updated
allowed_toolsin.github/workflows/claude-implementation.ymlto include:mcp__github__create_pull_request- for creating PRsmcp__github__get_issue- for reading issue detailsmcp__github__add_issue_comment- for commenting on issuesmcp__github__update_issue- for updating issue statusmcp__github__search_issues- for searching related issuesmcp__github__list_pull_requests- for checking existing PRsmcp__github__merge_pull_request- for merging PRsTesting
After merging, test by creating a new issue and asking Claude to implement it with automatic PR creation.
Related
Principles
systems-stewardship: Maintaining GitHub Actions workflows for reliable automationose: Enabling elevated automation without manual intervention