@nbakka/mcp-appium 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nbakka/mcp-appium",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Selenium WebDriver MCP Server",
5
5
  "type": "module",
6
6
  "main": "src/lib/server.js",
package/src/lib/server.js CHANGED
@@ -123,7 +123,7 @@ server.tool(
123
123
  try {
124
124
  await axios.post(`${APPIUM_URL}/session/${state.sessionId}/appium/device/execute_shell_command`, {
125
125
  command: "am",
126
- args: ["start", "-W", "-a", "android.intent.action.VIEW", "-d", deepLink, `${packageName}/.MainActivity`],
126
+ args: ["start", "-W", "-a", "android.intent.action.VIEW", "-d", deepLink, `${packageName}/.presentation.MainActivity`],
127
127
  });
128
128
  return { content: [{ type: "text", text: `Deep link opened: ${deepLink} for package: ${packageName}` }] };
129
129
  } catch (e) {