Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ“‚ Browser Automation
  3. Quash β€” Mobile App Automation
Q
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:44:53 PM

Quash β€” Mobile App Automation

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Drive Android & iOS mobile-app automation from your AI agent on locally connected devices.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "quash-mobile-app-automation": {
      "command": "npx",
      "args": [
        "-y",
        "quash-mobile-app-automation"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ“‚ More in Browser Automation

Documentation Overview

Quash MCP

The Quash MCP server lets an AI agent (Claude Code, Claude Desktop, Cursor, …) drive real mobile-app automation on a connected device: run natural-language test tasks, generate test cases from prompts/docs/repos, manage apps & builds, and pull back streamed runs and reports β€” all powered by the Quash (mahoraga) automation engine.

This guide covers installing it on macOS or Windows, wiring it into your agent, generating an API token, preparing a device, and using every tool.


Platform support

PlatformAndroidiOS (simulator + physical)Installer
macOS (Apple Silicon)βœ…βœ…install.sh (curl … | sh)
Windows (x64)βœ…βŒ (Apple toolchain is macOS-only)install.ps1 (irm … | iex)

iOS automation needs Xcode / WebDriverAgent / devicectl / iproxy, which exist only on macOS β€” so the iOS tools (setup_simulator, setup_device) appear in the macOS build only. Windows is Android-only. Linux x86_64 can be built from source but isn't published as a release binary.


1. Prerequisites

  • macOS 13+ (Apple Silicon) or Windows 10/11 (x64).
  • adb on your PATH (Android platform-tools) for Android automation. On Windows the installer also detects %LOCALAPPDATA%\Android\Sdk.
  • A device: an Android device/emulator (USB debugging on), or β€” on macOS β€” an iOS simulator or a physical iPhone (Developer Mode on, trusted, USB).
  • A Quash account to authenticate (step 3 for a token, or browser sign-in in step 5).
  • For iOS on macOS: Xcode installed (for the WebDriverAgent build).

The installer also downloads the automation engine, a bundled test-generation component, and the on-device Android Portal APK.


2. Install

One command installs everything and auto-registers the server in every supported agent config it finds (Claude Code, Claude Desktop, Cursor). Pick your platform:

macOS

Terminal
curl -fsSL https://raw.githubusercontent.com/Oscorp-HQ/quash-mcp-releases/main/install.sh | sh

Windows (PowerShell)

powershell
irm https://raw.githubusercontent.com/Oscorp-HQ/quash-mcp-releases/main/install.ps1 | iex

This installs the latest release into ~/.quash (macOS) / %USERPROFILE%\.quash (Windows) and connects to Quash production automatically β€” no backend URL to configure.

Cursor users: after running the installer above (needed for the engine), you can one-click add the MCP server to Cursor:

Add Quash to Cursor

(The installer already auto-registers Cursor, so this is only needed if you skipped that or removed the entry.)

Options (env vars)

macOS gotcha: environment variables must go on the piped sh, not on curl β€” a prefix on curl is ignored. On Windows, set $env:… before the irm.

macOS β€” wire your token in / pin a version:

sh
# Token at install time (recommended β€” see step 3):
curl -fsSL https://raw.githubusercontent.com/Oscorp-HQ/quash-mcp-releases/main/install.sh | QUASH_API_TOKEN=qsh_xxxxxxxx sh

# Pin a specific version:
curl -fsSL https://raw.githubusercontent.com/Oscorp-HQ/quash-mcp-releases/main/install.sh | QUASH_VERSION=v1.1.0 sh

Windows β€” same, via $env::

powershell
$env:QUASH_API_TOKEN = "qsh_xxxxxxxx"
irm https://raw.githubusercontent.com/Oscorp-HQ/quash-mcp-releases/main/install.ps1 | iex
Env varDefaultPurpose
QUASH_API_TOKEN(unset)API token; if set, the MCP signs in automatically on startup
QUASH_VERSIONlatestRelease tag to install
QUASH_BACKEND_URLproductionOverride the backend (staging/local)
QUASH_FORCE01 forces a full reinstall even if the version matches

Re-running the installer is safe: it refreshes config and, with QUASH_FORCE=1, reinstalls the binaries. Reconnecting the agent does not update the server β€” only re-running the installer does.


3. Generate an API token from the Quash app

The token lets the MCP authenticate without a browser. (Prefer not to manage a token? Skip to step 5 and use Google sign-in instead.)

  1. Open the Quash desktop app and sign in.
  2. Go to Settings β†’ Integrations.
  3. Click Generate token (or regenerate to replace an existing one).
  4. Copy the token β€” it starts with qsh_. It's shown once; store it safely.

Generating a new token invalidates the previous one, so update it everywhere you use it. The token is scoped to the organization you're signed into and is stored only in your agent's MCP config env block β€” never passed through the chat.


4. Add it to your agent

The installer auto-registers the quash server, so usually there's nothing to do. To verify or add it manually, the entry looks like this β€” use the paths for your platform:

macOS

JSON Config
{
  "mcpServers": {
    "quash": {
      "type": "stdio",
      "command": "/Users/<you>/.quash/bin/quash-mcp",
      "env": {
        "QUASH_SIDECAR_CMD": "/Users/<you>/.quash/sidecar/quash-sidecar/quash-sidecar",
        "QUASH_TEST_GEN_AGENT_CMD": "/Users/<you>/.quash/test-gen-venv/bin/python -m test_gen_agent",
        "QUASH_API_TOKEN": "qsh_xxxxxxxx"
      }
    }
  }
}

Windows

JSON Config
{
  "mcpServers": {
    "quash": {
      "type": "stdio",
      "command": "C:\\Users\\<you>\\.quash\\bin\\quash-mcp\\quash-mcp.exe",
      "env": {
        "QUASH_SIDECAR_CMD": "C:\\Users\\<you>\\.quash\\sidecar\\quash-sidecar\\quash-sidecar.exe",
        "QUASH_API_TOKEN": "qsh_xxxxxxxx",
        "ANDROID_HOME": "C:\\Users\\<you>\\AppData\\Local\\Android\\Sdk"
      }
    }
  }
}

Config file locations: Claude Code β†’ ~/.claude.json (macOS) / %USERPROFILE%\.claude.json (Windows); Claude Desktop β†’ ~/Library/Application Support/Claude/claude_desktop_config.json / %APPDATA%\Claude\claude_desktop_config.json; Cursor β†’ ~/.cursor/mcp.json / %USERPROFILE%\.cursor\mcp.json.

After editing config, restart the agent (or /mcp β†’ reconnect in Claude Code).

JetBrains IDEs (IntelliJ IDEA, PyCharm)

JetBrains AI Assistant supports MCP over stdio. After running the installer (step 2):

  1. Open Settings β†’ Tools β†’ AI Assistant β†’ Model Context Protocol (MCP).

  2. Easiest: click Import from Claude β€” since the installer already registered Quash in Claude Desktop, the quash server is pulled in automatically.

  3. Or add manually: click Add, then paste this JSON (JetBrains does not expand environment variables, so use absolute paths β€” replace <you> with your username):

    macOS

    JSON Config
    {
      "mcpServers": {
        "quash": {
          "command": "/Users/<you>/.quash/bin/quash-mcp",
          "env": {
            "QUASH_SIDECAR_CMD": "/Users/<you>/.quash/sidecar/quash-sidecar/quash-sidecar",
            "QUASH_TEST_GEN_AGENT_CMD": "/Users/<you>/.quash/test-gen-venv/bin/python -m test_gen_agent"
          }
        }
      }
    }
    

    Windows

    JSON Config
    {
      "mcpServers": {
        "quash": {
          "command": "C:\\Users\\<you>\\.quash\\bin\\quash-mcp\\quash-mcp.exe",
          "env": {
            "QUASH_SIDECAR_CMD": "C:\\Users\\<you>\\.quash\\sidecar\\quash-sidecar\\quash-sidecar.exe",
            "QUASH_TEST_GEN_AGENT_CMD": "C:\\Users\\<you>\\.quash\\test-gen-venv\\Scripts\\python.exe -m test_gen_agent"
          }
        }
      }
    }
    
  4. Click OK β†’ Apply to start the server.

Android Studio: its agent (Gemini Agent Mode) currently supports MCP over HTTP/Streamable only, not stdio, so the config above does not apply there yet.


5. Authenticate

  • If you set QUASH_API_TOKEN, the server signs in automatically on startup.
  • Otherwise, ask the agent to authenticate:
    • Google (browser): "Use Quash, run auth with mode google."
    • Token: "Use Quash, run auth with my token qsh_…."

Check status anytime with the about / configure tools.


6. Prepare the device

  1. Connect β€” "Use Quash, connect." It detects the device (or lists them if several), warms the engine, and runs a setup health check.
  2. Finish setup for that device type:
    • Android β€” if connect reports "Portal not ready", run setup_portal: it installs the on-device Quash Portal app and enables its accessibility service (idempotent). If the device blocks it, it returns manual_required with the steps for Settings β†’ Accessibility.
    • iOS simulator (macOS) β€” run setup_simulator: builds + launches WebDriverAgent for the booted simulator (no signing needed).
    • iOS physical iPhone (macOS) β€” run setup_device: resolves your Apple Developer signing team (set it with configure signing_team=<TEAMID>, or it's auto-detected from your keychain), builds + signs WebDriverAgent, starts the USB tunnel, and launches it. Requires Xcode, Developer Mode on, and the iPhone trusted over USB.

7. Using the tools

Ask the agent in plain language; it calls these tools:

ToolWhat it doesPlatform
aboutServer name, running version, latest release, update commandall
authSign in (google browser flow, or token)all
connectDetect/select a device; health-check adb, Portal, engine, authall
configureView/change execution + test-gen settings (model, temperature, max steps, vision, signing_team)all
setup_portalInstall the Android Portal app + enable accessibility (idempotent)all
setup_simulatorBuild + launch WebDriverAgent for a booted iOS simulatormacOS
setup_deviceSign + launch WebDriverAgent on a physical iPhone over USBmacOS
executeRun a natural-language test task on the device (streams progress)all
generate_test_casesGenerate test cases from a prompt, local files, or a git repoall
usageCurrent plan, remaining minutes, feature limitsall
list_appsList apps in your orgall
buildsList builds for an app (version, tag, installable)all
install_buildDownload a build's APK and install it on the deviceall
runsBrowse recent runs, or fetch one run's full report + share linkall
test_cases / suitesBrowse test cases and suitesall

Typical first session:

Code
"Use Quash: connect, then setup_portal if needed."          # Android
"Use Quash: connect, then setup_simulator."                 # iOS simulator (macOS)
"Run this on the device: open Settings and turn on Airplane mode."
"Show me the report for that run."
"Generate test cases for https://github.com/acme/my-app."

8. Updating

Re-run the installer for your platform (macOS curl … | sh, Windows irm … | iex), then restart the agent. Confirm with the about tool β€” it reports the running version and whether a newer release exists.


9. Troubleshooting

  • "Portal not ready" (Android) β†’ run setup_portal. If it returns manual_required, enable Mahoraga Portal under Settings β†’ Accessibility.
  • adb / device not found β†’ install Android platform-tools, ensure adb is on PATH (Windows: set ANDROID_HOME), and that the device shows under adb devices.
  • iOS setup_device signing fails (macOS) β†’ set your team with configure signing_team=<TEAMID>, ensure your Apple ID is signed into Xcode β†’ Settings β†’ Accounts (with an Apple Development certificate in the keychain), and the iPhone is in Developer Mode + trusted.
  • Session expired / not authenticated β†’ re-run auth, or refresh QUASH_API_TOKEN (generating a new token invalidates the old one).
  • A run isn't visible in the app β†’ the run's org must match the app's org; check the execute result's warning field.
  • macOS Gatekeeper warning β†’ public binaries are ad-hoc signed; if blocked, allow them under System Settings β†’ Privacy & Security.
  • Windows SmartScreen / Defender β†’ unsigned binaries may prompt "Windows protected your PC"; click More info β†’ Run anyway, or add a Defender exclusion for %USERPROFILE%\.quash.

Related MCP Servers

View all in Browser Automation View all alternatives
  • Browser Use logoBrowser Use

    Control a real Chrome browser to complete any task: fill forms, extract data, book flights.

    πŸ“‚ Browser Automation0 views
    Compare vs Browser Use β†’
  • Yutu logoYutu

    A fully functional MCP server and CLI for YouTube to automate YouTube operation

    πŸ“‚ Browser Automation4 views
    Compare vs Yutu β†’
  • D
    Drengr

    Eyes and hands for AI agents on Android and iOS devices.

    πŸ“‚ Browser Automation0 views
    Compare vs Drengr β†’
  • Ios Simulator Mcp logoIos Simulator Mcp

    A Model Context Protocol (MCP) server for interacting with iOS simulators. This server allows you to interact with iOS simulators by getting information about them, controlling UI interactions, and inspecting UI elements.

    πŸ“‚ Browser Automation2 views
    Compare vs Ios Simulator Mcp β†’

Frequently Asked Questions about Quash β€” Mobile App Automation

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "quash-mobile-app-automation": { "command": "npx", "args": ["-y", "Quash β€” Mobile App Automation"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewQuash β€” Mobile App Automation AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/quash-mobile-app-automation?style=directory)](https://allmcps.com/mcp/quash-mobile-app-automation)
HTML Embed
<a href="https://allmcps.com/mcp/quash-mobile-app-automation"><img src="https://allmcps.com/api/badge/quash-mobile-app-automation?style=directory" alt="Quash β€” Mobile App Automation on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ“‚Browser Automation
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/5 checks healthy over the last 7h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ“‚ Browser Automation β†’Best MCP servers for Browser Automation β†’Alternatives to Quash β€” Mobile App Automation β†’Install in Claude DesktopInstall in CursorInstall in VS Code