Skip to main content
Glama

Android Preference Editor MCP Server

release.yml1.88 kB
name: Release on: push: tags: - "v*" jobs: release: runs-on: ubuntu-latest permissions: contents: write steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: "20.x" cache: "npm" - name: Install dependencies run: npm ci - name: Run verification run: npm run verify - name: Extract version from tag id: version run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT - name: Generate changelog id: changelog run: | # Get the previous tag PREV_TAG=$(git describe --tags --abbrev=0 HEAD^ 2>/dev/null || echo "") if [ -z "$PREV_TAG" ]; then # First release - get all commits CHANGELOG=$(git log --pretty=format:"- %s (%h)" --reverse) else # Get commits since previous tag CHANGELOG=$(git log ${PREV_TAG}..HEAD --pretty=format:"- %s (%h)" --reverse) fi # Save changelog to output echo "CHANGELOG<<EOF" >> $GITHUB_OUTPUT echo "$CHANGELOG" >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: tag_name: ${{ steps.version.outputs.VERSION }} name: Release ${{ steps.version.outputs.VERSION }} body: | ## Changes in ${{ steps.version.outputs.VERSION }} ${{ steps.changelog.outputs.CHANGELOG }} ## Installation ```bash npm install @charlesmuchene/pref-editor-mcp-server@${{ steps.version.outputs.VERSION }} ``` draft: false prerelease: ${{ contains(steps.version.outputs.VERSION, '-') }}

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/charlesmuchene/pref-editor-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server