{
"mcpServers": {
"appium-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 11 days ago. 6 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Appium Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides Appium mobile automation capabilities to Claude and other MCP-compatible clients.
http://localhost:4723# 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
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"appium-mcp-server": {
"command": "npx",
"args": ["-y", "appium-mcp-server@latest"]
}
}
}
Requirements Node.js >= 18 installed globally npx available in PATH
> ⚠️ Note:
> If you are using Node via NVM, Claude Desktop may not detect it automatically.
> In that case, use Option 2 below.
### Option 2: NVM Users (Recommended if Option 1 fails)
```json
{
"mcpServers": {
"appium-mcp-server": {
"command": "bash",
"args": [
"-lc",
"export NVM_DIR=\"$HOME/.nvm\" && source \"$NVM_DIR/nvm.sh\" && npx -y appium-mcp-server@latest"
]
}
}
}
{
"mcpServers": {
"appium-mcp-server": {
"command": "bash",
"args": [
"-lc",
"export NVM_DIR=\"$HOME/.nvm\" && [ -s \"/opt/homebrew/opt/nvm/nvm.sh\" ] && . \"/opt/homebrew/opt/nvm/nvm.sh\" && nvm use 20 >/dev/null && npx -y appium-mcp-server@latest"
]
}
}
}
### Option 3: Use Node directly (Most reliable)
```json
{
"mcpServers": {
"appium-mcp-server": {
"command": "/path/to/your/node",
"args": [
"/path/to/appium-mcp-server/bin/appium-mcp-server.js"
]
}
}
}
To find your Node path: which node
You cover:
| User type | Works? | |----------|--------| | Beginner | ✅ npx | | NVM user | ✅ bash fix | | Power user | ✅ direct node |
If you want to use appium-mcp-server with GitHub Copilot or Cursor inside your existing VS Code project, follow these steps:
At the root of your existing project, create a .vscode folder (if it doesn't exist) and inside it create a file named mcp.json:
your-existing-project/
└── .vscode/
└── mcp.json
Paste the following into mcp.json:
{
"servers": {
"appium-mcp-prod": {
"command": "/Users/username/appium-mcp-server/.venv/bin/python",
"args": ["src/mcp_server.py"],
"cwd": "~/appium-mcp-server",
"env": {
"APPIUM_PORT": "4723"
}
}
}
}
⚠️ Replace
/Users/username/with the actual path where you clonedappium-mcp-server.
Runpwdinside the cloned folder to get the exact path.
Apple Silicon users must rebuild the Python virtual environment (.venv) locally to avoid architecture compatibi