We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Benchmark-PR-Check
on:
workflow_dispatch:
inputs:
pr-number:
description: Pull request number to comment on
required: true
concurrency:
group: 'workflow-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}'
cancel-in-progress: true
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: true
- name: Install and execute benchmark
uses: ./.github/actions/benchmark
- name: Compare benchmark with baseline
run: node scripts/compare-benchmark.mjs
working-directory: packages/tools/benchmark-tests
- name: Find comment
uses: peter-evans/find-comment@v4
id: fc
with:
body-includes: Hydration Benchmark Report
comment-author: 'github-actions[bot]'
issue-number: ${{ github.event.inputs.pr-number }}
- name: Post PR Comment
uses: peter-evans/create-or-update-comment@v5
with:
body-path: packages/tools/benchmark-tests/benchmark-report.md
comment-id: ${{ steps.fc.outputs.comment-id }}
edit-mode: replace
issue-number: ${{ github.event.inputs.pr-number }}