The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Udacity Commit listing page.
An MCP server that validates and formats git commit messages according to the Udacity Git Commit Message Style Guide.
One line — paste it into your terminal:
For Claude Desktop, add to claude_desktop_config.json:
| Primitive | Name | Purpose |
|---|---|---|
| Resource | udacity://commit-styleguide | The style-guide rules, as markdown |
| Resource | udacity://branch-naming | The companion type/kebab-case branch-naming rules, as markdown |
| Tool | validate_commit_message | Checks a message against every rule (type, ≤50-char subject, capitalization, no trailing period, blank line, ≤72-char body wrap) |
| Tool | format_commit_message | Builds a compliant message from type + subject + optional body/footer |
| Tool | validate_branch_name | Checks a branch name against the companion type/kebab-case convention (e.g. feat/add-dark-mode); release/* is a typed branch with a version-style description (release/1.2.0), and base branches like main are exempt |
format_commit_message turns loose parts into a compliant commit:
validate_commit_message flags every violation:
validate_branch_name enforces the companion type/kebab-case convention:
MIT