wezterm-agent-mcp 0.1.1 → 0.1.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 +26 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,23 +86,34 @@ It provides:
|
|
|
86
86
|
- **Tab titles** auto-derived from pane CLI contents (e.g., "Claude (3) + shell")
|
|
87
87
|
- **F11** toggles fullscreen
|
|
88
88
|
|
|
89
|
-
##
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
89
|
+
## Setup
|
|
90
|
+
|
|
91
|
+
From your project directory:
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
npx wezterm-agent-mcp init
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
This auto-configures the MCP server for every supported AI coding CLI in one shot:
|
|
98
|
+
|
|
99
|
+
| File | For |
|
|
100
|
+
|---|---|
|
|
101
|
+
| `.mcp.json` | Claude Code, Codex |
|
|
102
|
+
| `.cursor/mcp.json` | Cursor |
|
|
103
|
+
| `.vscode/mcp.json` | VS Code |
|
|
104
|
+
| `.gemini/settings.json` | Gemini CLI |
|
|
105
|
+
| `opencode.json` | OpenCode |
|
|
106
|
+
|
|
107
|
+
Existing config files are merged — other MCP servers you've configured won't be touched.
|
|
108
|
+
|
|
109
|
+
Use `--root` to target a different directory:
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
npx wezterm-agent-mcp init --root /path/to/project
|
|
104
113
|
```
|
|
105
114
|
|
|
115
|
+
Re-running is safe (idempotent) — it only writes if something changed.
|
|
116
|
+
|
|
106
117
|
### Environment Variables
|
|
107
118
|
|
|
108
119
|
| Variable | Description | Default |
|
package/package.json
CHANGED