fetch_manifest
Retrieve the manifest of a container image or OCI artifact by specifying its registry, repository, tag, or digest using ORAS MCP Server.
Instructions
Fetch manifest of a container image or an OCI artifact.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| digest | No | manifest digest | |
| registry | Yes | registry name | |
| repository | Yes | repository name | |
| tag | No | tag name | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "digest": {
      "description": "manifest digest",
      "type": "string"
    },
    "registry": {
      "description": "registry name",
      "type": "string"
    },
    "repository": {
      "description": "repository name",
      "type": "string"
    },
    "tag": {
      "description": "tag name",
      "type": "string"
    }
  },
  "required": [
    "registry",
    "repository"
  ],
  "type": "object"
}