action jellyfin_get_media_info_image { label: "Get media info image." provider: jellyfin method: GET path: "/Images/MediaInfo/{theme}/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" description: "The name of the image." } theme: { type: "string" description: "The theme to get the image from." } } required: ["name", "theme"] additionalProperties: false } output: { type: "object" additionalProperties: true } }