aira-mcp-server MCP Server
Overview
The aira-mcp-server is a Model Context Protocol (MCP) server designed to facilitate the generation of commit messages from git staged files, built in TypeScript.
To use the aira-mcp-server, install it via npm, build the project, and configure it in your project settings with the necessary command and arguments.
- Conventional commit message generation - Gitflow workflow support - Git status checking - Branch management (create, merge, list)
- Automating commit message writing for better consistency.
- Managing Gitflow operations seamlessly within development workflows.
- Retrieving and monitoring git status during software development projects.
Add to your AI client
Use these steps to connect aira-mcp-server MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"aira-mcp-server-sunwood-ai-labs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aira-mcp-server-sunwood-ai-labs"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"aira-mcp-server-sunwood-ai-labs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aira-mcp-server-sunwood-ai-labs"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"aira-mcp-server-sunwood-ai-labs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aira-mcp-server-sunwood-ai-labs"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"aira-mcp-server-sunwood-ai-labs": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aira-mcp-server-sunwood-ai-labs"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"aira-mcp-server-sunwood-ai-labs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aira-mcp-server-sunwood-ai-labs"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"aira-mcp-server-sunwood-ai-labs": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aira-mcp-server-sunwood-ai-labs"
]
}
}
}FAQ
Is this project open-source?
Yes! The aira-mcp-server is under the MIT License, and you can find the repository on GitHub.
What programming language is used?
The aira-mcp-server is built using TypeScript.
How do I install it?
You can install it using npm with the command `npm install`, followed by `npm run build` to build the project.