mcp-udacity-commit
This MCP server validates and formats Git commit messages and branch names per the Udacity Git Commit Message Style Guide.
Validate commit messages (
validate_commit_message): checks a full message for compliance (type prefix, subject ≤50 chars, capitalization, no trailing period, blank line after subject, body wrap ≤72 chars). Returns validity status with lists of problems and warnings.Format commit messages (
format_commit_message): auto-composes a compliant message fromtype(feat, fix, docs, style, refactor, test, chore), subject, optional body, footer. Capitalizes subject, removes trailing period, wraps body at 72 chars.Validate branch names (
validate_branch_name): checks againsttype/kebab-caseconvention (e.g.,feat/add-dark-mode), allowsrelease/*with version descriptions, exempts base branches (main).Access style guides: provides markdown resources for commit rules (
udacity://commit-styleguide) and branch naming (udacity://branch-naming).Integrate with Claude: add as an MCP server via
claude mcp addor Claude Desktop config for automated checks and formatting.
Validates and formats git commit messages according to the Udacity Git Commit Message Style Guide.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-udacity-commitValidate this commit message: 'fixed the bug'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-udacity-commit
An MCP server that validates and formats git commit messages according to the Udacity Git Commit Message Style Guide.
Install
One line — paste it into your terminal:
claude mcp add udacity-commit -- npx -y mcp-udacity-commitFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"udacity-commit": {
"command": "npx",
"args": ["-y", "mcp-udacity-commit"]
}
}
}git clone https://github.com/qwertymuzaffar/mcp-udacity-commit
cd mcp-udacity-commit
npm install
npm run build
claude mcp add udacity-commit -- node "$(pwd)/build/index.js"Related MCP server: Cursor Auto-Review MCP Server
What it exposes
Primitive | Name | Purpose |
Resource |
| The style-guide rules, as markdown |
Resource |
| The companion |
Tool |
| Checks a message against every rule (type, ≤50-char subject, capitalization, no trailing period, blank line, ≤72-char body wrap) |
Tool |
| Builds a compliant message from |
Tool |
| Checks a branch name against the companion |
Example
format_commit_message turns loose parts into a compliant commit:
in: type=fix subject="prevent duplicate auth token refresh."
body="The refresh timer could fire twice under load, minting two tokens…"
footer="Resolves: #142"
out:
fix: Prevent duplicate auth token refresh
The refresh timer could fire twice under load, minting two tokens and
logging the user out. Serialize refreshes behind a single in-flight
promise so concurrent callers await the same request.
Resolves: #142validate_commit_message flags every violation:
"Fixed the login bug." → ❌ Not compliant.
• Subject must follow "type: Subject".
• Subject must not end with a period.validate_branch_name enforces the companion type/kebab-case convention:
"feat/add-dark-mode" → ✅ Compliant branch name.
"release/1.2.0" → ✅ Compliant branch name.
"Feature/Add_Dark_Mode" → ❌ Not compliant.
• Unknown type "Feature". Use one of: feat, fix, docs, style, refactor, test, chore, release.
• Description must be lowercase kebab-case. Got: "Add_Dark_Mode".
"main" → ✅ (base branch — feature-branch rules don't apply)Develop
npm install
npm run build # → build/index.js
npm run test:client # spawns the server and exercises the toolsLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceAn intelligent MCP server that automatically generates Conventional Commits style commit messages by analyzing git diffs using LLM providers like DeepSeek and Groq. It enables developers to maintain standardized version history through natural language interactions in supported MCP clients.Last updated12MIT
- Flicense-qualityDmaintenanceAn MCP server that automates code reviews through linting, testing, and git diff analysis. It also generates conventional commit messages and detailed pull request descriptions based on file changes and code patterns.Last updated
- Alicense-qualityDmaintenanceAn MCP server that enforces safe git commits by allowing only specified files and providing fixup capabilities for earlier commits.Last updated1MIT
- Flicense-qualityDmaintenanceMCP server providing commit rules with SemVer and conventional commits format for development teams.Last updated
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
A basic MCP server to operate on the Postman API.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/qwertymuzaffar/mcp-udacity-commit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server