quash-mcp 0.2.15__tar.gz → 0.2.17__tar.gz

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.

Potentially problematic release.


This version of quash-mcp might be problematic. Click here for more details.

Files changed (26) hide show
  1. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/PKG-INFO +1 -1
  2. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/local_test.py +1 -0
  3. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/pyproject.toml +1 -1
  4. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/execute_v3.py +2 -1
  5. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/.gitignore +0 -0
  6. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/README.md +0 -0
  7. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/SETUP_CLAUDE_CODE.md +0 -0
  8. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/__init__.py +0 -0
  9. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/__main__.py +0 -0
  10. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/backend_client.py +0 -0
  11. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/device/__init__.py +0 -0
  12. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/device/adb_tools.py +0 -0
  13. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/device/portal.py +0 -0
  14. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/device/state_capture.py +0 -0
  15. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/models.py +0 -0
  16. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/server.py +0 -0
  17. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/state.py +0 -0
  18. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/__init__.py +0 -0
  19. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/build.py +0 -0
  20. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/build_old.py +0 -0
  21. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/configure.py +0 -0
  22. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/connect.py +0 -0
  23. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/execute.py +0 -0
  24. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/execute_v2_backup.py +0 -0
  25. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/runsuite.py +0 -0
  26. {quash_mcp-0.2.15 → quash_mcp-0.2.17}/quash_mcp/tools/usage.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quash-mcp
3
- Version: 0.2.15
3
+ Version: 0.2.17
4
4
  Summary: Model Context Protocol server for Quash - AI-powered mobile automation agent
5
5
  Project-URL: Homepage, https://quashbugs.com
6
6
  Project-URL: Repository, https://github.com/quash/quash-mcp
@@ -20,6 +20,7 @@ async def main():
20
20
  # Define the task
21
21
  # task = "Open the google search app and search for bakeries."
22
22
  task = "Open settings and scroll 3 times."
23
+ # task = "Open settings"
23
24
  # task = "Go home"
24
25
  # task = "Open chrome, search for quashbugs.com and scroll down."
25
26
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "quash-mcp"
3
- version = "0.2.15"
3
+ version = "0.2.17"
4
4
  description = "Model Context Protocol server for Quash - AI-powered mobile automation agent"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -414,7 +414,8 @@ async def execute_v3(
414
414
 
415
415
  # 3. Execute action locally FIRST (if provided)
416
416
  # NOTE: Backend should have already removed complete() from the code
417
- if code and action_type == "execute_code":
417
+ if code and (action_type == "execute_code" or action_type == "complete"):
418
+
418
419
  log_progress(f"⚡ Executing action...")
419
420
 
420
421
  log_progress(f"```python\n{code}\n```") # Log the code
File without changes
File without changes