We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dynatrace-oss/dynatrace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js # will read version from .nvmrc
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Prettier
run: npm run prettier
- name: Run tests with coverage
run: npm run test:unit -- --coverage
- name: Upload coverage report
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: coverage/
- name: Build
run: npm run build