appium-mcp 1.63.0 → 1.63.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +21 -5
- package/package.json +1 -1
- package/server.json +2 -2
- package/src/resources/submodules.zip +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.63.1](https://github.com/appium/appium-mcp/compare/v1.63.0...v1.63.1) (2026-04-22)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* **docs:** add env var section in configuration ([#285](https://github.com/appium/appium-mcp/issues/285)) ([fa6f483](https://github.com/appium/appium-mcp/commit/fa6f483682873bd6499ffd112504cc417337f298))
|
|
6
|
+
|
|
1
7
|
## [1.63.0](https://github.com/appium/appium-mcp/compare/v1.62.0...v1.63.0) (2026-04-22)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/README.md
CHANGED
|
@@ -134,6 +134,25 @@ This will automatically configure the MCP server for use with Claude Code. Make
|
|
|
134
134
|
|
|
135
135
|
## ⚙️ Configuration
|
|
136
136
|
|
|
137
|
+
### Environment Variables
|
|
138
|
+
|
|
139
|
+
> **Note:** Appium driver prerequisites (`ANDROID_HOME`, `JAVA_HOME`, UiAutomator2/XCUITest driver setup) are not listed here, they are system-level requirements. Once this MCP server is configured, ask your AI assistant to set up the environment for you using the built-in `appium_skills` tool.
|
|
140
|
+
|
|
141
|
+
| Variable | Required | Description |
|
|
142
|
+
| -------- | -------- | ----------- |
|
|
143
|
+
| `CAPABILITIES_CONFIG` | Optional | Absolute path to a `capabilities.json` file with per-platform capability presets |
|
|
144
|
+
| `SCREENSHOTS_DIR` | Optional | Directory where screenshots and screen recordings are saved. Defaults to the current working directory |
|
|
145
|
+
| `NO_UI` | Optional | Set to `true` or `1` to disable HTML UI components — faster responses, fewer tokens. See [NO_UI Mode](#no_ui-mode) |
|
|
146
|
+
| `APPIUM_MCP_WDA_APP_PATH` | Optional | Absolute path to a pre-extracted `WebDriverAgentRunner-Runner.app` bundle. When set, `prepare_ios_simulator` skips all GitHub downloads and uses this bundle directly — useful in environments where external downloads are blocked |
|
|
147
|
+
| `REMOTE_SERVER_URL_ALLOW_REGEX` | Optional | Regex pattern that remote Appium server URLs must match. Defaults to `^https?://` |
|
|
148
|
+
| `AI_VISION_API_BASE_URL` | Required for AI Vision | Base URL of the OpenAI-compatible vision model API |
|
|
149
|
+
| `AI_VISION_API_KEY` | Required for AI Vision | API key for the vision model provider |
|
|
150
|
+
| `AI_VISION_MODEL` | Optional | Vision model name (default: `Qwen3-VL-235B-A22B-Instruct`) |
|
|
151
|
+
| `AI_VISION_COORD_TYPE` | Optional | Coordinate type: `normalized` (default) or `absolute` |
|
|
152
|
+
| `AI_VISION_IMAGE_MAX_WIDTH` | Optional | Max image width in pixels before compression (default: `1080`) |
|
|
153
|
+
| `AI_VISION_IMAGE_QUALITY` | Optional | JPEG quality 1–100 for compressed screenshots sent to the vision API (default: `80`) |
|
|
154
|
+
| `SENTENCE_TRANSFORMERS_MODEL` | Optional | Hugging Face model used for semantic search in Appium documentation queries (default: `Xenova/all-MiniLM-L6-v2`) |
|
|
155
|
+
|
|
137
156
|
### Capabilities
|
|
138
157
|
|
|
139
158
|
Create a `capabilities.json` file to define your device capabilities:
|
|
@@ -198,7 +217,7 @@ Configure AI-powered element finding using vision models. This feature allows yo
|
|
|
198
217
|
"env": {
|
|
199
218
|
"ANDROID_HOME": "/path/to/android/sdk",
|
|
200
219
|
"AI_VISION_API_BASE_URL": "https://dashscope.aliyuncs.com/compatible-mode/v1",
|
|
201
|
-
"
|
|
220
|
+
"AI_VISION_API_KEY": "your_api_key_here"
|
|
202
221
|
}
|
|
203
222
|
}
|
|
204
223
|
}
|
|
@@ -206,10 +225,7 @@ Configure AI-powered element finding using vision models. This feature allows yo
|
|
|
206
225
|
|
|
207
226
|
**Optional Environment Variables:**
|
|
208
227
|
|
|
209
|
-
- `
|
|
210
|
-
- `AI_VISION_COORD_TYPE`: Coordinate type - `normalized` or `absolute` (default: `normalized`)
|
|
211
|
-
- `AI_VISION_IMAGE_MAX_WIDTH`: Max image width for compression in pixels (default: `1080`)
|
|
212
|
-
- `AI_VISION_IMAGE_QUALITY`: JPEG quality 1-100 (default: `80`)
|
|
228
|
+
See the [Environment Variables](#environment-variables) table above for the full list of `AI_VISION_*` options and their defaults.
|
|
213
229
|
|
|
214
230
|
**Supported Vision Model Providers:**
|
|
215
231
|
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
"name": "io.github.appium/appium-mcp",
|
|
4
4
|
"title": "MCP Appium - Mobile Development and Automation Server",
|
|
5
5
|
"description": "MCP server for Appium mobile automation on iOS and Android devices with test creation tools.",
|
|
6
|
-
"version": "1.63.
|
|
6
|
+
"version": "1.63.1",
|
|
7
7
|
"packages": [
|
|
8
8
|
{
|
|
9
9
|
"registryType": "npm",
|
|
10
10
|
"identifier": "appium-mcp",
|
|
11
|
-
"version": "1.63.
|
|
11
|
+
"version": "1.63.1",
|
|
12
12
|
"transport": {
|
|
13
13
|
"type": "stdio"
|
|
14
14
|
}
|
|
Binary file
|