Documentation
¶
Index ¶
Constants ¶
View Source
const ( // MCP proxy modes ModeConversionListener = "conversion-listener" ModeConversion = "conversion" )
Variables ¶
This section is empty.
Functions ¶
func Convert ¶
func Convert(content []byte, opts O2MOptions) (map[string]interface{}, error)
Convert converts an OpenAPI spec to a Kong declarative file with MCP configuration.
func MustConvert ¶
func MustConvert(content []byte, opts O2MOptions) map[string]interface{}
MustConvert is the same as Convert, but will panic if an error is returned.
Types ¶
type O2MOptions ¶
type O2MOptions struct {
// Array of tags to mark all generated entities with, taken from 'x-kong-tags' if omitted.
Tags []string
// Base document name, will be taken from x-kong-name, or info.title (for UUID generation!)
DocName string
// Namespace for UUID generation, defaults to DNS namespace for UUID v5
UUIDNamespace uuid.UUID
// Skip ID generation (UUIDs)
SkipID bool
// MCP proxy mode: "conversion" or "conversion-listener"
Mode string
// Custom path prefix for the MCP route (default: /{service-name}-mcp)
PathPrefix string
// Also generate direct (non-MCP) routes for API access
IncludeDirectRoute bool
// Ignore security errors (unsupported schemes, missing x-kong-mcp-acl extension)
IgnoreSecurityErrors bool
}
O2MOptions defines the options for an OpenAPI to MCP conversion operation
Click to show internal directories.
Click to hide internal directories.