Skip to main content
Glama

GitHub MCP Server

by timbuchinger
release.yaml1.05 kB
name: Release on: workflow_dispatch: inputs: version: description: 'Version number (e.g., v1.0.0)' required: true type: string jobs: release: permissions: contents: write runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Validate version format run: | if ! [[ ${{ github.event.inputs.version }} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then echo "Error: Version must be in format v1.0.0" exit 1 fi - name: Create Release Tag run: | git tag ${{ github.event.inputs.version }} git push origin ${{ github.event.inputs.version }} - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: tag_name: ${{ github.event.inputs.version }} name: Release ${{ github.event.inputs.version }} draft: true prerelease: false generate_release_notes: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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/timbuchinger/mcp-github'

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