WebMCP Registry

exif_remover

verifiedv0.1

Strip or view raster metadata (EXIF, GPS, XMP, IPTC) entirely in the browser. JPEG, PNG and WebP can be stripped without re-encoding pixels. HEIC can be viewed but not stripped — convert to JPEG first. Pass the file as image { mime, base64 } (max 12 MiB decoded). mode is strip or view; scope is all or gps-only (JPEG only; other formats full-strip). keepOrientation and keepColorProfile apply to JPEG. Variant URLs are not a second machine Tool — pass mode and scope explicitly. Do not use this to compress or convert formats.

Updated 9/3/2026 · Created 9/3/2026

Input Schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "required": [
    "image"
  ],
  "properties": {
    "mode": {
      "enum": [
        "strip",
        "view"
      ],
      "type": "string",
      "default": "strip"
    },
    "image": {
      "type": "object",
      "required": [
        "mime",
        "base64"
      ],
      "properties": {
        "mime": {
          "enum": [
            "image/jpeg",
            "image/png",
            "image/webp",
            "image/avif",
            "image/heic",
            "image/heif",
            "image/jxl"
          ],
          "type": "string"
        },
        "base64": {
          "type": "string",
          "maxLength": 16777220,
          "minLength": 1
        }
      },
      "additionalProperties": false
    },
    "scope": {
      "enum": [
        "all",
        "gps-only"
      ],
      "type": "string",
      "default": "all"
    },
    "keepOrientation": {
      "type": "boolean",
      "default": true
    },
    "keepColorProfile": {
      "type": "boolean",
      "default": true
    }
  },
  "additionalProperties": false
}

Full Contract

{
  "name": "exif_remover",
  "description": "Strip or view raster metadata (EXIF, GPS, XMP, IPTC) entirely in the browser. JPEG, PNG and WebP can be stripped without re-encoding pixels. HEIC can be viewed but not stripped — convert to JPEG first. Pass the file as image { mime, base64 } (max 12 MiB decoded). mode is strip or view; scope is all or gps-only (JPEG only; other formats full-strip). keepOrientation and keepColorProfile apply to JPEG. Variant URLs are not a second machine Tool — pass mode and scope explicitly. Do not use this to compress or convert formats.",
  "inputSchema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "required": [
      "image"
    ],
    "properties": {
      "mode": {
        "enum": [
          "strip",
          "view"
        ],
        "type": "string",
        "default": "strip"
      },
      "image": {
        "type": "object",
        "required": [
          "mime",
          "base64"
        ],
        "properties": {
          "mime": {
            "enum": [
              "image/jpeg",
              "image/png",
              "image/webp",
              "image/avif",
              "image/heic",
              "image/heif",
              "image/jxl"
            ],
            "type": "string"
          },
          "base64": {
            "type": "string",
            "maxLength": 16777220,
            "minLength": 1
          }
        },
        "additionalProperties": false
      },
      "scope": {
        "enum": [
          "all",
          "gps-only"
        ],
        "type": "string",
        "default": "all"
      },
      "keepOrientation": {
        "type": "boolean",
        "default": true
      },
      "keepColorProfile": {
        "type": "boolean",
        "default": true
      }
    },
    "additionalProperties": false
  }
}

GET /api/tool/simpletoolstack.com/exif_remover