tabby-mcp-server 1.5.1 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,6 +7,8 @@
7
7
  [![Tabby Plugin](https://img.shields.io/badge/Tabby-Plugin-purple.svg)](https://tabby.sh/)
8
8
  [![MCP Protocol](https://img.shields.io/badge/MCP-Protocol-orange.svg)](https://modelcontextprotocol.io/)
9
9
  [![GitHub Release](https://img.shields.io/github/v/release/GentlemanHu/Tabby-MCP?color=green)](https://github.com/GentlemanHu/Tabby-MCP/releases)
10
+ [![npm version](https://img.shields.io/npm/v/tabby-mcp-server.svg?color=blue)](https://www.npmjs.com/package/tabby-mcp-server)
11
+ [![npm downloads](https://img.shields.io/npm/dm/tabby-mcp-server.svg?color=blue)](https://www.npmjs.com/package/tabby-mcp-server)
10
12
  [![AI Generated](https://img.shields.io/badge/AI%20Generated-95%25-ff69b4.svg)](#-about-this-project)
11
13
  [![Tested on](https://img.shields.io/badge/Tested%20on-macOS-lightgrey.svg)](#%EF%B8%8F-platform-support)
12
14
 
@@ -90,6 +92,9 @@
90
92
 
91
93
  Search for `tabby-mcp-server` directly in Tabby's built-in Plugin Manager:
92
94
 
95
+ <img width="640" height="262" alt="image" src="https://github.com/user-attachments/assets/0dc65801-1ad5-47fb-a666-779ac6c7d17e" />
96
+
97
+
93
98
  1. Open Tabby → **Settings** → **Plugins**
94
99
  2. Search for `tabby-mcp-server`
95
100
  3. Click **Install**
@@ -269,7 +274,7 @@ For clients that don't support SSE, use the STDIO bridge:
269
274
  | `list_profiles` | List terminal profiles |
270
275
  | `open_profile` | Open tab with profile |
271
276
  | `show_profile_selector` | Show profile dialog |
272
- | `quick_connect` | SSH quick connect |
277
+ | `quick_connect` | Smart quick connect (SSH/telnet/socket/serial) |
273
278
 
274
279
  ### SFTP Operations (12) 🆕
275
280
 
@@ -376,6 +381,30 @@ This project builds upon the work of [tabby-mcp-server](https://github.com/thuan
376
381
 
377
382
  ## 📝 Changelog
378
383
 
384
+ ### v1.6.2 (2026-06-06)
385
+
386
+ **✨ New Features:**
387
+ - 🔍 **Added `get_session_environment` tool** (refs #6)
388
+ - Allows AI agents to accurately detect the terminal context (e.g. detecting Python, Node.js, MySQL, PostgreSQL, SQLite, or standard shell environments).
389
+ - Supports dual modes: `heuristic` (passive buffer parsing with ANSI stripping) and `active` (low-risk active probing for local sessions).
390
+ - **Disabled by default** to ensure predictable AI behavior. Includes full Tabby Settings UI and dynamic tool registration.
391
+
392
+ **🐛 Bug Fixes:**
393
+ - 🔧 **Fixed NPM OIDC Publish Workflow**: Restored reliable token-based publishing (Node 24) to bypass continuous 404 errors from NPM's Trusted Publisher verification.
394
+ - 🔧 **Fixed Boot Crash**: Resolved an early initialization crash `Cannot read properties of undefined (reading 'mcp')` by deferring tool registration logic until configuration is fully loaded.
395
+
396
+ ### v1.6.0 (2026-06-06)
397
+
398
+ **🐛 Bug Fixes:**
399
+ - 🔧 **Fixed `quick_connect` false-success / protocol misrouting behavior** (refs #3, #5, #6)
400
+ - `quick_connect` now shares the same tab/session/ready response chain as `open_profile`
401
+ - Fixed top-level `tabId` / `tabIndex` reporting for newly opened tabs wrapped in `SplitTabComponent`
402
+ - `protocol="auto"` now prefers SSH for `user@host`-style targets instead of depending on provider registration order
403
+ - Added explicit protocol support for `ssh`, `telnet`, `socket`, and `serial` style quick-connect targets
404
+ - Removed stale SSH-only validation that incorrectly rejected non-SSH URI forms such as `telnet://...`
405
+ - 🔧 **Improved plugin shutdown cleanup on app/window teardown** (refs #5)
406
+ - Added best-effort server stop on plugin/window unload to reduce port reuse problems after restart
407
+
379
408
  ### v1.5.1 (2026-04-03)
380
409
 
381
410
  **🐛 Bug Fixes:**