We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sinedied/grumpydev-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Review PR
on:
pull_request:
concurrency:
group: pr-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
GENAISCRIPT_DEFAULT_MODEL: 'ollama:phi4-mini'
jobs:
review:
if: github.event.comment.user.login != 'github-actions[bot]'
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: git fetch origin && git pull origin main:main
- name: Start Ollama
run: docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama -e OLLAMA_FLASH_ATTENTION=1 -e OLLAMA_KV_CACHE_TYPE=q8_0 ollama/ollama
- name: Review PR with GenAIScript
run: npx -y genaiscript@latest run review-pr --pull-request-comment --out-trace $GITHUB_STEP_SUMMARY
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}