We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/controlplaneio-fluxcd/flux-operator'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
version: 2
# xref: https://goreleaser.com/errors/multiple-tokens/
force_token: github
# xref: https://goreleaser.com/customization/project/
project_name: flux-operator
# xref: https://goreleaser.com/customization/hooks/
before:
hooks:
- go mod download
# xref: https://goreleaser.com/customization/env/
env:
- CGO_ENABLED=0
# xref: https://goreleaser.com/customization/build/
builds:
- <<: &cmd_defaults
binary: flux-operator
main: ./cmd/cli
ldflags:
- -s -w -X main.VERSION={{ .Version }}
id: cli
goos:
- linux
- darwin
goarch:
- amd64
- arm64
- <<: *cmd_defaults
id: cli-windows
goos:
- windows
goarch:
- amd64
- arm64
- <<: &mcp_defaults
binary: flux-operator-mcp
main: ./cmd/mcp
ldflags:
- -s -w -X main.VERSION={{ .Version }}
id: mcp
goos:
- linux
- darwin
goarch:
- amd64
- arm64
- <<: *mcp_defaults
id: mcp-windows
goos:
- windows
goarch:
- amd64
- arm64
# xref: https://goreleaser.com/customization/archive/
archives:
- name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
id: unix-cli
ids:
- cli
formats: ['tar.gz']
files:
- LICENSE
- name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
id: unix-mcp
ids:
- mcp
formats: ['tar.gz']
files:
- LICENSE
- name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
id: windows-cli
ids:
- cli-windows
formats: ['zip']
files:
- LICENSE
- name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
id: windows-mcp
ids:
- mcp-windows
formats: ['zip']
files:
- LICENSE
# xref: https://goreleaser.com/customization/checksum/
checksum:
extra_files:
- glob: ./bin/release/install.yaml
- glob: ./bin/release/crd-schemas.tar.gz
# xref: https://goreleaser.com/customization/source/
source:
enabled: true
name_template: '{{ .ProjectName }}_{{ .Version }}_source_code'
# xref: https://goreleaser.com/customization/sbom/
sboms:
- id: source
artifacts: source
documents:
- "{{ .ProjectName }}_{{ .Version }}_sbom.spdx.json"
# xref: https://goreleaser.com/customization/changelog/
changelog:
use: github-native
# xref: https://goreleaser.com/customization/release/
release:
extra_files:
- glob: ./bin/release/install.yaml
- glob: ./bin/release/crd-schemas.tar.gz