search_images
Searches Docker Hub for container images by name, returning matching full image paths and namespaces. Use to discover available images before selecting specific versions.
Instructions
Search for container images by name.
⚠️ USE THIS FIRST when you don't know the exact image path!
This searches Docker Hub and returns matching images with their full names. Use the results to find the correct org/namespace, then use find_image or get_latest_image_tag with the full path.
IMPORTANT: GitHub Container Registry (ghcr.io) has no search API. If you suspect an image is on GHCR, check the project's GitHub repo or documentation for the correct image path (usually ghcr.io/org/repo).
Examples:
"radarr" → finds linuxserver/radarr, hotio/radarr, etc.
"redis" → finds redis (official), bitnami/redis, etc.
"qui" → finds qompass/qui (but won't find ghcr.io/autobrr/qui - no GHCR search)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results to return (default: 5) | |
| query | Yes | Search query (e.g., 'radarr', 'redis', 'postgres') |