Skip to main content
Glama

MCP Prompts Server

python.yml2.18 kB
name: Python on: push: branches: - main pull_request: release: types: [published] jobs: detect-packages: runs-on: ubuntu-latest outputs: packages: ${{ steps.find-packages.outputs.packages }} steps: - uses: actions/checkout@v4 - name: Find Python packages id: find-packages working-directory: src run: | PACKAGES=$(find . -name pyproject.toml -exec dirname {} \; | sed 's/^\.\///' | jq -R -s -c 'split("\n")[:-1]') echo "packages=$PACKAGES" >> $GITHUB_OUTPUT build: needs: [detect-packages] strategy: matrix: package: ${{ fromJson(needs.detect-packages.outputs.packages) }} name: Build ${{ matrix.package }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Install uv uses: astral-sh/setup-uv@v3 - name: Set up Python uses: actions/setup-python@v5 with: python-version-file: 'src/${{ matrix.package }}/.python-version' - name: Install dependencies working-directory: src/${{ matrix.package }} run: uv sync --frozen --all-extras --dev - name: Run pyright working-directory: src/${{ matrix.package }} run: uv run --frozen pyright - name: Build package working-directory: src/${{ matrix.package }} run: uv build - name: Upload artifacts uses: actions/upload-artifact@v4 with: name: dist-${{ matrix.package }} path: src/${{ matrix.package }}/dist/ publish: runs-on: ubuntu-latest needs: [build, detect-packages] if: github.event_name == 'release' strategy: matrix: package: ${{ fromJson(needs.detect-packages.outputs.packages) }} name: Publish ${{ matrix.package }} environment: github-pages permissions: id-token: write # Required for trusted publishing steps: - name: Download artifacts uses: actions/download-artifact@v4 with: name: dist-${{ matrix.package }} path: dist/ - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@release/v1

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/sparesparrow/mcp-prompts'

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