Skip to main content
Glama
mobile-next

Mobile Next MCP Server

Official
by mobile-next

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
mobile_list_available_devicesA

List all available devices. This includes both physical mobile devices and mobile simulators and emulators. It returns both Android and iOS devices. These are local devices already connected to this machine, ready to use immediately at no cost - for devices from the shared remote cloud fleet, use mobile_list_remote_devices instead.

mobile_login_to_cloud_providerA

Start authenticating this machine with the remote device cloud provider. This is required once before mobile_list_remote_devices or mobile_allocate_remote_device will work; if either of those fails with an authentication error, call this tool and then retry. This starts a browser-based device-code login and returns quickly with a URL and a one-time code - it does NOT wait for the login to complete. Show the URL and code to the user verbatim and ask them to open the URL and enter the code in their own browser. The login keeps running in the background after this tool returns; once the user confirms they've completed it, retry the remote devices tool that originally failed. Only call this after the user has explicitly asked to connect to, log into, or use remote/cloud devices - never call it speculatively, since it interrupts the user to act in their browser.

mobile_list_remote_devicesA

List the catalog of device models (make, platform, OS version) available to reserve from the remote cloud device fleet. This is different from mobile_list_available_devices, which lists real devices and simulators/emulators already connected to this local machine and ready to use immediately at no cost. Remote devices live in a shared cloud fleet: they are not usable until reserved with mobile_allocate_remote_device, and reserving one may be a limited/billed resource. Requires mobile_login_to_cloud_provider to have been called first; if this fails with an authentication error, call that tool then retry.

mobile_allocate_remote_deviceA

Reserve a physical device from the remote cloud fleet for exclusive use, returning a device identifier usable with the other mobile_* tools. Unlike local devices, a remote device is a shared and billed resource borrowed for the session - only call this after the user has explicitly asked to use a remote/cloud device, never speculatively or as a fallback when a local device isn't found. Requires mobile_login_to_cloud_provider to have been called first; if this fails with an authentication error, call that tool then retry. Use mobile_list_remote_devices first to see which names and versions actually exist in the fleet before filtering by them. Release the device with mobile_release_remote_device once the whole task is finished - releasing wipes the device's state, so do not release and reallocate between steps of the same task just to be tidy.

mobile_release_remote_deviceA

Release a device previously reserved with mobile_allocate_remote_device back to the remote cloud fleet so it becomes available to others. Releasing is destructive to the device's state: apps installed, files pushed, and any other changes made during this session are lost, and a later mobile_allocate_remote_device call may take time and could return a different physical unit. Only release once the whole task is finished - if there is more work to do on the same device shortly, keep holding it rather than releasing and reallocating.

mobile_list_appsA

List all the installed apps on the device

mobile_get_foreground_appA

Get the app currently in the foreground on the device. Use this to verify which app or screen you are on before interacting with it.

mobile_launch_appA

Launch an app on mobile device. Use this to open a specific app. You can find the package name of the app by calling list_apps_on_device.

mobile_terminate_appB

Stop and terminate an app on mobile device

mobile_install_appC

Install an app on mobile device

mobile_uninstall_appA

Uninstall an app from mobile device

mobile_get_screen_sizeA

Get the screen size of the mobile device in pixels

mobile_click_on_screen_at_coordinatesA

Click on the screen, either at x,y coordinates or on an element by its ref (e.g. "@e5") from the latest mobile_list_elements_on_screen result. Prefer ref when the element is listed.

mobile_double_tap_on_screenB

Double-tap on the screen at given x,y coordinates.

mobile_long_press_on_screen_at_coordinatesA

Long press on the screen at given x,y coordinates. If long pressing on an element, use the mobile_list_elements_on_screen tool to find the coordinates.

mobile_list_elements_on_screenA

List elements on screen with their ref, coordinates, and display text or accessibility label. Use the ref with mobile_click_on_screen_at_coordinates. Refs and coordinates stay valid as long as the screen does not change; re-list only after navigation or a layout change.

mobile_press_buttonC

Press a button on device

mobile_open_urlA

Open a URL in browser on device

mobile_swipe_on_screenC

Swipe on the screen

mobile_type_keysC

Type text into the focused element

mobile_save_screenshotC

Save a screenshot of the mobile device to a file

mobile_take_screenshotA

Take a screenshot of the mobile device. Use this to understand what's on screen, if you need to press an element that is available through view hierarchy then you must list elements on screen instead. Do not cache this result.

mobile_set_orientationA

Change the screen orientation of the device

mobile_set_locationA

Override the GPS location reported by the device, or clear the override to restore the real location. Omit latitude and longitude to clear.

mobile_clipboardA

Read or replace the device clipboard. Pass text to set the clipboard, omit it to read the current clipboard.

mobile_get_device_logsA

Collect live device logs (logcat on Android, unified log on iOS) as one JSON object per line. Only logs emitted after the call starts are captured, so trigger the behavior you want to observe right before or during the call. Stops after limit entries or after 30 seconds of silence. Each line of a stack trace counts as one entry, so filter by process or tag to avoid filling the limit with noise. Start with a small limit (20-50) for a quick look. For large captures, pass saveTo to write logs to a file and only the entry count is returned.

mobile_get_orientationB

Get the current screen orientation of the device

mobile_start_screen_recordingA

Start recording the screen of a mobile device. The recording runs in the background until stopped with mobile_stop_screen_recording. Returns the path where the recording will be saved.

mobile_stop_screen_recordingA

Stop an active screen recording on a mobile device. Returns the file path, size, and approximate duration of the recording.

mobile_list_crashesA

List crash reports available on the device

mobile_get_crashA

Get the full content of a crash report by its ID. Use mobile_list_crashes to find available crash IDs.

mobile_batch_commandsA

Run multiple tools in sequence in a single call, e.g. click, type, click, type. Use this to fill forms or perform multi-step flows without round-trips. The device argument is applied to every step unless a step provides its own.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 32 tools

Disambiguation5/5

Each tool targets a distinct resource or action: device listing vs. allocation, app lifecycle, UI gestures, screen capture, orientation, location, clipboard, logs, recording, and crashes. Even similar tools like take_screenshot and save_screenshot are clearly differentiated by purpose, and list_available_devices vs. list_remote_devices are explicitly contrasted.

Naming Consistency5/5

All 32 tools follow a consistent 'mobile_' prefix with a snake_case verb_noun pattern (e.g., mobile_get_foreground_app, mobile_allocate_remote_device, mobile_stop_screen_recording). No mixed conventions or vague verbs; the naming is predictable and uniform.

Tool Count2/5

With 32 tools, the count exceeds the 25+ threshold defined as 'too many' in the rubric. While the broad mobile automation domain justifies many capabilities, the surface feels heavy and could benefit from consolidation (e.g., combining screenshot tools or reducing redundant device-management entries), making it less well-scoped than the ideal 3-15 range.

Completeness5/5

The tool set provides thorough lifecycle coverage for the mobile domain: device discovery (local and remote), allocation/release, app management (launch, terminate, install, uninstall), UI interaction (click, swipe, type, list elements, buttons), screen capture/recording, orientation, location, clipboard, logs, and crash retrieval. No obvious dead ends or missing operations for common mobile testing workflows.

Maintenance

ActivityActive
ResponsivenessWithin a week