We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/quanticsoul4772/analytical-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: NodeJS CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Setup environment
run: |
cp .env.example .env.test
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Type check
run: npm run typecheck:src
- name: Run tests
run: npm run test:optimized
env:
NODE_ENV: test
EXA_API_KEY: ${{ secrets.EXA_API_KEY }}