We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bitrise-io/bitrise-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test.sh•252 B
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
go get github.com/boumenot/gocover-cobertura
go test -race -coverprofile=coverage.txt -covermode=atomic $* ./...
go run github.com/boumenot/gocover-cobertura < coverage.txt > coverage.xml
go mod tidy