MCP Hub
Back to servers

@agenticbits/claude-plugin

Adds a live git branch status bar to the Claude interface for monitoring multiple repositories simultaneously. It provides tools for managing repository tracking and visibility through natural language commands.

glama
Updated
Mar 13, 2026

@agenticbits/claude-plugin

Claude Code MCP plugin that adds a live git branch status bar to the Claude footer.

⎇ payment-service:feature/PAYM-43  |  payments-ui:main  |  payments-infra:main

Features

  • Branch status bar — shows the current git branch for every configured repo in the Claude footer
  • Master toggle — enable/disable the status bar entirely
  • Reference repo toggle — show/hide read-only reference repos separately from active dev repos
  • Per-repo visibility — show or hide individual repos without removing them from config
  • MCP tools — manage everything via natural language in Claude chat

Quick start

git clone git@gitlab.com:raptortech1/agentic-bits-claude-plugin.git
cd agentic-bits-claude-plugin
npm install && npm run build
bash scripts/setup.sh

Then add the MCP server to your project's .mcp.json:

{
  "mcpServers": {
    "agentic-bits": {
      "command": "node",
      "args": ["/path/to/agentic-bits-claude-plugin/dist/index.js"]
    }
  }
}

See docs/setup-guide.md for full instructions including payment-service workspace pre-population.


MCP tools

ToolWhat it does
get_branch_statusLive branch status for all visible repos
add_repoAdd a repo to track
remove_repoRemove a repo
set_repo_visibilityShow/hide a specific repo
toggle_statusbarEnable/disable the status bar
toggle_reference_reposShow/hide reference repos
list_reposList all repos and their config
get_config_infoDump full config + path

Config file

~/.config/agentic-bits/plugin.json

{
  "statusbar": {
    "enabled": true,
    "showReferenceRepos": false
  },
  "repos": [
    {
      "path": "/absolute/path/to/repo",
      "label": "my-repo",
      "type": "active",
      "show": true
    }
  ]
}

Publishing

Tag a commit to publish to npm:

git tag v1.0.0 && git push origin v1.0.0

Pipeline: typecheck → build → npm publish → GitLab release.

Reviews

No reviews yet

Sign in to write a review