tabby-mcp-server 1.1.3 → 1.1.5
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 +40 -0
- package/dist/index.js +477 -90
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/typings/components/mcpSettingsTab.component.d.ts +12 -4
- package/typings/i18n/index.d.ts +29 -0
- package/typings/services/i18n.service.d.ts +28 -0
- package/typings/services/mcpConfigProvider.d.ts +3 -0
- package/typings/tools/terminal.d.ts +21 -0
package/README.md
CHANGED
|
@@ -306,10 +306,27 @@ For clients that don't support SSE, use the STDIO bridge:
|
|
|
306
306
|
| Start on Boot | Auto-start server | true |
|
|
307
307
|
| Pair Programming | Confirm commands | true |
|
|
308
308
|
| Session Tracking | Use stable UUIDs | true |
|
|
309
|
+
| Background Execution | Run without focus | false |
|
|
309
310
|
| SFTP Enabled | Enable SFTP tools | true |
|
|
310
311
|
|
|
311
312
|
---
|
|
312
313
|
|
|
314
|
+
## 🔄 Background Execution Mode
|
|
315
|
+
|
|
316
|
+
Enable this mode to allow MCP commands to run **without switching focus** to the terminal. This lets you continue working on other tabs while AI executes commands in the background.
|
|
317
|
+
|
|
318
|
+
**Settings → MCP → Background Execution**
|
|
319
|
+
|
|
320
|
+
> ⚠️ **Risks:**
|
|
321
|
+
> - You won't see commands executing in real-time
|
|
322
|
+
> - If you type in the target terminal while AI is running, input will conflict
|
|
323
|
+
> - For split panes, commands go to the `sessionId` target, not the focused pane
|
|
324
|
+
> - Dangerous commands could run without you noticing
|
|
325
|
+
|
|
326
|
+
> ✅ **Recommended:** Keep "Pair Programming Mode" enabled with confirmation dialogs for safety.
|
|
327
|
+
|
|
328
|
+
---
|
|
329
|
+
|
|
313
330
|
## ⚠️ Platform Support
|
|
314
331
|
|
|
315
332
|
| Platform | Status | Notes |
|
|
@@ -354,6 +371,29 @@ This project builds upon the work of [tabby-mcp-server](https://github.com/thuan
|
|
|
354
371
|
|
|
355
372
|
## 📝 Changelog
|
|
356
373
|
|
|
374
|
+
### v1.1.5 (2026-01-22)
|
|
375
|
+
|
|
376
|
+
**New Features:**
|
|
377
|
+
- 🌐 **Internationalization (i18n)** - Settings UI now supports multiple languages
|
|
378
|
+
- English (`en-US`, `en-GB`)
|
|
379
|
+
- Chinese Simplified (`zh-CN`, `zh-TW`)
|
|
380
|
+
- Auto-follows Tabby's language setting
|
|
381
|
+
- Extensible: easily add new languages by adding JSON files
|
|
382
|
+
|
|
383
|
+
### v1.1.4 (2026-01-22)
|
|
384
|
+
|
|
385
|
+
**New Features:**
|
|
386
|
+
- 🔄 **Background Execution Mode** - Run MCP commands without switching terminal focus
|
|
387
|
+
- Settings UI with comprehensive risk warnings
|
|
388
|
+
- Split pane focus handling for proper pane targeting
|
|
389
|
+
- 🐚 **Multi-shell Compatibility** - `exec_command` now supports Fish, Bash, Zsh, and sh
|
|
390
|
+
- Auto-detects shell type from terminal buffer patterns
|
|
391
|
+
- Shell-specific command wrappers for exit code capture
|
|
392
|
+
|
|
393
|
+
**Bug Fixes:**
|
|
394
|
+
- 🔧 Fixed `open_profile` SSH readiness detection - no longer returns prematurely before SSH is connected
|
|
395
|
+
- Fixed shell detection for non-bash shells (Fish shell `$status` vs `$?`)
|
|
396
|
+
|
|
357
397
|
### v1.1.3 (2026-01-22)
|
|
358
398
|
|
|
359
399
|
**Bug Fixes:**
|