Codereviewbuddy MCP Server

MCP server that helps AI coding agents interact with AI code reviewers on GitHub PRs

Local serverstdioPython

What is the Codereviewbuddy MCP server?

Codereviewbuddy MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP server that helps AI coding agents interact with AI code reviewers on GitHub PRs.

What you get

An MCP server that helps your AI coding agent manage PR review comments from any AI reviewer that uses GitHub's PR review infrastructure.

What the assistant can call

Once Codereviewbuddy is connected, these are the calls the assistant has available:

  • summarize_review_status — query, discovery
  • triage_review_comments — query
  • get_thread — query
  • reply_to_comment — command
  • diagnose_ci — query
  • check_ci_status — query
  • stack_activity — query
  • list_recent_unresolved — query
  • review_pr_descriptions — query
  • show_config — discovery
  • Troubleshooting — If your MCP client reports No module named 'fastmcp.server.tasks.routing', the runtime has an incompatible FastMCP. Fixes:
  • Testing — The Testing tool exposed by this server

Setting it up

The server ships on PyPI as codereviewbuddy, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Configuration and credentials

You will need 3 environment variables: CRB_OWNER_LOGINS, CRB_PR_DESCRIPTIONS__ENABLED, CRB_SELF_IMPROVEMENT__ENABLED. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • GitHub CLI (gh) installed and authenticated (gh auth login) - Python 3.14+

Choosing this one

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Codereviewbuddy's toolset — summarize_review_status, triage_review_comments, get_thread and 10 more — is a fair guide to whether it matches your workflow. It is maintained by detailobsessed; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Codereviewbuddy.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the codereviewbuddy mcp server does with a few real requests.

Available tools

ToolWhat it does
summarize_review_statusquery, discovery
triage_review_commentsquery
get_threadquery
reply_to_commentcommand
diagnose_ciquery
check_ci_statusquery
stack_activityquery
list_recent_unresolvedquery
review_pr_descriptionsquery
show_configdiscovery
TroubleshootingIf your MCP client reports No module named 'fastmcp.server.tasks.routing', the runtime has an incompatible FastMCP. Fixes:
TestingThe Testing tool exposed by this server.
ArchitectureThe server is built on [FastMCP v3](https://github.com/jlowin/fastmcp) with a clean separation:

How to install the Codereviewbuddy MCP server

All options enabled:

```jsonc
{
  "mcpServers": {
    "codereviewbuddy": {
      "command": "uvx",
      "args": ["codereviewbuddy@latest"],
      "env": {
        // GitHub logins considered "ours" for triage filtering (comma-separated)
        "CRB_OWNER_LOGINS": "alice,bob",
        // Enable PR description quality checks
        "CRB_PR_DESCRIPTIONS__ENABLED": "true",
        // Agents suggest Linear issues when they hit server gaps
        "CRB_SELF_IMPROVEMENT__ENABLED": "true"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • GitHub CLI (gh) installed and authenticated (gh auth login) - Python 3.14+
VariableDescriptionRequired
CRB_OWNER_LOGINSConfiguration value read at startup.Optional
CRB_PR_DESCRIPTIONS__ENABLEDConfiguration value read at startup.Optional
CRB_SELF_IMPROVEMENT__ENABLEDConfiguration value read at startup.Optional

Example prompts to try

  • Use Codereviewbuddy to summarize review status.
  • Use Codereviewbuddy to triage review comments.
  • Use Codereviewbuddy to get thread.

Frequently asked questions

It connects Codereviewbuddy to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (summarize_review_status, triage_review_comments, get_thread, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Codereviewbuddy directly.