pull_image
Pull a Docker image from a registry to manage containers efficiently. Specify the image name to integrate with the Docker MCP Server for streamlined resource handling.
Instructions
Pull a Docker image from a registry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image | Yes | Image name (e.g. "nginx:latest") |
Input Schema (JSON Schema)
{
"properties": {
"image": {
"description": "Image name (e.g. \"nginx:latest\")",
"type": "string"
}
},
"required": [
"image"
],
"type": "object"
}