@nbakka/mcp-appium 2.0.57 → 2.0.59
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.
- package/lib/server.js +1 -5
- package/package.json +1 -1
package/lib/server.js
CHANGED
|
@@ -576,11 +576,9 @@ tool(
|
|
|
576
576
|
await Promise.all(
|
|
577
577
|
files.map(file => fs.unlink(path.join(exportPath, file)))
|
|
578
578
|
);
|
|
579
|
-
console.log("Cleared existing files in figma folder");
|
|
580
579
|
} catch (err) {
|
|
581
580
|
// Folder doesn't exist or is empty, no need to clear
|
|
582
581
|
if (err.code !== 'ENOENT') {
|
|
583
|
-
console.log("⚠️ Warning: Could not clear folder:", err.message);
|
|
584
582
|
}
|
|
585
583
|
}
|
|
586
584
|
|
|
@@ -629,7 +627,7 @@ tool(
|
|
|
629
627
|
});
|
|
630
628
|
|
|
631
629
|
const completion = await client.chat.completions.create({
|
|
632
|
-
model: "gpt-
|
|
630
|
+
model: "gpt-5",
|
|
633
631
|
messages: [{
|
|
634
632
|
role: "user",
|
|
635
633
|
content: [{
|
|
@@ -647,8 +645,6 @@ Description: ${jiraDescription}`
|
|
|
647
645
|
|
|
648
646
|
const testCases = completion.choices[0].message.content;
|
|
649
647
|
|
|
650
|
-
await client.files.del(file.id);
|
|
651
|
-
|
|
652
648
|
return testCases;
|
|
653
649
|
} catch (err) {
|
|
654
650
|
return `Error: ${err.message}`;
|