appium-mcp 1.1.16 → 1.1.17
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 +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.1.17](https://github.com/appium/appium-mcp/compare/v1.1.16...v1.1.17) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* Update Appium MCP configuration in README ([#42](https://github.com/appium/appium-mcp/issues/42)) ([a7e2bcd](https://github.com/appium/appium-mcp/commit/a7e2bcdf482dfbb3abb1531138947388b08acf43))
|
|
6
|
+
|
|
1
7
|
## [1.1.16](https://github.com/appium/appium-mcp/compare/v1.1.15...v1.1.16) (2025-11-21)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -62,12 +62,14 @@ Standard config works in most of the tools::
|
|
|
62
62
|
```json
|
|
63
63
|
{
|
|
64
64
|
"mcpServers": {
|
|
65
|
-
"mcp
|
|
65
|
+
"appium-mcp": {
|
|
66
66
|
"disabled": false,
|
|
67
67
|
"timeout": 100,
|
|
68
68
|
"type": "stdio",
|
|
69
69
|
"command": "npx",
|
|
70
|
-
"args": [
|
|
70
|
+
"args": [
|
|
71
|
+
"appium-mcp@latest"
|
|
72
|
+
],
|
|
71
73
|
"env": {
|
|
72
74
|
"ANDROID_HOME": "/path/to/android/sdk",
|
|
73
75
|
"CAPABILITIES_CONFIG": "/path/to/your/capabilities.json"
|