module RubyLLM::MCP::Protocol

def default_negotiated_version

def default_negotiated_version
  DEFAULT_NEGOTIATED_PROTOCOL_VERSION
end

def latest_version

def latest_version
  LATEST_PROTOCOL_VERSION
end

def supported_version?(version)

def supported_version?(version)
  SUPPORTED_PROTOCOL_VERSIONS.include?(version)
end

def supported_versions

def supported_versions
  SUPPORTED_PROTOCOL_VERSIONS
end