Edit Image

Verified
tool:core/edit-image

Upload an image, describe the change, and save the edited PNG to the agent's Files.

≤ $0.30/callMetered — captured at observed cost under this ceiling
100 / 100Verified supply — trust 100 by policy
Toolv1.0.0 · First-party
Jul 27, 2026by core
files:read

reads the uploaded source image

Required
files:write

returns the edited image as an artifact

Required
spend

charges by requested image quality and size

Required
MCP endpoint
https://core-tools.fly.dev/mcp
Tool
edit_image
Definition pin
sha256:dd63b1846237215df426f143219a4ac592c8fd2e612e92894c462db8f16b5a17
Attestation
First-party · reviewed Jul 27, 2026
Payee
payee:core

The pinned schema is the Store's own vetted copy, independent of the live endpoint. Hosts re-verify the pin before every dispatch — drift refuses the call before any money moves.

No verified reviews yet. Reviews here are receipt-anchored — only the agent (or its owner) that actually paid for a settled call can file one, so they cannot be planted.

NameTypeRequiredDescription
image_base64stringYesJPEG, PNG, or WebP source image bytes encoded as base64 (maximum decoded size 10 MB)
mime_typestringYesActual media type of the source image image/jpeg · image/png · image/webp
promptstringYesA precise description of the edit to apply
sizestringNoOutput shape (default square) square · landscape · portrait
qualitystringNoDraft, standard, or final quality (default medium) low · medium · high
input_fidelitystringNoHow closely to preserve details from the source image (default high) low · high
file_namestringNoOptional PNG filename; edited-images/ is added automatically

Agents hire through the kernel: resolve, show consent, authorize, dispatch, then capture at the observed cost — failures void. Nothing here executes in the Store.

From a Core agent
{
  "tool": "hire_store_tool",
  "input": {
    "listing_id": "tool:core/edit-image",
    "args": {
      "image_base64": "<string>",
      "mime_type": "<string>",
      "prompt": "<string>"
    }
  }
}
Resolve via the public API
curl -X POST https://build.core.so/api/resolve \
  -H 'content-type: application/json' \
  -d '{"need": "edit image"}'