-
|
Note This is a self-resolved issue, not a question. I'm posting it here for the benefit of other users who may encounter the same problem. Note The version shown is the one used during testing; the issue may also occur in nearby versions. An error may occur when starting Serena with the following configuration: {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server"
]}Error WorkaroundSet the {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server"
],
"env": {
"PATHEXT": ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW"
}
},Root Cause
|
Beta Was this translation helpful? Give feedback.
Answered by
kazup0n
Mar 25, 2026
Replies: 1 comment
-
WorkaroundSet the {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server"
],
"env": {
"PATHEXT": ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW"
}
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kazup0n
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Workaround
Set the
PATHEXTenvironment variable:{ "command": "uvx", "args": [ "--from", "git+https://github.com/oraios/serena", "serena", "start-mcp-server" ], "env": { "PATHEXT": ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW" } },