@nbakka/mcp-appium 2.0.85 → 2.0.86

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 -3
  2. package/package.json +1 -1
package/lib/server.js CHANGED
@@ -799,9 +799,9 @@ let approvalSessions = new Map();
799
799
 
800
800
  tool(
801
801
  "review_testcases",
802
- "Open test cases in browser for manual approval. Accepts test cases in format: [description, type, id?]",
802
+ "Open test cases in browser for manual approval.",
803
803
  {
804
- testCases: zod_1.z.array(zod_1.z.array(zod_1.z.string())).describe("Array of test case arrays: [description, type, id?] where type is 'New', 'Modify', or 'Remove'")
804
+ testCases: zod_1.z.array(zod_1.z.array(zod_1.z.string())).describe("test cases array generated by tool generate_testcases_from_ticket_data")
805
805
  },
806
806
  async ({ testCases }) => {
807
807
  try {
@@ -942,8 +942,8 @@ tool(
942
942
  sessionId: zod_1.z.string().describe("The session ID returned from review_testcases tool")
943
943
  },
944
944
  async ({ sessionId }) => {
945
+ await new Promise(resolve => setTimeout(resolve, 25000));
945
946
  const session = approvalSessions.get(sessionId);
946
-
947
947
  if (!session) {
948
948
  return JSON.stringify({
949
949
  status: "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nbakka/mcp-appium",
3
- "version": "2.0.85",
3
+ "version": "2.0.86",
4
4
  "description": "Appium MCP",
5
5
  "engines": {
6
6
  "node": ">=18"