You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-18Lines changed: 9 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,8 @@
1
-
# Shell and Coding agent for Claude and Chatgpt
1
+
# Shell and Coding agent for Claude and other mcp clients
2
2
3
-
Empowering chat applications to code, build and run on your local machine.
3
+
Empowering AI to code, build and run on your local machine.
4
4
5
-
- Claude - MCP server with tightly integrated shell and code editing tools.
6
-
- Chatgpt - Allows custom gpt to talk to your shell via a relay server. (linux, mac, windows on wsl)
5
+
wcgw is an MCP server with tightly integrated shell and code editing tools.
7
6
8
7
⚠️ Warning: do not allow BashCommand tool without reviewing the command, it may result in data loss.
9
8
@@ -89,11 +88,9 @@ Then create or update `claude_desktop_config.json` (~/Library/Application Suppor
89
88
"args": [
90
89
"tool",
91
90
"run",
92
-
"--from",
93
-
"wcgw@latest",
94
91
"--python",
95
92
"3.12",
96
-
"wcgw_mcp"
93
+
"wcgw@latest"
97
94
]
98
95
}
99
96
}
@@ -105,10 +102,10 @@ Then restart claude app.
105
102
_If there's an error in setting up_
106
103
107
104
- If there's an error like "uv ENOENT", make sure `uv` is installed. Then run 'which uv' in the terminal, and use its output in place of "uv" in the configuration.
108
-
- If there's still an issue, check that `uv tool run --from wcgw@latest --python 3.12 wcgw_mcp` runs in your terminal. It should have no output and shouldn't exit.
105
+
- If there's still an issue, check that `uv tool run --python 3.12 wcgw@latest` runs in your terminal. It should have no output and shouldn't exit.
109
106
- Try removing ~/.cache/uv folder
110
107
- Try using `uv` version `0.6.0` for which this tool was tested.
111
-
- Debug the mcp server using `npx @modelcontextprotocol/[email protected] uv tool run --from wcgw@latest --python 3.12 wcgw_mcp`
108
+
- Debug the mcp server using `npx @modelcontextprotocol/[email protected] uv tool run --python 3.12 wcgw@latest`
112
109
113
110
### Windows on wsl
114
111
@@ -127,11 +124,9 @@ Then add or update the claude config file `%APPDATA%\Claude\claude_desktop_confi
127
124
"uv",
128
125
"tool",
129
126
"run",
130
-
"--from",
131
-
"wcgw@latest",
132
127
"--python",
133
128
"3.12",
134
-
"wcgw_mcp"
129
+
"wcgw@latest"
135
130
]
136
131
}
137
132
}
@@ -191,10 +186,6 @@ Commands:
191
186
192
187
- Select a text and press `cmd+'` and then enter instructions. This will switch the app to Claude and paste a text containing your instructions, file path, workspace dir, and the selected text.
0 commit comments