We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mozillazg/kube-audit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package provider
import (
"context"
"github.com/mozillazg/kube-audit-mcp/pkg/types"
)
type Provider interface {
QueryAuditLog(context.Context, types.QueryAuditLogParams) (types.AuditLogResult, error)
}