appium-mcp 1.1.12 → 1.1.14
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 +37 -1
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/.github/workflows/publish-mcp.yml +0 -53
|
@@ -15,9 +15,10 @@ jobs:
|
|
|
15
15
|
build:
|
|
16
16
|
runs-on: macos-latest
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v5
|
|
19
19
|
with:
|
|
20
20
|
submodules: recursive
|
|
21
|
+
fetch-depth: 0 # Fetch all tags for version detection
|
|
21
22
|
- name: Setup submodules sparse-checkout
|
|
22
23
|
run: |
|
|
23
24
|
chmod +x scripts/setup-submodules-sparse.sh
|
|
@@ -34,3 +35,38 @@ jobs:
|
|
|
34
35
|
env:
|
|
35
36
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
36
37
|
name: Release
|
|
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
|
+
- name: Setup Go
|
|
46
|
+
uses: actions/setup-go@v5
|
|
47
|
+
with:
|
|
48
|
+
go-version: '1.21'
|
|
49
|
+
|
|
50
|
+
- name: Build MCP Publisher from source
|
|
51
|
+
run: |
|
|
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
|
|
67
|
+
|
|
68
|
+
- name: Publish to MCP Registry
|
|
69
|
+
run: |
|
|
70
|
+
chmod +x mcp-publisher
|
|
71
|
+
./mcp-publisher login github-oidc
|
|
72
|
+
./mcp-publisher publish
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.1.14](https://github.com/appium/appium-mcp/compare/v1.1.13...v1.1.14) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* 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))
|
|
6
|
+
|
|
7
|
+
## [1.1.13](https://github.com/appium/appium-mcp/compare/v1.1.12...v1.1.13) (2025-11-21)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* integrate mcp and npm publishing actions ([#44](https://github.com/appium/appium-mcp/issues/44)) ([cad4af3](https://github.com/appium/appium-mcp/commit/cad4af3849fe3bbe780f2e780f72e14c399b2db6))
|
|
12
|
+
|
|
1
13
|
## [1.1.12](https://github.com/appium/appium-mcp/compare/v1.1.11...v1.1.12) (2025-11-21)
|
|
2
14
|
|
|
3
15
|
### Miscellaneous Chores
|
package/package.json
CHANGED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
name: Publish to MCP Registry
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
tags: ['v*']
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
publish:
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
permissions:
|
|
11
|
-
id-token: write
|
|
12
|
-
contents: read
|
|
13
|
-
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v5
|
|
16
|
-
with:
|
|
17
|
-
submodules: recursive
|
|
18
|
-
|
|
19
|
-
- name: Setup submodules sparse-checkout
|
|
20
|
-
run: |
|
|
21
|
-
chmod +x scripts/setup-submodules-sparse.sh
|
|
22
|
-
./scripts/setup-submodules-sparse.sh
|
|
23
|
-
|
|
24
|
-
- name: Setup Node.js
|
|
25
|
-
uses: actions/setup-node@v5
|
|
26
|
-
with:
|
|
27
|
-
node-version: 'lts/*'
|
|
28
|
-
cache: 'npm'
|
|
29
|
-
|
|
30
|
-
- name: Install dependencies
|
|
31
|
-
run: npm install --no-package-lock --force
|
|
32
|
-
|
|
33
|
-
- name: Build
|
|
34
|
-
run: |
|
|
35
|
-
npm run build --if-present
|
|
36
|
-
|
|
37
|
-
# MCP publishing
|
|
38
|
-
- name: Download MCP Publisher
|
|
39
|
-
run: |
|
|
40
|
-
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/latest/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
|
|
41
|
-
|
|
42
|
-
- name: Update server.json version to match git tag
|
|
43
|
-
run: |
|
|
44
|
-
VERSION=${GITHUB_REF#refs/tags/v}
|
|
45
|
-
jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > tmp && mv tmp server.json
|
|
46
|
-
echo "Updated server.json version to $VERSION"
|
|
47
|
-
cat server.json
|
|
48
|
-
|
|
49
|
-
- name: Publish to MCP Registry
|
|
50
|
-
run: |
|
|
51
|
-
chmod +x mcp-publisher
|
|
52
|
-
./mcp-publisher login github-oidc
|
|
53
|
-
./mcp-publisher publish
|