We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tomtom-international/tomtom-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Quality Checks
on:
pull_request:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Code formatting
run: npm run format
- name: Build
run: npm run build
- name: Run tests
run: npm run test:all
env:
TOMTOM_API_KEY: ${{ secrets.TOMTOM_API_KEY }}