We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apify/mcp-server-rag-web-browser'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
check.yaml•822 B
# This workflow runs for every pull request to lint and test the proposed changes.
name: Check
on:
pull_request:
# Push to main will trigger code checks
push:
branches:
- main
tags-ignore:
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.
jobs:
lint_and_test:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint