We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8e3c44 commit d7f871bCopy full SHA for d7f871b
src-tauri/src/mcp/client/stdio.rs
@@ -165,7 +165,11 @@ impl McpClient for StdioClient {
165
let is_script = extension.eq_ignore_ascii_case("cmd")
166
|| extension.eq_ignore_ascii_case("bat")
167
|| path.file_name().and_then(std::ffi::OsStr::to_str) == Some("npx")
168
- || original_cmd_str == "npx";
+ || path.file_name().and_then(std::ffi::OsStr::to_str) == Some("uv")
169
+ || path.file_name().and_then(std::ffi::OsStr::to_str) == Some("uvx")
170
+ || original_cmd_str == "npx"
171
+ || original_cmd_str == "uv"
172
+ || original_cmd_str == "uvx";
173
174
let mut cmd = if is_script {
175
let mut c = Command::new("cmd");
0 commit comments