tabby-mcp-server 1.4.2 → 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 +37 -1
- package/dist/index.js +1405 -439
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/typings/components/mcpSettingsTab.component.d.ts +2 -1
- package/typings/index.d.ts +7 -1
- package/typings/services/mcpConfigProvider.d.ts +5 -0
- package/typings/services/mcpService.d.ts +9 -0
- package/typings/tools/tabManagement.d.ts +5 -0
- package/typings/tools/terminal.d.ts +6 -0
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
[](https://tabby.sh/)
|
|
8
8
|
[](https://modelcontextprotocol.io/)
|
|
9
9
|
[](https://github.com/GentlemanHu/Tabby-MCP/releases)
|
|
10
|
+
[](https://www.npmjs.com/package/tabby-mcp-server)
|
|
11
|
+
[](https://www.npmjs.com/package/tabby-mcp-server)
|
|
10
12
|
[](#-about-this-project)
|
|
11
13
|
[](#%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` |
|
|
277
|
+
| `quick_connect` | Smart quick connect (SSH/telnet/socket/serial) |
|
|
273
278
|
|
|
274
279
|
### SFTP Operations (12) 🆕
|
|
275
280
|
|
|
@@ -376,6 +381,37 @@ 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
|
+
|
|
408
|
+
### v1.5.1 (2026-04-03)
|
|
409
|
+
|
|
410
|
+
**🐛 Bug Fixes:**
|
|
411
|
+
- 🔧 **Fixed `/api/tool/{name}` returning 404** (Issue #4) - Tool API endpoints were registered during `configureExpress()` when `toolCategories` was still empty due to Angular DI initialization order
|
|
412
|
+
- Moved `configureToolEndpoints()` to `startServer()` where all tools are guaranteed to be registered
|
|
413
|
+
- Added duplicate registration guard to prevent route duplication on server restart
|
|
414
|
+
|
|
379
415
|
### v1.4.0 (2026-03-02)
|
|
380
416
|
|
|
381
417
|
**🐛 Bug Fixes:**
|