Skip to main content
Glama

@kazuph/mcp-fetch

by kazuph
release.yml1.05 kB
name: Create Tag and GitHub Release on main on: push: branches: - main permissions: contents: write jobs: release: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Use Node.js uses: actions/setup-node@v4 with: node-version: 22 - name: Create tag and GitHub Release if missing env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | VERSION=$(node -p "require('./package.json').version") TAG="v${VERSION}" NOTES_FILE="RELEASE_NOTES_${TAG}.md" echo "Version: $VERSION | Tag: $TAG" if gh release view "$TAG" >/dev/null 2>&1; then echo "Release $TAG already exists. Skipping." exit 0 fi if [ -f "$NOTES_FILE" ]; then gh release create "$TAG" -F "$NOTES_FILE" -t "$TAG" --latest else gh release create "$TAG" --generate-notes -t "$TAG" --latest fi

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/kazuph/mcp-fetch'

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