Skip to main content
Glama
ArnoChenFx

Perplexity Search MCP

by ArnoChenFx
release.yml1.87 kB
name: Auto Release on: push: branches: - main - master jobs: build-and-release: runs-on: ubuntu-latest permissions: contents: write steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Bun uses: oven-sh/setup-bun@v2 with: bun-version: latest - name: Install Dependencies run: bun install - name: Build run: bun run build - name: Get Latest Tag id: get-latest-tag run: | latest_tag=$(git tag -l 'v*' | sort -V | tail -n1) latest_tag=${latest_tag:-v0.0.0} echo "LATEST_TAG=${latest_tag}" >> $GITHUB_ENV echo "Latest tag: ${latest_tag}" - name: Generate New Version id: generate-new-version run: | current_version=${LATEST_TAG#v} if [ "$current_version" = "0.0.0" ]; then new_version="v1.0.0" else major=$(echo $current_version | cut -d. -f1) minor=$(echo $current_version | cut -d. -f2) patch=$(echo $current_version | cut -d. -f3) new_patch=$((patch + 1)) new_version="v${major}.${minor}.${new_patch}" fi echo "NEW_VERSION=${new_version}" >> $GITHUB_ENV echo "New version will be: ${new_version}" - name: Release Asset uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: name: Release ${{ env.NEW_VERSION }} tag_name: ${{ env.NEW_VERSION }} draft: false prerelease: false files: ./dist/perplexity-search-mcp.js body: | Automated release for commit: ${{ github.sha }} Changes in this release: ${{ github.event.head_commit.message }}

Latest Blog Posts

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/ArnoChenFx/perplexity-search-mcp'

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