action jellyfin_get_named_configuration { label: "Gets a named configuration." provider: jellyfin method: GET path: "/System/Configuration/{key}" encoding: json input: { type: "object" properties: { key: { type: "string" description: "Configuration key." } } required: ["key"] additionalProperties: false } output: { type: "string" format: "binary" } }