teemux 1.9.0 → 1.9.1

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 +19 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,8 +18,22 @@
18
18
  <a href="https://github.com/gajus/teemux/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/teemux.svg" alt="license" /></a>
19
19
  </p>
20
20
 
21
+ <p align="center">
22
+ <img src="./preview.gif" alt="teemux demo" width="600" />
23
+ </p>
24
+
25
+ <p align="center">
26
+ <a href="https://teemux.com/">View a demo of Teemux in action</a>
27
+ </p>
28
+
21
29
  ---
22
30
 
31
+ ## Demo
32
+
33
+ ```bash
34
+ npx teemux -- curl -N https://teemux.com/random-logs
35
+ ```
36
+
23
37
  ## Motivation
24
38
 
25
39
  * Needed a simple way to browse logs aggregated across multiple processes.
@@ -95,7 +109,11 @@ Add teemux as an MCP server in your AI tool's configuration. For Claude Code, ad
95
109
  {
96
110
  "mcpServers": {
97
111
  "teemux": {
98
- "url": "http://127.0.0.1:8336/mcp"
112
+ "command": "npx",
113
+ "args": [
114
+ "mcp-remote",
115
+ "http://127.0.0.1:8336/mcp"
116
+ ]
99
117
  }
100
118
  }
101
119
  }
package/package.json CHANGED
@@ -103,5 +103,5 @@
103
103
  },
104
104
  "type": "module",
105
105
  "types": "./dist/teemux.d.ts",
106
- "version": "1.9.0"
106
+ "version": "1.9.1"
107
107
  }