We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Test and lint
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches: [main]
pull_request:
branches: ["**"]
jobs:
check:
name: Test and lint
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Node setup
uses: actions/setup-node@v4
with:
node-version: "20.19.5"
- name: NPM v10
run: npm install -g npm@10 --registry=https://registry.npmjs.org
- name: Format check (dprint)
uses: dprint/check@v2.3
with:
config-path: dprint.json
dprint-version: "0.50.2"
- run: npm i
- run: npm run test
- run: npm run test-esm
- run: npm run lint