We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Falamarcao/mcp-selenium-grid'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
action.yml•546 B
name: Get Version from pyproject.toml
description: Extracts the version from pyproject.toml and sets it as an output.
inputs: {}
outputs:
version:
description: "The version from pyproject.toml"
value: ${{ steps.extract-version.outputs.version }}
runs:
using: "composite"
steps:
- name: Extract version from pyproject.toml
id: extract-version
shell: bash
run: |
VERSION=$(grep '^version' pyproject.toml | head -1 | sed 's/version *= *"\(.*\)"/\1/')
echo "version=$VERSION" >> $GITHUB_OUTPUT