Frequently Asked Questions
General
What is Agregarr?
A Plex Collections Manager that automatically creates and syncs collections from sources like Trakt, IMDb, TMDb, and more. It also allows full control of visibility and order on the Plex Home screen, helping you create a more dynamic feel much like streaming services.
Is it free?
Yes, completely free and open source (GPL-3.0).
Do I need Plex Pass?
Yes, you need Plex Pass to fully utilise Agregarr. Without Plex Pass, you can create collections but they will only be visible on the Collections and Library Tab.
Setup
Can I use it with multiple Plex servers?
You need separate Agregarr instances for each server.
Does it work with Jellyfin/Emby?
No, Plex only.
How do I update?
docker-compose down && docker-compose pull && docker-compose up -d
Your config persists in the volume. If agregarr gets refreshed to its intial setup state after you restart, it is because your volume is not set correctly.
How can I setup for multiple Plex servers?
Add a new instance to your docker-compose, and change the port for the new instance
services:
agregarr:
image: agregarr/agregarr:latest
container_name: agregarr
volumes:
- /path/to/config1:/app/config
ports:
- 7171:7171
restart: unless-stopped
agregarr:
image: agregarr/agregarr:latest
container_name: agregarr
volumes:
- /path/to/config2:/app/config
ports:
- 7172:7171
restart: unless-stopped
Collections
How many collections can I create?
No limit, just be mindful of too many Collection on the Home screen as this can require users to scroll too far before reaching the next Library.
Can I reorder collections?
Yes, drag and drop in Agregarr. Home/Recommended share ordering, and Library tab can be ordered independently.
How often do lists sync?
Default is 12 hours. Customizable globally or per-collection.
Downloads
Can I preview which items are missing before downloading?
Yes, use the Preview button when creating collections.
How do I prevent downloading too much?
Use position limits (top 5-10 only), release year filters, and preview before enabling.
Getting Help
Still need help?