We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nearai/near-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ci.yml•525 B
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Format Check
run: bun run format
- name: Lint Check
run: bun run lint
- name: Type check
run: bun run typecheck
- name: Build
run: bun run build