action jellyfin_get_public_system_info { label: "Gets public information about the server." provider: jellyfin method: GET path: "/System/Info/Public" encoding: json output: { type: "object" properties: { Id: { type: "string" description: "Gets or sets the id." } LocalAddress: { type: "string" description: "Gets or sets the local address." } OperatingSystem: { type: "string" description: "Gets or sets the operating system." } ProductName: { type: "string" description: "Gets or sets the product name. This is the AssemblyProduct name." } ServerName: { type: "string" description: "Gets or sets the name of the server." } StartupWizardCompleted: { type: "boolean" description: "Gets or sets a value indicating whether the startup wizard is completed." } Version: { type: "string" description: "Gets or sets the server version." } } additionalProperties: false } }