action jellyfin_get_device_options { label: "Get options for a device." provider: jellyfin method: GET path: "/Devices/Options" encoding: json input: { type: "object" properties: { id: { type: "string" description: "Device Id." } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { CustomName: { type: "string" } } additionalProperties: false } }