Skip to main content
Glama
agenticbits

@agenticbits/claude-plugin

by agenticbits

toggle_statusbar

Enable or disable the Claude interface status bar to control visibility of live git repository monitoring information.

Instructions

Enable or disable the entire status bar. When disabled the status line script outputs nothing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
enabledYestrue = enable, false = disable

Implementation Reference

  • The handler implementation for the toggle_statusbar tool, which updates the configuration's statusbar.enabled setting.
    // --- toggle_statusbar ---
    server.tool(
      "toggle_statusbar",
      "Enable or disable the entire status bar. When disabled the status line script outputs nothing.",
      { enabled: z.boolean().describe("true = enable, false = disable") },
      async ({ enabled }) => {
        const config = loadConfig();
        config.statusbar.enabled = enabled;
        saveConfig(config);
        return { content: [{ type: "text", text: `Status bar ${enabled ? "enabled" : "disabled"}.` }] };
      }
    );

Latest Blog Posts

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/agenticbits/claude-plugin'

If you have feedback or need assistance with the MCP directory API, please join our Discord server