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 2025 Stefan Prodan.
// SPDX-License-Identifier: AGPL-3.0
package main
import (
"github.com/spf13/cobra"
)
var distroRevokeCmd = &cobra.Command{
Use: "revoke",
Short: "Maintain a ledger of revoked license keys",
}
func init() {
distroCmd.AddCommand(distroRevokeCmd)
}