Aira MCP Server

A Model Context Protocol server for creating commit messages from git staged files

Local serverstdioTypeScript

What is the Aira MCP server?

A Model Context Protocol server for creating commit messages from git staged files. The aira mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 6 defined tools rather than through you.

Its toolset

Everything the assistant can do here goes through one of these:

  • get_status — The get_status tool exposed by this server
  • create_commit — The create_commit tool exposed by this server
  • init_gitflow — The init_gitflow tool exposed by this server
  • create_branch — The create_branch tool exposed by this server
  • merge_branch — The merge_branch tool exposed by this server
  • list_branches — The list_branches tool exposed by this server

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at npm on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Aira's toolset — get_status, create_commit, init_gitflow and 3 more — is a fair guide to whether it matches your workflow. It is maintained by Sunwood-ai-labs; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the aira mcp server does with a few real requests.

Available tools

ToolWhat it does
get_statusThe get_status tool exposed by this server.
create_commitThe create_commit tool exposed by this server.
init_gitflowThe init_gitflow tool exposed by this server.
create_branchThe create_branch tool exposed by this server.
merge_branchThe merge_branch tool exposed by this server.
list_branchesThe list_branches tool exposed by this server.

How to install the Aira MCP server

{
  "mcpServers": {
    "aira": {
      "command": "npx",
      "args": ["-y", "npm"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Aira to get status.
  • Use Aira to create commit.
  • Use Aira to init gitflow.

Frequently asked questions

It connects Aira to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (get_status, create_commit, init_gitflow, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Aira directly.