Skip to main content
Glama

PDF Reader MCP Server

by pablontiv
ci.yml1.72 kB
name: CI/CD Pipeline on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: test: name: Test and Build runs-on: ubuntu-latest strategy: matrix: node-version: [20.x, 22.x] steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' cache-dependency-path: package-lock.json - name: Install dependencies run: npm ci - name: Type check run: npm run typecheck - name: Lint code run: npm run lint - name: Run tests run: npm test -- --run - name: Build project run: npm run build - name: Test build output run: | if [ ! -d "dist" ]; then echo "Build failed: dist directory not found" exit 1 fi if [ ! -f "dist/index.js" ]; then echo "Build failed: index.js not found in dist" exit 1 fi echo "Build successful: dist/index.js exists" security: name: Security Audit runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 20.x cache: 'npm' cache-dependency-path: package-lock.json - name: Install dependencies run: npm ci - name: Run security audit run: npm audit --audit-level=moderate - name: Check for vulnerabilities run: npm audit --audit-level=high --dry-run

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/pablontiv/pdf-reader-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server