Skip to content

Commit 3b10da0

Browse files
authored
Removed custom gpts support. wcgw is only an mcp server from now (#57)
1 parent 36f7b32 commit 3b10da0

File tree

9 files changed

+15
-1151
lines changed

9 files changed

+15
-1151
lines changed

README.md

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff 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
22

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.
44

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.
76

87
⚠️ Warning: do not allow BashCommand tool without reviewing the command, it may result in data loss.
98

@@ -89,11 +88,9 @@ Then create or update `claude_desktop_config.json` (~/Library/Application Suppor
8988
"args": [
9089
"tool",
9190
"run",
92-
"--from",
93-
"wcgw@latest",
9491
"--python",
9592
"3.12",
96-
"wcgw_mcp"
93+
"wcgw@latest"
9794
]
9895
}
9996
}
@@ -105,10 +102,10 @@ Then restart claude app.
105102
_If there's an error in setting up_
106103

107104
- 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.
109106
- Try removing ~/.cache/uv folder
110107
- 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`
112109

113110
### Windows on wsl
114111

@@ -127,11 +124,9 @@ Then add or update the claude config file `%APPDATA%\Claude\claude_desktop_confi
127124
"uv",
128125
"tool",
129126
"run",
130-
"--from",
131-
"wcgw@latest",
132127
"--python",
133128
"3.12",
134-
"wcgw_mcp"
129+
"wcgw@latest"
135130
]
136131
}
137132
}
@@ -191,10 +186,6 @@ Commands:
191186

192187
- 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.
193188

194-
## Chatgpt Setup
195-
196-
Read here: https://github.com/rusiaaman/wcgw/blob/main/openai.md
197-
198189
## Examples
199190

200191
![example](https://github.com/rusiaaman/wcgw/blob/main/static/example.jpg?raw=true)
@@ -231,7 +222,7 @@ Add `OPENAI_API_KEY` and `OPENAI_ORG_ID` env variables.
231222

232223
Then run
233224

234-
`uvx --from wcgw@latest wcgw_local --limit 0.1` # Cost limit $0.1
225+
`uvx wcgw@latest wcgw_local --limit 0.1` # Cost limit $0.1
235226

236227
You can now directly write messages or press enter key to open vim for multiline message and text pasting.
237228

@@ -241,7 +232,7 @@ Add `ANTHROPIC_API_KEY` env variable.
241232

242233
Then run
243234

244-
`uvx --from wcgw@latest wcgw_local --claude`
235+
`uvx wcgw@latest wcgw_local --claude`
245236

246237
You can now directly write messages or press enter key to open vim for multiline message and text pasting.
247238

0 commit comments

Comments
 (0)