Skip to main content
Glama
tldev

container-tag-finder

by tldev

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_latest_image_tagA

Get the latest semantic version tag for a container image.

Use this when you KNOW the exact image path. Returns the latest stable semantic version tag for use in Dockerfiles or Kubernetes manifests.

⚠️ If you DON'T know the exact image path:

  • Use search_images first to find the correct org/namespace

  • Or use find_image which tries multiple registries automatically

  • Check the project's GitHub repo for the correct image reference

Examples:

  • nginx → nginx:1.27.3

  • ghcr.io/kedacore/keda → ghcr.io/kedacore/keda:2.16.1

  • bitnami/redis → bitnami/redis:7.4.2

  • ghcr.io/autobrr/qui → ghcr.io/autobrr/qui:v0.3.0

list_image_tagsA

List available tags for a container image.

Returns all semantic version tags for an image, sorted from newest to oldest. Useful when you need to see what versions are available or find a specific version pattern.

Can filter tags by regex pattern (e.g., '^v3\.' for v3.x versions only).

check_image_updateA

Check if a newer version of a container image is available.

Compares a current tag to the latest available version and tells you if an update is available and what type (major, minor, or patch).

Useful for auditing Dockerfiles or Kubernetes manifests to find outdated images.

search_imagesA

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)

find_imageA

Find an image by name, trying multiple registries and namespaces.

BEST PRACTICE: If you only have an application name (like "qui" or "radarr"):

  1. First check the project's GitHub/website to find the correct image path

  2. Look for org/repo pattern (e.g., "autobrr/qui" not just "qui")

  3. 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

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tldev/container-tag-finder'

If you have feedback or need assistance with the MCP directory API, please join our Discord server