check_engine_image
Checks if the local Docker image is up to date by comparing manifest digests. Optionally pulls the latest version when stale.
Instructions
Check whether the local pineforge-release Docker image is up to date with the registry. Compares per-platform manifest digests via docker manifest inspect --verbose (no image layers downloaded). Returns up_to_date + recommend_pull. With auto_pull=true, runs docker pull in the same call when the local image is stale or missing. Note: this is independent of the MCP server's own version (@pineforge/codegen-mcp); the MCP version and the engine image version evolve separately.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | No | Image to check. Defaults to ghcr.io/pineforge-4pass/pineforge-engine:latest. | |
| auto_pull | No | If true and the image is stale or missing, run `docker pull` in the same call. Default false (report only). |