action jellyfin_get_drives { label: "Gets available drives from the server's file system." provider: jellyfin method: GET path: "/Environment/Drives" encoding: json output: { type: "array" items: { type: "object" description: "Class FileSystemEntryInfo." properties: { Name: { type: "string" description: "Gets the name." } Path: { type: "string" description: "Gets the path." } Type: { type: "string" description: "Enum FileSystemEntryType." enum: ["File", "Directory", "NetworkComputer", "NetworkShare"] } } additionalProperties: false } } }