From 861fc7fcdc35a0f1b6573f6f70da5bd1bd129811 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Thu, 2 Oct 2025 02:51:59 +0000 Subject: [PATCH] docs: add usage options for model short names and mcp command - Document bb usage with ~/.bb/models.json - Document bb mcp command to display configured MCP servers - Add new Usage Options section to Quick Setup Co-authored-by: Bob Herrmann --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a6ea45d..d9ba036 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Think of it as a bridge between your favorite LLM and your development environme ### Quick Setup: 1. **Download** the file for your computer above -2. **Unzip** the downloaded file +2. **Unzip** the downloaded file 3. **Set up LLM** You can use Ollama, or from [Cerebras](https://cloud.cerebras.ai?referral_code=y3wvtcmy) (they have a free tier) 4. **Run BlueBerry:** - **Windows**: Double-click `bb.exe`, or open Command Prompt and run: @@ -34,6 +34,22 @@ Think of it as a bridge between your favorite LLM and your development environme You should see a chat prompt where you can talk to the AI! +### Usage Options: + +Once installed, you can run BlueBerry in several ways: + +1. **Using model short names** (requires `~/.bb/models.json` configuration): + ```bash + bb + ``` + This uses the short name to automatically set the model, endpoint, and key from your `~/.bb/models.json` configuration file. + +2. **Display configured MCP servers**: + ```bash + bb mcp + ``` + Shows the currently configured MCP servers from `~/.bb/mcp.json` and exits. + --- ## 🛠️ Developer Path