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.
Files changed (2) hide show
  1. package/README.md +26 -15
  2. 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
- ## Configuration
90
-
91
- Add to your MCP client config (e.g., `.mcp.json`, Claude Code settings, etc.):
92
-
93
- ```json
94
- {
95
- "mcpServers": {
96
- "wezterm": {
97
- "command": "wezterm-agent-mcp",
98
- "env": {
99
- "WEZ_PROJECT_ROOT": "/path/to/your/project"
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wezterm-agent-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "description": "Wezterm MCP Server — programmable terminal control plane for multi-agent AI workflows",
6
6
  "license": "PolyForm-Strict-1.0.0",