Skip to main content
Glama
drewrad8

Firewalla MCP Server

by drewrad8
ci.yml2.19 kB
name: CI on: push: branches: [main] pull_request: branches: [main] jobs: test: name: Test runs-on: ubuntu-latest strategy: matrix: node-version: [18, 20, 22] steps: - name: Checkout repository 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: firewalla/package-lock.json - name: Install dependencies working-directory: firewalla run: npm ci - name: Build working-directory: firewalla run: npm run build - name: Run tests working-directory: firewalla run: npm test coverage: name: Coverage runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 20 cache: 'npm' cache-dependency-path: firewalla/package-lock.json - name: Install dependencies working-directory: firewalla run: npm ci - name: Run tests with coverage working-directory: firewalla run: npm run test:coverage - name: Upload coverage to Codecov uses: codecov/codecov-action@v5 with: directory: firewalla/coverage fail_ci_if_error: false lint: name: Lint & Type Check runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 20 cache: 'npm' cache-dependency-path: firewalla/package-lock.json - name: Install dependencies working-directory: firewalla run: npm ci - name: Type check working-directory: firewalla run: npx tsc --noEmit - name: Lint working-directory: firewalla run: npm run lint - name: Format check working-directory: firewalla run: npm run format:check

Latest Blog Posts

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/drewrad8/mcps'

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