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
// Copyright 2024 Stefan Prodan.
// SPDX-License-Identifier: AGPL-3.0
package builder
import "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
// Result holds the build result.
type Result struct {
Version string
Digest string
Revision string
Objects []*unstructured.Unstructured
ComponentImages []ComponentImage
}