#pull-request
14 个结果
GitHub PR MCP Server
Claude MCP Server for Github with Linear integration
GitHub PR MCP Server
Claude MCP Server for Github with Linear integration
Bitbucket Server MCP
Mirror of
GitHub PR Comments MCP Server
MCP server that fetches GitHub Pull Request comments
MCP for GitHub PR, Issues, Tags and Releases
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management. Enables LLMs to fetch PR details, analyse diffs, manage issues, and handle releases through a standardised interface
limited-github-cli-mcp
MCP Server for Github CLI
GitHub PR MCP Server
Mirror of
Atlassian Bitbucket MCP Server
Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.
Bitbucket Server MCP
MCP (Model Context Protocol) server for Bitbucket Server Pull Request management
Koalr — Deploy Risk Scoring
core pull requests for deployment risk using 36 signals: change entropy, DDL migration detection, CODEOWNERS violations, coverage gaps, and more. Get a 0-100 risk score before you merge. Free tier available at koalr.com
Git Insight Mcp
MCP server for semantic git queries. Walks the local `git` CLI plus optional GitHub API. Local-first; GH token only needed for PR/issue linkage. ## Why `git` answers these poorly: - "Who last touched this function?" — `git blame` only gives lines - "What PR introduced this line?" — manual blame → SHA → search GH - "Which files always change together?" — no built-in - "Show unmerged branches older than 30 days" — bash gymnastics - "What did I work on last week?" — manual log scrub LLM agents need this context to make safe edits. ## Tools | Tool | Purpose | |------|---------| | `who_touched` | Group blame by author. Lines, commits, last-touched, primary owner. | | `introducing_pr` | Find PR that introduced a line or commit. Merge-msg parse + GH API fallback. | | `co_change` | Files most often changed together with the input file. | | `branch_hygiene` | Branches w/ ahead/behind, last commit, merged status, stale flag. | | `recent_work` | Standup helper: author's commits + files + ins/del in a window. | | `commit_context` | Full commit context: subject, body, files, PR, related issues. | ## Install ```bash npm install -g git-insight-mcp claude mcp add --scope user git-insight -- git-insight-mcp