appium-mcp 1.7.0 → 1.7.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/.releaserc +1 -1
- package/CHANGELOG.md +6 -0
- package/package.json +3 -2
- package/scripts/sync-version.mjs +15 -0
- package/server.json +3 -3
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,9 @@
|
|
|
1
|
+
## [1.7.1](https://github.com/appium/appium-mcp/compare/v1.7.0...v1.7.1) (2026-01-06)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fix the scheme version for modelcontextprotocol ([#76](https://github.com/appium/appium-mcp/issues/76)) ([117112e](https://github.com/appium/appium-mcp/commit/117112e63528c2f413d6e355305473c283f103fb))
|
|
6
|
+
|
|
1
7
|
## [1.7.0](https://github.com/appium/appium-mcp/compare/v1.6.1...v1.7.0) (2026-01-05)
|
|
2
8
|
|
|
3
9
|
### 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.1",
|
|
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
|
+
"prepublish": "npm run sync-version && npm run build"
|
|
36
37
|
},
|
|
37
38
|
"author": "",
|
|
38
39
|
"license": "Apache-2.0",
|
|
@@ -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.0",
|
|
7
7
|
"packages": [
|
|
8
8
|
{
|
|
9
9
|
"registryType": "npm",
|
|
10
10
|
"identifier": "appium-mcp",
|
|
11
|
-
"version": "1.
|
|
11
|
+
"version": "1.7.0",
|
|
12
12
|
"transport": {
|
|
13
13
|
"type": "stdio"
|
|
14
14
|
}
|