Add code-owners plugin as an extension
Adds a new sibling package `gerrit_mcp_server_code_owners` wrapping the
Gerrit code-owners plugin REST API. `register()` wires up three tools,
all gated via `@requires_plugin("code-owners")`:
- `get_code_owner_status`: per-file ownership status for a change
(APPROVED/PENDING/INSUFFICIENT_REVIEWERS), with pagination via
`limit` and `start`.
- `get_code_owners_for_path`: suggested owners for a specific path in a
change revision, filtered and ranked by the plugin (current reviewers
ranked higher, change owner and service users excluded).
- `check_code_owner`: checks code ownership for a path in a branch,
returning ownership kind (global/default/fallback) and optional
change-level permissions when `change_id` is supplied.
All tools return typed TypedDicts so the MCP SDK auto-generates an
output_schema and emits both structured and unstructured content. Error
paths raise exceptions rather than returning text error payloads.
Includes 23 unit tests and updates docs/available_tools.md.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Change-Id: Ibf1ec8a491c18a39f20c0f294abc818b9ad055bf
An MCP (Model Context Protocol) server for interacting with the Gerrit code review system. This server allows a language model like Gemini to query changes, retrieve details, and manage reviews by executing curl commands against the Gerrit REST API.
This server can be run as a persistent HTTP server or on-demand via STDIO.
For detailed information, please see the documents in the docs/ directory:
gerrit_config.json file and all authentication methods.Before you begin, ensure you have the following tools installed and available in your system's PATH.
pip if absent.Run the build script from the root of the gerrit-mcp-server project directory. This will create a virtual environment in .venv via uv sync and install all dependencies.
./build-gerrit.sh
You will need to create a gerrit_config.json file inside the gerrit_mcp_server directory. Copy the provided sample file gerrit_mcp_server/gerrit_config.sample.json and customize it for your environment. See the Configuration Guide for details on all available options.
cp gerrit_mcp_server/gerrit_config.sample.json gerrit_mcp_server/gerrit_config.json
Alternatively, if your harness supports skills (tested with Claude Code), the /gerrit:setup skill can create or repair this file for you interactively. See Interactive Setup.
To run the server as a persistent background process, use the server.sh script:
./server.sh start
./server.sh status
./server.sh stop
For on-demand STDIO mode, please see the Gemini CLI Setup Guide or, to use this server as a Claude Code plugin, the Claude Code Setup Guide.
This is not an officially supported Google product. This project is not eligible for the Google Open Source Software Vulnerability Rewards Program.