MCP Appium Server

send-keys

Simulate text input in mobile apps by sending keys to specified UI elements using element selectors and strategies like xpath or id, facilitating automated UI testing.

Instructions

Send text input to a UI element

Input Schema

NameRequiredDescriptionDefault
selectorYesElement selector (e.g., xpath, id)
strategyNoSelector strategy: xpath, id, accessibility id, class name (default: xpath)
textYesText to input

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "selector": { "description": "Element selector (e.g., xpath, id)", "type": "string" }, "strategy": { "description": "Selector strategy: xpath, id, accessibility id, class name (default: xpath)", "type": "string" }, "text": { "description": "Text to input", "type": "string" } }, "required": [ "selector", "text" ], "type": "object" }
ID: pu6x5f1oro