MCP Appium Server

extract-locators

Analyze UI XML source to extract element locators, filter by type, and limit results. Simplify mobile app automation by identifying interactable components for Appium-based workflows.

Instructions

Extract element locators from UI XML source

Input Schema

NameRequiredDescriptionDefault
elementTypeNoFilter elements by type (e.g., android.widget.Button)
maxResultsNoMaximum number of elements to return
xmlSourceYesXML source to analyze

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "elementType": { "description": "Filter elements by type (e.g., android.widget.Button)", "type": "string" }, "maxResults": { "description": "Maximum number of elements to return", "type": "number" }, "xmlSource": { "description": "XML source to analyze", "type": "string" } }, "required": [ "xmlSource" ], "type": "object" }
ID: pu6x5f1oro