argneshu/appium-mcp-server
If you are the rightful owner of appium-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Appium MCP Server is a Model Context Protocol server that enables mobile automation for iOS and Android devices, integrating seamlessly with Claude and other MCP-compatible clients.
Appium MCP Server
A Model Context Protocol (MCP) server that provides Appium mobile automation capabilities to Claude and other MCP-compatible clients.
Features
- Cross-platform mobile automation: Support for both iOS and Android
- Multiple app launch modes: Native apps, browser automation, or installed apps
- Element interaction: Find, tap, and input text to mobile elements
- Session management: Start, monitor, and terminate Appium sessions
- Page inspection: Get page source and scroll functionality
- Easy integration: Works seamlessly with Claude Desktop and other MCP clients
Prerequisites
- Python 3.12+ installed on your system : Environment variable should be set correctly in your bash or zsh so that claude can read it from your system
- Node.js 18.1+ (for npx usage)
- Appium Server running on
http://localhost:4723
- Mobile devices/simulators configured and accessible
Setting up Appium Server
# Install Appium globally
npm install -g appium
# Install drivers for your platforms
appium driver install xcuitest # for iOS
appium driver install uiautomator2 # for Android
# Start Appium server
appium server --port 4723
Installation & Usage
Option 1: Using npx (Recommended)
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"appium-mcp-server": {
"command": "npx",
"args": ["-y", "appium-mcp-server@latest"]
}
}
}
βοΈ System Setup Instructions for Apple M1/M2 and Windows
π Apple Silicon (M1/M2) β macOS
Apple Silicon users must rebuild the Python virtual environment (.venv
) locally to avoid architecture compatibility errors like:
ImportError: ... incompatible architecture (have 'x86_64', need 'arm64')
β Steps for M1/M2 Macs:
- 𧬠Clone the project
- π Open Terminal
- Navigate to your project repository
- π οΈ Run:
chmod +x bootstrap.sh
- π οΈ Run:
./bootstrap.sh
- π§Ή Removes the prebuilt
.venv
- π§± Recreates
.venv
using nativearm64
Python - π¦ Reinstalls all Python dependencies
- π§Ή Removes the prebuilt
- π You only need to do this once, unless
.venv
is deleted orrequirements.txt
changes
π» Windows Users
Windows users can use the bundled .venv
if compatible, or regenerate it locally.
β Steps for Windows:
- 𧬠Clone the project
- π Open Command Prompt or PowerShell
- π Navigate to your project folder (e.g.
cd C:\Users\YourName\appium-mcp-server
) - π οΈ Run:
bootstrap.bat
- π§± Creates a fresh
.venv
using your systemβs Python (β₯ 3.10) - π¦ Installs all dependencies from
requirements.txt
- π§± Creates a fresh
- π Make sure Python is in your
PATH
and is version β₯ 3.10
π§ͺ Verify It Works
π§ͺ Starting the Server
After running the appropriate setup script (./bootstrap.sh
on macOS or bootstrap.bat
on Windows), start the MCP server using either of the following:
npx appium-mcp-server
Or run it directly from project path:
node bin/appium-mcp-server.js
You should see output like:
π Starting MCP server using python3.12
π§ Injecting PYTHONPATH = ...
### π§ͺ Using Claude Desktop with a Local Project
To run your **local version** of the MCP server with Claude Desktop, follow these steps:
1. Open **Claude Desktop**
2. Go to **Settings β Developer β EditConfig button
3. This will open the `desktip-claude-config.json` file
4. Add the following configuration under `"mcpServers"`:
---
#### π macOS (Intel or Apple Silicon)
```json
{
"mcpServers": {
"local-appium-mcp": {
"command": "node",
"args": ["/Users/your.name/appium-mcp-server/bin/appium-mcp-server.js"]
}
}
}
π» Windows
{
"mcpServers": {
"local-appium-mcp": {
"command": "node",
"args": ["C:\\Users\\your.name\\appium-mcp-server\\bin\\appium-mcp-server.js"]
}
}
}
π Replace /Users/your.name/... with the full path to your cloned project directory.
## Available Tools
### Session Management
- **`appium_start_session`**: Start an Appium session
- `platform`: "iOS" or "Android"
- `device_name`: Device name or UDID
- `app_path`: Path to app file (optional)
- `bundle_id`: iOS bundle ID (optional)
- `app_package`: Android package name (optional)
- `app_activity`: Android activity (optional)
- **`appium_get_session_info`**: Get current session information
- **`appium_quit_session`**: Terminate the current session
### Element Interaction
- **`appium_find_element`**: Find elements on screen
- `strategy`: "id", "xpath", "class_name", or "accessibility_id"
- `value`: Locator value
- **`appium_tap_element`**: Tap on an element
- `element_id`: ID of previously found element
- **`appium_input_text`**: Send text to input fields
- `element_id`: Target element ID
- `text`: Text to input
### Page Navigation
- **`appium_get_page_source`**: Get current page source
- **`appium_scroll`**: Scroll the screen
- `direction`: "up" or "down"
## Example Usage with Claude
Start an iOS session on iPhone 15 Pro Max simulator, then navigate to the SauceDemo website and automate the login process.
Claude will use the MCP server to:
1. Start an Appium session
2. Find login elements
3. Input credentials
4. Navigate through the app
## Configuration Examples
### iOS Safari Browser Testing
```json
{
"platform": "iOS",
"device_name": "iPhone 15 Pro Max"
}
Android Chrome Browser Testing
{
"platform": "Android",
"device_name": "Android Emulator"
}
iOS Native App Testing
{
"platform": "iOS",
"device_name": "iPhone 15 Pro Max",
"bundle_id": "com.example.myapp"
}
Android Native App Testing
{
"platform": "Android",
"device_name": "Android Emulator",
"app_package": "com.example.myapp",
"app_activity": ".MainActivity"
}
π Quick Start with Gemini CLI
The easiest way to run mobile automation commands is using our simple CLI wrapper with Gemini.
Setup Instructions
- 𧬠Clone the project
- π Open Terminal
- Navigate to your project repository
- Also make sure you have created .env file in your project root and entered GEMINI_API_KEY key there
Load environment variables from .env
load_dotenv()
Get the API key
api_key = os.getenv("GEMINI_API_KEY")
-
Make the setup script executable:
chmod +x mobile-setup.sh
-
Load the mobile function:
source mobile-setup.sh
You should see:
Mobile automation function loaded! Usage: mobile "Launch Settings on iPhone" mobile -i mobile --claude "Open Instagram" To make this permanent, add this to your ~/.bashrc or ~/.zshrc: source "/path/to/your/mobile-setup.sh"
-
Test the function:
# Test help mobile -h # Test interactive mode mobile -i # Test single command mobile "Launch Settings on iPhone" # Test with Claude mobile --claude "Open Instagram and scroll down"
Make it Permanent (Optional)
To have the mobile
function available every time you open a terminal:
For Bash users:
echo "source $(pwd)/mobile-setup.sh" >> ~/.bashrc
For Zsh users:
echo "source $(pwd)/mobile-setup.sh" >> ~/.zshrc
For Fish shell users:
mkdir -p ~/.config/fish/functions
# Then manually create the fish function file
Usage Examples
# Single prompts (default Gemini)
mobile "Launch Settings on iPhone 15 Pro Max"
mobile "Open Instagram and like the first post"
mobile "Calculate 15 + 25 in Calculator app"
mobile "Launch Safari and go to google.com"
# Single prompts with Claude
mobile --claude "Open Notes and create a new note"
mobile --claude "Launch Camera and take a photo"
# Interactive modes
mobile -i # Interactive with Gemini
mobile --claude -i # Interactive with Claude
mobile --interactive # Interactive with Gemini
# Help
mobile -h
mobile --help
For Windows:
Run the setup script: cmdmobile-setup.bat You should see: Mobile automation command created!
Usage: mobile "Launch Settings on iPhone" mobile -i mobile --claude "Open Instagram"
The 'mobile' command is now available for this session. You should see: Mobile automation function loaded! Usage: mobile "Launch Settings on iPhone" mobile -i mobile --claude "Open Instagram"
To make this permanent, add this to your ~/.bashrc or ~/.zshrc: source "/path/to/your/mobile-setup.sh"
Test the function: bash# Test help mobile -h
Test interactive mode
mobile -i
Test single command
mobile "Launch Settings on iPhone"
Test with Claude
mobile --claude "Open Instagram and scroll down"
Make it Permanent (Optional) For Windows: Command Prompt:
Add the script directory to your system PATH, or Run mobile-setup.bat each time you open a new command prompt
Usage Examples bash# Single prompts (default Gemini) mobile "Launch Settings on iPhone 15 Pro Max" mobile "Open Instagram and like the first post" mobile "Calculate 15 + 25 in Calculator app" mobile "Launch Safari and go to google.com"
Single prompts with Claude
mobile --claude "Open Notes and create a new note" mobile --claude "Launch Camera and take a photo"
Interactive modes
mobile -i # Interactive with Gemini mobile --claude -i # Interactive with Claude mobile --interactive # Interactive with Gemini
Help
mobile -h mobile --help
Benefits
β
No PATH modifications needed
β
Self-contained in your project directory
β
Works from any directory once loaded
β
Easy to modify and customize
β
No external files created
β
Portable - just copy the script
Quick Workflow
-
One-time setup:
chmod +x mobile-setup.sh source mobile-setup.sh
-
Daily usage:
mobile "Launch Settings" mobile "Open Instagram" mobile -i # for interactive mode
-
For permanent access (optional):
echo "source $(pwd)/mobile-setup.sh" >> ~/.bashrc # Then restart terminal or run: source ~/.bashrc
Troubleshooting
Common Issues
-
"No active session" errors
- Ensure Appium server is running on localhost:4723
- Check device/simulator availability
- Verify platform-specific setup (Xcode for iOS, Android SDK for Android)
-
Element not found errors
- Use
appium_get_page_source
to inspect available elements - Try different locator strategies (id, xpath, accessibility_id)
- Ensure proper timing - elements may need time to load
- Use
-
Python environment issues
- The package automatically creates a virtual environment
- If issues persist, check Python 3.8+ installation
- Verify internet connectivity for dependency installation
Debug Mode
Set DEBUG=1
environment variable for verbose logging:
DEBUG=1 npx appium-mcp-server
Development
To modify or contribute to this package:
git clone https://github.com/yourusername/appium-mcp-server.git
cd appium-mcp-server
npm install
npm link # for local testing
License
MIT License - see LICENSE file for details.
Contributing
Contributions welcome! Please read the contributing guidelines and submit pull requests to the main repository.