We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/auth0/auth0-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
action.yml•406 B
name: Return the version extracted from the branch name
#
# Returns the version from the .version file.
#
# TODO: Remove once the common repo is public.
#
outputs:
version:
value: ${{ steps.get_version.outputs.VERSION }}
runs:
using: composite
steps:
- id: get_version
shell: bash
run: |
VERSION=$(head -1 .version)
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT