list_repositories
Retrieve a list of repositories from a specified container registry using the ORAS MCP Server. Simplify registry management and access repository details efficiently.
Instructions
List repositories of a container registry.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
registry | Yes | registry name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"registry": {
"description": "registry name",
"type": "string"
}
},
"required": [
"registry"
],
"type": "object"
}