appium-mcp 1.7.1 → 1.7.2

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.
@@ -36,12 +36,6 @@ jobs:
36
36
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
37
  name: Release
38
38
  # MCP publishing
39
- - name: Update server.json version to match package.json
40
- run: |
41
- VERSION=$(node -p "require('./package.json').version")
42
- jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > tmp && mv tmp server.json
43
- echo "Updated server.json version to $VERSION"
44
-
45
39
  - name: Setup Go
46
40
  uses: actions/setup-go@v6
47
41
  with:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [1.7.2](https://github.com/appium/appium-mcp/compare/v1.7.1...v1.7.2) (2026-01-06)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **deps-dev:** bump @jest/globals from 29.7.0 to 30.2.0 ([#73](https://github.com/appium/appium-mcp/issues/73)) ([09ee332](https://github.com/appium/appium-mcp/commit/09ee332396a7b7241de8ebcbde4bed621fbcfc02))
6
+ * **deps-dev:** bump @types/lodash from 4.17.17 to 4.17.21 ([#64](https://github.com/appium/appium-mcp/issues/64)) ([9fe0003](https://github.com/appium/appium-mcp/commit/9fe00032651a834927ac69278793ee44c5c847fa))
7
+ * **deps-dev:** bump conventional-changelog-conventionalcommits ([#66](https://github.com/appium/appium-mcp/issues/66)) ([d029ebc](https://github.com/appium/appium-mcp/commit/d029ebce98439c281130745bd2fc72d7b705b76a))
8
+ * **deps-dev:** bump prettier from 3.5.3 to 3.7.4 ([#67](https://github.com/appium/appium-mcp/issues/67)) ([3293699](https://github.com/appium/appium-mcp/commit/32936992d71f15d989b07a7deec2f267efb5af7a))
9
+ * **deps-dev:** bump typescript from 5.8.3 to 5.9.3 ([#70](https://github.com/appium/appium-mcp/issues/70)) ([a99cbfd](https://github.com/appium/appium-mcp/commit/a99cbfd71e2e68b6ea1dbd03ebfcd76d758f2c93))
10
+ * **deps:** bump @opentelemetry/sdk-node from 0.206.0 to 0.208.0 ([#65](https://github.com/appium/appium-mcp/issues/65)) ([2afb160](https://github.com/appium/appium-mcp/commit/2afb160903495b65f3b80e77ba2fe528b4c742a9))
11
+ * use prepare instead of prepublish to sync the version ([#77](https://github.com/appium/appium-mcp/issues/77)) ([401f04b](https://github.com/appium/appium-mcp/commit/401f04bff330276d57cdebb851b52e3972b687d4))
12
+
1
13
  ## [1.7.1](https://github.com/appium/appium-mcp/compare/v1.7.0...v1.7.1) (2026-01-06)
2
14
 
3
15
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "appium-mcp",
3
3
  "mcpName": "io.github.appium/appium-mcp",
4
- "version": "1.7.1",
4
+ "version": "1.7.2",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
@@ -33,7 +33,7 @@
33
33
  "index-docs": "node dist/scripts/simple-index-documentation.js",
34
34
  "query-docs": "node dist/scripts/simple-query-documentation.js",
35
35
  "sync-version": "node scripts/sync-version.mjs",
36
- "prepublish": "npm run sync-version && npm run build"
36
+ "prepare": "npm run sync-version && npm run build"
37
37
  },
38
38
  "author": "",
39
39
  "license": "Apache-2.0",
@@ -43,7 +43,7 @@
43
43
  "@langfuse/otel": "^4.2.0",
44
44
  "@langfuse/tracing": "^4.2.0",
45
45
  "@modelcontextprotocol/sdk": "^1.22.0",
46
- "@opentelemetry/sdk-node": "^0.206.0",
46
+ "@opentelemetry/sdk-node": "^0.208.0",
47
47
  "@xenova/transformers": "^2.17.2",
48
48
  "@xmldom/xmldom": "^0.9.8",
49
49
  "appium-adb": "^12.12.1",
@@ -61,7 +61,7 @@
61
61
  "zod": "^3.24.3"
62
62
  },
63
63
  "devDependencies": {
64
- "@jest/globals": "^29.7.0",
64
+ "@jest/globals": "^30.2.0",
65
65
  "@semantic-release/changelog": "^6.0.3",
66
66
  "@semantic-release/git": "^10.0.1",
67
67
  "@types/jest": "^29.5.12",
@@ -69,7 +69,7 @@
69
69
  "@types/node": "^22.15.18",
70
70
  "@typescript-eslint/eslint-plugin": "^8.34.0",
71
71
  "@typescript-eslint/parser": "^8.34.0",
72
- "conventional-changelog-conventionalcommits": "^8.0.0",
72
+ "conventional-changelog-conventionalcommits": "^9.1.0",
73
73
  "eslint": "^9.28.0",
74
74
  "eslint-config-prettier": "^10.1.5",
75
75
  "eslint-plugin-prettier": "^5.4.1",
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.7.0",
6
+ "version": "1.7.2",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "appium-mcp",
11
- "version": "1.7.0",
11
+ "version": "1.7.2",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  }