From 3dad6d8356aed5c5d53e9b7134dcb1fd574ecd2c Mon Sep 17 00:00:00 2001 From: haosenwang1018 Date: Wed, 4 Mar 2026 10:09:48 +0000 Subject: [PATCH 1/4] docs: improve install prerequisite wording in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d1c6a3..d9a8fbe 100644 --- a/README.md +++ b/README.md @@ -24,10 +24,10 @@ A lightweight, Bun-based CLI for interacting with [MCP (Model Context Protocol)] curl -fsSL https://raw.githubusercontent.com/philschmid/mcp-cli/main/install.sh | bash ``` -or +or ```bash -# requires bun install +# requires Bun to be installed bun install -g https://github.com/philschmid/mcp-cli ``` From 151701f61a9747d7afb6fb12cf20be36ebabefbb Mon Sep 17 00:00:00 2001 From: haosenwang1018 Date: Thu, 5 Mar 2026 04:21:39 +0000 Subject: [PATCH 2/4] docs: fix corrupted emoji bullets in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d9a8fbe..1d60ac4 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ A lightweight, Bun-based CLI for interacting with [MCP (Model Context Protocol)] - 🤖 **Agent-Optimized** - Designed for AI coding agents (Gemini CLI, Claude Code, etc.) - 🔌 **Universal** - Supports both stdio and HTTP MCP servers - ⚡ **Connection Pooling** - Lazy-spawn daemon keeps connections warm (60s idle timeout) -- � **Tool Filtering** - Allow/disable specific tools per server via config +- 🧰 **Tool Filtering** - Allow/disable specific tools per server via config - 📋 **Server Instructions** - Display MCP server instructions in output -- �💡 **Actionable Errors** - Structured error messages with available servers and recovery suggestions +- 💡 **Actionable Errors** - Structured error messages with available servers and recovery suggestions ![mcp-cli](./comparison.jpeg) From dda4cf13b3d28cf71114b1cb9b584357bbb3664b Mon Sep 17 00:00:00 2001 From: haosenwang1018 Date: Thu, 5 Mar 2026 04:57:37 +0000 Subject: [PATCH 3/4] docs: fix README grammar in config compatibility line --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d60ac4..9aa3022 100644 --- a/README.md +++ b/README.md @@ -276,7 +276,7 @@ fi ### Config File Format -The CLI uses `mcp_servers.json`, compatible with Claude Desktop, Gemini or VS Code: +The CLI uses `mcp_servers.json`, compatible with Claude Desktop, Gemini, or VS Code: ```json { From 5646a1acf9f90475bb409a0310e7ab13e6f009a5 Mon Sep 17 00:00:00 2001 From: haosenwang1018 Date: Thu, 5 Mar 2026 05:30:08 +0000 Subject: [PATCH 4/4] docs: update CHANGELOG with version 0.3.1 placeholder --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f071d58..792dfa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,3 +55,9 @@ - **Backward Compatibility Syntax** - `mcp-cli server/tool [args]` now errors with helpful message - **`--json` and `--raw` options** - Output format now automatic based on command + +## [0.3.1] - 2026-03-05 + +### Fixed + +- Documentation improvements