Skip to main content
Glama

start_emulator

Launch an Android Emulator by specifying its name using this tool, designed to streamline emulator management on the espresso-mcp server.

Instructions

Start an Android Emulator by name

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emulator_nameYes

Implementation Reference

  • The handler function for the 'start_emulator' tool. It uses subprocess.Popen to launch the Android emulator with the given AVD name and returns a starting message.
    @mcp.tool() def start_emulator(emulator_name: str) -> str: """Start an Android Emulator by name""" result = subprocess.Popen( ["emulator", "-avd", emulator_name], stdout=subprocess.PIPE, stderr=subprocess.PIPE, ) return f"Emulator '{emulator_name}' is starting."

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vs4vijay/espresso-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server