We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/luno/luno-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Go Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
name: Go Tests
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
cache: true
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...