appium-mcp 1.7.0 → 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.
- package/.github/workflows/publish.yml +0 -6
- package/.releaserc +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +6 -5
- package/scripts/sync-version.mjs +15 -0
- package/server.json +3 -3
|
@@ -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/.releaserc
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}],
|
|
30
30
|
"@semantic-release/npm",
|
|
31
31
|
["@semantic-release/git", {
|
|
32
|
-
"assets": ["docs", "package.json", "CHANGELOG.md"],
|
|
32
|
+
"assets": ["docs", "package.json", "package-lock.json", "CHANGELOG.md", "server.json"],
|
|
33
33
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
34
34
|
}],
|
|
35
35
|
"@semantic-release/github"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
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
|
+
|
|
13
|
+
## [1.7.1](https://github.com/appium/appium-mcp/compare/v1.7.0...v1.7.1) (2026-01-06)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* fix the scheme version for modelcontextprotocol ([#76](https://github.com/appium/appium-mcp/issues/76)) ([117112e](https://github.com/appium/appium-mcp/commit/117112e63528c2f413d6e355305473c283f103fb))
|
|
18
|
+
|
|
1
19
|
## [1.7.0](https://github.com/appium/appium-mcp/compare/v1.6.1...v1.7.0) (2026-01-05)
|
|
2
20
|
|
|
3
21
|
### Features
|
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.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"check": "npm run lint && npm run format:check",
|
|
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
|
+
"prepare": "npm run sync-version && npm run build"
|
|
36
37
|
},
|
|
37
38
|
"author": "",
|
|
38
39
|
"license": "Apache-2.0",
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
"@langfuse/otel": "^4.2.0",
|
|
43
44
|
"@langfuse/tracing": "^4.2.0",
|
|
44
45
|
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
45
|
-
"@opentelemetry/sdk-node": "^0.
|
|
46
|
+
"@opentelemetry/sdk-node": "^0.208.0",
|
|
46
47
|
"@xenova/transformers": "^2.17.2",
|
|
47
48
|
"@xmldom/xmldom": "^0.9.8",
|
|
48
49
|
"appium-adb": "^12.12.1",
|
|
@@ -60,7 +61,7 @@
|
|
|
60
61
|
"zod": "^3.24.3"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
|
-
"@jest/globals": "^
|
|
64
|
+
"@jest/globals": "^30.2.0",
|
|
64
65
|
"@semantic-release/changelog": "^6.0.3",
|
|
65
66
|
"@semantic-release/git": "^10.0.1",
|
|
66
67
|
"@types/jest": "^29.5.12",
|
|
@@ -68,7 +69,7 @@
|
|
|
68
69
|
"@types/node": "^22.15.18",
|
|
69
70
|
"@typescript-eslint/eslint-plugin": "^8.34.0",
|
|
70
71
|
"@typescript-eslint/parser": "^8.34.0",
|
|
71
|
-
"conventional-changelog-conventionalcommits": "^
|
|
72
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
72
73
|
"eslint": "^9.28.0",
|
|
73
74
|
"eslint-config-prettier": "^10.1.5",
|
|
74
75
|
"eslint-plugin-prettier": "^5.4.1",
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { readFileSync, writeFileSync } from 'fs';
|
|
3
|
+
|
|
4
|
+
const packageJson = JSON.parse(readFileSync('package.json', 'utf8'));
|
|
5
|
+
const serverJson = JSON.parse(readFileSync('server.json', 'utf8'));
|
|
6
|
+
|
|
7
|
+
const version = packageJson.version;
|
|
8
|
+
|
|
9
|
+
// Update server.json version
|
|
10
|
+
serverJson.version = version;
|
|
11
|
+
serverJson.packages[0].version = version;
|
|
12
|
+
|
|
13
|
+
writeFileSync('server.json', JSON.stringify(serverJson, null, 2) + '\n');
|
|
14
|
+
|
|
15
|
+
console.log(`✓ Synced version to ${version}`);
|
package/server.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
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.
|
|
6
|
+
"version": "1.7.2",
|
|
7
7
|
"packages": [
|
|
8
8
|
{
|
|
9
9
|
"registryType": "npm",
|
|
10
10
|
"identifier": "appium-mcp",
|
|
11
|
-
"version": "1.
|
|
11
|
+
"version": "1.7.2",
|
|
12
12
|
"transport": {
|
|
13
13
|
"type": "stdio"
|
|
14
14
|
}
|