@nbakka/mcp-appium 2.0.78 → 2.0.80

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.
Files changed (2) hide show
  1. package/lib/server.js +3 -13
  2. package/package.json +1 -1
package/lib/server.js CHANGED
@@ -674,7 +674,7 @@ tool(
674
674
  }
675
675
  );
676
676
 
677
- server.tool(
677
+ tool(
678
678
  "generate_testcases_from_ticket_data",
679
679
  "Generate manual test cases by analyzing PNG design with JIRA requirements",
680
680
  {
@@ -754,19 +754,9 @@ ${guidelines}`
754
754
  await fs.writeFile(testCasesFilePath, `Error generating test cases: ${error.message}`);
755
755
  });
756
756
 
757
- return {
758
- content: [{
759
- type: "text",
760
- text: "✅ Test case generation started. Use 'check_testcases_status' tool to check if generation is complete."
761
- }]
762
- };
757
+ return "✅ Test case generation started. Use 'check_testcases_status' tool to check if generation is complete.";
763
758
  } catch (err) {
764
- return {
765
- content: [{
766
- type: "text",
767
- text: `❌ Error starting test case generation: ${err.message}`
768
- }]
769
- };
759
+ return `❌ Error starting test case generation: ${err.message}`;
770
760
  }
771
761
  }
772
762
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nbakka/mcp-appium",
3
- "version": "2.0.78",
3
+ "version": "2.0.80",
4
4
  "description": "Appium MCP",
5
5
  "engines": {
6
6
  "node": ">=18"