We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Orchardxyz/mammoth-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Release
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: 'https://registry.npmjs.org'
- name: Upgrade npm
run: npm install -g npm@latest
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 10.12.1
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build Package
run: pnpm run build
- name: Get Package Version
id: package_version
run: echo "version=$(node -e "console.log(require('./package.json').version)")" >> $GITHUB_OUTPUT
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
name: v${{ steps.package_version.outputs.version }}
body_path: CHANGELOG.md
draft: false
prerelease: false
- name: Publish to NPM
run: npm publish
env:
NPM_CONFIG_PROVENANCE: false