loading…
Search for a command to run...
loading…
Generates commit messages, PR titles and descriptions, and release notes from git changes, with automatic domain detection for appropriate PR templates.
Generates commit messages, PR titles and descriptions, and release notes from git changes, with automatic domain detection for appropriate PR templates.
Generate consistent commit messages, PR content, and release notes automatically.
An MCP server that generates commit messages, PR content (titles, descriptions, and templates), and release notes from your git changes. If your repo doesn't already have a PR template, it auto-detects the domain (mobile, frontend, backend, devops, security, ML) and applies the right one — no config needed.
npx pr-narrator-mcp
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"pr-narrator": {
"command": "npx",
"args": ["-y", "pr-narrator-mcp"],
"env": {
"BASE_BRANCH": "develop",
"TICKET_PATTERN": "[A-Z]+-\\d+"
}
}
}
}
Add to your Claude Desktop config:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json{
"mcpServers": {
"pr-narrator": {
"command": "npx",
"args": ["-y", "pr-narrator-mcp"],
"env": {
"BASE_BRANCH": "develop",
"TICKET_PATTERN": "[A-Z]+-\\d+"
}
}
}
}
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"pr-narrator": {
"command": "npx",
"args": ["-y", "pr-narrator-mcp"],
"env": {
"BASE_BRANCH": "develop",
"TICKET_PATTERN": "[A-Z]+-\\d+"
}
}
}
}
Add to .vscode/mcp.json in your project:
{
"servers": {
"pr-narrator": {
"command": "npx",
"args": ["-y", "pr-narrator-mcp"],
"env": {
"BASE_BRANCH": "develop",
"TICKET_PATTERN": "[A-Z]+-\\d+"
}
}
}
}
Any MCP client that supports stdio transport can use this server. The command is:
npx -y pr-narrator-mcp
That's it! No config files needed. All env vars are optional.
All settings are optional env vars in MCP JSON:
| Env Var | What it does | Example |
|---|---|---|
BASE_BRANCH |
Base branch for PRs | develop |
TICKET_PATTERN |
Ticket regex | [A-Z]+-\\d+ |
TICKET_LINK |
Ticket URL template | https://jira.example.com/browse/{ticket} |
PREFIX_STYLE |
Prefix format | capitalized or bracketed |
DEFAULT_REPO_PATH |
Fallback repo path (single-repo workflows) | /Users/me/my-project |
PR_TEMPLATE_PRESET |
Force a PR template preset | mobile, backend, devops |
PR_DETECT_REPO_TEMPLATE |
Enable/disable repo template detection | true (default) or false |
If BASE_BRANCH is not set, it auto-detects from the repo (main, master, develop).
Note on repoPath: All tools accept a repoPath parameter. The AI calling the tool should pass the user's current workspace directory. DEFAULT_REPO_PATH is only a fallback for single-repo workflows.
Generate a complete PR with title, description, and context for AI enhancement. Automatically resolves the best template for the repo (see PR Templates).
Returns:
title — PR title (placeholder derived from branch/commits — AI should rewrite)description — PR description with sections from the resolved templatepurposeContext — ALL commit titles, ALL commit bullets, test info, file countpurposeGuidelines — Instructions for AI to rewrite title and Purpose from ALL dataImportant: Both the title and Purpose are placeholders. The AI must read ALL purposeContext.commitTitles and purposeContext.commitBullets to synthesize a title and description that reflects the full scope of changes.
Optional templatePreset parameter to force a specific template (e.g., mobile, backend).
Generate a PR title based on branch info and commits.
Generate a PR description with auto-populated sections. Same template resolution as generate_pr but returns only the description. Accepts optional templatePreset and summary parameters.
Preview the resolved PR template for a repo before generating. Shows which sections will appear based on the repo's template file, domain auto-detection, or configured preset. Useful for understanding what a PR will look like before calling generate_pr.
Returns the template source (repo, preset, auto-detected, or default), detected domain, and each section's visibility based on current branch changes.
Prepare commit message context from staged or unstaged changes.
If nothing is staged, the tool automatically falls back to unstaged working tree changes and provides staging instructions — no need to run git add first just to analyze your changes. The response includes a source field ("staged" or "unstaged") and a hint with the exact git add command to run.
When includeBody is true, the actual diff is provided so the AI can write a meaningful body that describes what changed functionally — not just file type counts.
Two modes:
summary param (recommended): Returns a ready-to-use commit message with proper prefix/formatting. Add includeBody: true to get diff-based body generation.summary: Returns placeholder title + diff + guidelines for AI to compose the message and bodyCheck a commit message against configured rules (length, format, capitalization, imperative mood).
Generate a changelog / release notes from git commit history between two refs (tags, SHAs, or branches).
from to the latest tag (or initial commit if no tags) and to to HEADkeepachangelog (default), github-release, plaintype (default), scope, ticketReturns changelog (formatted markdown), entries (structured data), summary, stats, range, and warnings.
Analyze the current repository state: staged changes, branch info, working tree status, and file categorization.
Find ticket numbers in the branch name and commit messages using the configured TICKET_PATTERN.
See current settings and their resolved values.
| Branch | Commit/PR Prefix |
|---|---|
feature/PROJ-123-add-login |
PROJ-123: |
task/update-readme |
Task: |
bug/fix-crash |
Bug: |
main |
(no prefix) |
PR Narrator automatically selects the best template for each repository through a resolution pipeline:
PULL_REQUEST_TEMPLATE.md exists in the repo (.github/, root, or docs/), it's parsed into sectionsPR_TEMPLATE_PRESET is set or templatePreset is passed to a toolThis means switching between repos (iOS app, Express API, Terraform infra) automatically uses the right template with zero configuration.
PR Narrator scans the top 3 levels of the repo file tree and scores files against domain signal patterns. The domain with the highest score wins, as long as it reaches a minimum threshold.
| Domain | Key Signals | Sections Added |
|---|---|---|
| mobile | .swift, .kt, .xcodeproj, AndroidManifest.xml |
Screenshots, Device Testing, Accessibility |
| frontend | .tsx, .vue, next.config, vite.config |
Screenshots / Visual Changes, Browser Compatibility, Accessibility |
| backend | .go, .rs, migrations/, prisma/schema |
API Changes, Database / Migration, Breaking Changes |
| devops | .tf, helm/, k8s/, Dockerfile |
Infrastructure Impact, Affected Environments, Rollback Plan |
| security | .snyk, tfsec, trivy |
Security Impact, Threat Model Changes |
| ml | .ipynb, model/, training/, dvc.yaml |
Model Changes, Dataset Changes, Metrics / Evaluation |
| Preset | Sections | Best For |
|---|---|---|
default |
6 | General-purpose repos |
minimal |
2 | Quick PRs (Purpose + Test Plan) |
detailed |
10 | Thorough reviews with screenshots, breaking changes, deployment notes |
mobile |
8 | iOS and Android apps |
frontend |
8 | Web apps (React, Vue, Svelte, etc.) |
backend |
8 | APIs and services |
devops |
8 | Infrastructure and CI/CD |
security |
7 | Security-focused changes |
ml |
8 | Machine learning and data science |
Sections can appear or hide based on context:
has_tickets — Ticket section only appears when tickets are found in the branch name or commitsfile_pattern — Screenshots section only appears when UI files are changed; Database section only when migration files are changedcommit_count_gt — Changes (commit list) section only appears when there's more than 1 commitIf your repo has a PULL_REQUEST_TEMPLATE.md, PR Narrator will find and parse it automatically. Supported locations:
.github/pull_request_template.md.github/PULL_REQUEST_TEMPLATE/ (picks default.md first)pull_request_template.md (repo root)docs/pull_request_template.mdFile names are matched case-insensitively. Both .md and .txt extensions are supported.
Set PR_DETECT_REPO_TEMPLATE=false to skip repo template detection and use presets or auto-detection instead.
This MCP server is read-only and local-only (stdio transport). It never modifies your git repository, makes network requests, or handles authentication tokens.
Things to be aware of:
TICKET_PATTERN env var is checked for ReDoS safety (catastrophic backtracking, length limits) before use.For full details, see SECURITY.md.
git clone https://github.com/mhaviv/pr-narrator-mcp.git
cd pr-narrator-mcp
npm install
npm run build
npm test
MIT
Выполни в терминале:
claude mcp add pr-narrator-mcp -- npx Безопасность
Низкий рискАвтоматическая эвристика по публичным данным — не гарантия безопасности.