check_engine_image
Compare local Docker image manifest with registry to detect staleness. Optionally pull the latest image to stay up to date.
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). |