smart-terminal-mcp 1.2.4 → 1.2.6

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,16 +6,18 @@ Unlike simple `exec`-based approaches, this provides full PTY sessions with bidi
6
6
 
7
7
  ## Why use this instead of your AI client's built-in terminal?
8
8
 
9
- Install this if you want the AI to work more like a developer using a real terminal, not just fire off isolated commands.
9
+ Install this if you want a more consistent terminal workflow across different AI clients, not just whatever built-in terminal behavior one client happens to provide.
10
10
 
11
11
  This MCP is most useful when you want:
12
12
 
13
+ - **Portable workflow across clients** -- The same terminal tools and habits work across Claude Code, Cursor, Trae, Antigravity, and other MCP-capable clients.
14
+ - **Reusable prompts and tooling** -- Workflows built around tools like `terminal_wait`, `terminal_retry`, `terminal_run_paged`, and `terminal_get_history` are easier to reuse across teams and clients, with less lock-in to one client's terminal behavior.
13
15
  - **Persistent terminal state** -- Keep the same shell session alive across steps, including the current folder, environment, and running processes.
14
16
  - **Better interactive behavior** -- Handle prompts, REPLs, dev servers, Ctrl+C, arrow keys, and other real terminal interactions.
15
17
  - **More control over large output** -- Truncate, page, diff, retry, wait for patterns, or fetch history instead of dumping everything at once.
16
18
  - **More predictable automation** -- Use deterministic completion markers instead of guessing when a command is done.
17
19
 
18
- If your AI client already gives you a stable, stateful, interactive terminal with good output handling, you may not need this MCP.
20
+ If your AI client already gives you a stable, stateful, interactive terminal with good output handling, you may not need this MCP for basic command execution. The main reason to add it is to make terminal-driven workflows more explicit, reusable, and portable across clients.
19
21
 
20
22
  ## Features
21
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-terminal-mcp",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "MCP PTY server providing AI agents with real interactive terminal access",
5
5
  "type": "module",
6
6
  "main": "src/index.js",