We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/buildkite/buildkite-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
version: "2"
linters:
enable:
- errcheck
- govet
- ineffassign
- staticcheck
- unused
- gosec
- gocritic
- testifylint
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
paths:
- third_party$
- builtin$
- examples$
formatters:
enable:
- gci
- gofmt
settings:
gci:
sections:
- standard
- default
gofmt:
rewrite-rules:
- pattern: "interface{}"
replacement: "any"
- pattern: "a[b:len(a)]"
replacement: "a[b:]"
testifylint:
disable-all: true
enable:
- require-error
- useless-assert
- len
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$