registry_inspect_manifest
Fetch the manifest for a container image reference directly from a registry without pulling the image. Supports single-platform manifests and multi-platform lists.
Instructions
Fetch the manifest for an image reference without pulling.
May return a single-platform image manifest or a multi-platform manifest list / OCI image index, depending on what the registry serves for that tag.
args:
image - Image ref, e.g. "ghcr.io/org/repo"; :tag/@digest is stripped — pass via reference
reference - Tag or digest (default "latest")
username - Optional registry username (overrides DOCKER_MCP_SERVER_REGISTRY_USERNAME; no config.json)
password - Optional registry password/token (overrides DOCKER_MCP_SERVER_REGISTRY_PASSWORD)
returns: dict - {"name", "registry", "reference", "media_type", "digest", "manifest": }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes | ||
| password | No | ||
| username | No | ||
| reference | No | latest |