EXIF Viewer & Stripper
See what metadata is hidden in a photo — camera, GPS, timestamps — and strip it before sharing.
Drop a JPG, HEIC, or PNG here or
🔒 Images are parsed entirely in your browser. Stripped output is generated via canvas.
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl
curl https://api.b-e-a-d.com/tools/exif-viewer/run \
-H "Content-Type: application/json" \
-d '{
"base64": "aGVsbG8="
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/exif-viewer/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"base64": "aGVsbG8="
}),
});
const data = await res.json();
console.log(data.result);MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_exif_viewerFull reference: developer docs · OpenAPI spec
Why this matters
Most cameras and phones embed metadata in every photo: camera make/model, lens, shutter settings, software, and often GPS coordinates. Posting an image straight from your phone can leak your address.
The Strip & download button re-encodes the image through a <canvas> — none of the original metadata survives the round-trip.
You might also like
- Apache / Nginx Log ParserParse Combined Log Format lines into structured rows with status mix, top paths, and per-row filtering.
- Aspect Ratio CalculatorLock in an aspect ratio and compute missing width or height — for video, images, or layouts.
- CIDR / Subnet CalculatorCompute network, broadcast, host range, count, and mask for any IPv4 CIDR.
- Color Blindness SimulatorPreview an image or hex color through the four most common color-vision deficiencies.