appium-mcp 1.1.13 → 1.1.15
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 +21 -2
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/server.json +1 -1
|
@@ -42,9 +42,28 @@ jobs:
|
|
|
42
42
|
jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > tmp && mv tmp server.json
|
|
43
43
|
echo "Updated server.json version to $VERSION"
|
|
44
44
|
|
|
45
|
-
- name:
|
|
45
|
+
- name: Setup Go
|
|
46
|
+
uses: actions/setup-go@v5
|
|
47
|
+
with:
|
|
48
|
+
go-version: '1.21'
|
|
49
|
+
|
|
50
|
+
- name: Build MCP Publisher from source
|
|
46
51
|
run: |
|
|
47
|
-
|
|
52
|
+
# Always build from source (most reliable, matches Playwright approach)
|
|
53
|
+
# Get latest release tag
|
|
54
|
+
LATEST_TAG=$(curl -s https://api.github.com/repos/modelcontextprotocol/registry/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
|
|
55
|
+
if [ -z "$LATEST_TAG" ]; then
|
|
56
|
+
echo "Warning: Could not get latest tag, using main branch"
|
|
57
|
+
LATEST_TAG="main"
|
|
58
|
+
fi
|
|
59
|
+
echo "Building mcp-publisher from ${LATEST_TAG}"
|
|
60
|
+
cd ${{ runner.temp }}
|
|
61
|
+
git clone --depth 1 --branch "${LATEST_TAG}" https://github.com/modelcontextprotocol/registry.git
|
|
62
|
+
cd registry
|
|
63
|
+
go build -o mcp-publisher ./cmd/publisher
|
|
64
|
+
mv mcp-publisher ${{ github.workspace }}/mcp-publisher
|
|
65
|
+
cd ${{ github.workspace }}
|
|
66
|
+
chmod +x mcp-publisher
|
|
48
67
|
|
|
49
68
|
- name: Publish to MCP Registry
|
|
50
69
|
run: |
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.1.15](https://github.com/appium/appium-mcp/compare/v1.1.14...v1.1.15) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* mcp protocol schema version to latest ([#46](https://github.com/appium/appium-mcp/issues/46)) ([c505909](https://github.com/appium/appium-mcp/commit/c50590906e7e6bb2209701c7b85cc53fbe7c975c))
|
|
6
|
+
|
|
7
|
+
## [1.1.14](https://github.com/appium/appium-mcp/compare/v1.1.13...v1.1.14) (2025-11-21)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* building and publishing of mcp into registry ([#45](https://github.com/appium/appium-mcp/issues/45)) ([f7ed734](https://github.com/appium/appium-mcp/commit/f7ed734149b18b813bf63d4ece9a16d6ee31ad64))
|
|
12
|
+
|
|
1
13
|
## [1.1.13](https://github.com/appium/appium-mcp/compare/v1.1.12...v1.1.13) (2025-11-21)
|
|
2
14
|
|
|
3
15
|
### Miscellaneous Chores
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
|
|
3
3
|
"name": "io.github.appium/appium-mcp",
|
|
4
4
|
"title": "MCP Appium - Mobile Development and Automation Server",
|
|
5
5
|
"description": "Intelligent MCP server providing AI assistants with powerful tools and resources for Appium mobile automation. Supports iOS, Android, Simulator, Emulator, and Real Devices with intelligent locator generation, automated test creation, and comprehensive mobile testing capabilities.",
|