find_image
Searches Docker Hub, GHCR, and Quay.io for a container image by name, returning available tags and versions.
Instructions
Find an image by name, trying multiple registries and namespaces.
BEST PRACTICE: If you only have an application name (like "qui" or "radarr"):
First check the project's GitHub/website to find the correct image path
Look for org/repo pattern (e.g., "autobrr/qui" not just "qui")
Then call this tool with "org/repo" format
This tool will try the name on Docker Hub, GHCR, and Quay.io:
"radarr" → tries linuxserver/radarr, bitnami/radarr, etc.
"autobrr/qui" → tries Docker Hub first, then ghcr.io/autobrr/qui ✓
LIMITATION: Cannot discover GHCR images without knowing the org name. If searching for a GitHub project's image, use format: "orgname/reponame"
Examples:
"nginx" → finds nginx:1.27.3 (official Docker Hub)
"autobrr/qui" → finds ghcr.io/autobrr/qui:v0.3.0
"linuxserver/radarr" → finds linuxserver/radarr:5.x.x
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Image name. Use 'org/repo' format for best results (e.g., 'autobrr/qui', 'linuxserver/radarr') |