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 issue
on:
issues:
types: [created, opened, reopened, edited]
concurrency:
group: issue-${{ github.event.issue.number }}
cancel-in-progress: true
env:
GENAISCRIPT_DEFAULT_MODEL: 'ollama:gemma3:4b'
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
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- 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 issue with GenAIScript
run: npx -y genaiscript@latest run review-issue --pull-request-comment --out-trace $GITHUB_STEP_SUMMARY
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_ISSUE: ${{ github.event.issue.number }}