Claude Code plugin
Install Breeth into Claude Code (CLI / VS Code extension) via the plugin marketplace.
Anthropic's Claude Code CLI and VS Code extension support installable plugins. Breeth ships an official plugin that wires the MCP server with one command.
Install
In any Claude Code session:
/plugin marketplace add Gramies/cogram-claude-plugin
/plugin install breeth@breethClaude Code prompts you for a Breeth API key — paste a ck_live_… from breeth.com/app/api-keys. It's stored in the macOS Keychain / Windows Credential Manager / GNOME Keyring (whichever your OS uses), never in settings.json.
Verify with:
/breeth-helpYou should see the install + auth quickstart. Then ask Claude in chat: "what Breeth tools do you have?" — five MCP tools should show.
Rotating the key
/breeth-loginThis walks you through replacing the stored key (e.g. when revoking and re-minting).
How it works
Under the hood, the plugin declares:
- An
mcpServersentry pointing athttps://mcp.thebreeth.com/mcpvia themcp-remoteshim with a--header Authorization: Bearer ${user_config.api_key}flag. - A
userConfig.api_keyfield markedsensitive: true, which is what triggers Claude Code to store it in the OS keychain and inject it as aCLAUDE_PLUGIN_OPTION_API_KEYenv var into the MCP subprocess at launch time.
The plugin manifest is open source: github.com/Gramies/cogram-claude-plugin.
Uninstall
/plugin uninstall breethRemoves the plugin and clears the stored API key. The key on Breeth's side is still active — revoke it from /app/api-keys if you don't want it usable anywhere else.