github-repo-assistant
Provides tools for interacting with GitHub pull requests and issues, including listing open PRs, viewing diffs, checking CI checks, and posting review comments.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@github-repo-assistantwhat's failing on PR #21 in octocat/Hello-World"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
github-repo-assistant
An MCP server that lets any MCP client (Claude Desktop, Claude Code, etc.) inspect and interact with GitHub pull requests and issues via natural language, using the GitHub REST API.
Tools
list_open_prs(repo)- list open pull requestsget_pr_diff(repo, pr_number)- file-by-file diff for a PRlist_failing_checks(repo, pr_number)- failing CI checks on a PR's latest commitlist_open_issues(repo)- list open issuespost_review_comment(repo, pr_number, body, confirm)- post a PR comment (guarded, see below)
repo is always in "owner/repo" form.
Related MCP server: mcp-server-github
Write-action safety
post_review_comment is the only tool that changes anything on GitHub, and
it's gated two ways:
Environment flag - refuses outright unless
ALLOW_WRITES=trueis set.Confirm step - the first call (
confirm=False, the default) only returns a preview of what would be posted; nothing is sent until you call it again withconfirm=True.
Setup
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
# edit .env: set GITHUB_TOKEN to a fine-grained PAT scoped to the repos you wantRun
python server.pyPoint an MCP client at this file via stdio transport (same pattern as any other local MCP server).
Status
Scaffolded - tools are implemented but not yet tested against a live repo.
This server cannot be deployed
Maintenance
Related MCP Connectors
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
Create, deploy, and operate MCP servers directly from your GitHub repositories.
An MCP server that gives your AI access to the source code and docs of all public github repos
MCP server for visual regression testing: triage a PR's UI diffs from your coding agent.
Related MCP Servers
- FlicenseAqualityDmaintenanceA minimal MCP server that exposes a focused set of GitHub PR review tools to AI agents, enabling PR listing, detail retrieval, comment viewing, and thread management.5-
- AlicenseNot gradedqualityBmaintenanceAn MCP server that enables GitHub API operations such as managing repositories, issues, and pull requests through natural language.305 npmISC
- FlicenseNot gradedqualityCmaintenanceEnables natural language interaction with GitHub through an MCP server. Supports reading repos, issues, and PRs, as well as creating and editing issues with user confirmation.-
- AlicenseAqualityCmaintenanceA production-ready MCP server for triaging and reviewing GitHub pull requests via the GitHub REST API, providing typed tools to list, inspect, comment, add labels, and submit reviews.82 npmMIT