We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gemyago/atlacp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.testcoverage.yaml•831 B
# go-test-coverage tool is used to check for coverage threshold (see https://github.com/vladopajic/go-test-coverage)
# Holds coverage thresholds percentages, values should be in range [0-100]
threshold:
# (optional; default 0)
# The minimum coverage that each file should have
file: 90
# (optional; default 0)
# The minimum coverage that each package should have
# package: 0
# (optional; default 0)
# The minimum total coverage project should have
total: 90
# Holds regexp rules which will exclude matched files or packages
# from coverage statistics
exclude:
# Exclude files or packages matching their paths
paths:
- testing.go
- mock_.*.go
- internal/api/http/v1routes/.* # Generated code
- internal/app/models/.* # Generated code
- internal/testing/mocks/.* # Tests related code