list_referrers
Retrieve details of referrers associated with a container image or OCI artifact by specifying registry, repository, tag, or digest in the ORAS MCP Server.
Instructions
List referrers 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"
}