EXIF MCP
Extracts EXIF, XMP, JFIF, and GPS metadata from images like JPEG, PNG, TIFF, and HEIC, operating entirely offline.
Delv Safety Grade: C
Score 58/100 · assessed 2026-04-28
This community MCP server extracts image metadata (EXIF, XMP, GPS) from common formats, operating entirely offline which is a privacy positive. The maintainer 'stass' appears to be a solo developer with limited public profile, creating bus factor concerns. The repository exists and is open source with reasonable documentation, but the install method requires cloning and building from source rather than using a standard package registry. Permissions are well-scoped to read-only filesystem access for image files, which is appropriate for metadata extraction. No npm or PyPI distribution means less community vetting and no dependency pinning benefits. The offline-only operation is a security advantage as it prevents data exfiltration. No known security incidents, but the solo maintainer and non-standard distribution reduce confidence in long-term maintenance and supply chain integrity.
Lethal Trifecta (prompt-injection exposure)
ONE OF THREEReads metadata from local images; can include attacker-crafted EXIF strings. No outbound in pure read mode.
Green flags
- Operates entirely offline, preventing metadata exfiltration
- Read-only filesystem access, no write or execute permissions
- Open source with clear documentation of capabilities
- Well-scoped functionality limited to metadata extraction
- No external network calls or API dependencies
Red flags
- Solo maintainer 'stass' with limited public development history
- No package registry distribution, requires manual clone and build
- No dependency pinning or lock file verification in standard tooling
- Limited community review due to non-standard installation method
Permissions requested
Install
npm install && npm run build
Review
Install this if you're building workflows that need reliable, offline image metadata extraction. It's a single-purpose tool that does its job without fuss. Skip it if you're not comfortable with manual builds or don't have a repeatable use case for EXIF data.
Good at
- Runs entirely offline, so no privacy concerns with sensitive images.
- Supports HEIC files, which many EXIF tools skip.
- Returns raw, unfiltered metadata, making it easy to script or parse further.
- No API keys or external dependencies beyond Node.
- Fast extraction even on large batches of images.
Watch out
- No prebuilt package, so you have to clone and build it yourself.
- Config setup is manual, with no example snippet provided in the listing.
- Returns empty fields for images without metadata, which can confuse first-time users.
- Limited to image formats; won't handle video or audio metadata.
Use cases
- photo library analysis
- GPS metadata extraction
- photography workflows
- digital forensics
Getting started
Works with
Similar MCPs
- ElevenLabsOfficial ElevenLabs MCP server. Text-to-speech, voice cloning, transcription, and audio sound design from inside Claude Desktop, Cursor, Windsurf, and other MCP clients.
- TimeReturns current time in any timezone, computes scheduling math, parses date strings. Boring but absurdly useful for any time-aware agent.
- MarkItDownMicrosoft's MarkItDown as an MCP. Convert PDF, Office, audio, video, images, web to clean Markdown for LLM ingestion.
- Everything (reference)Anthropic's reference MCP that exercises every protocol feature. Required reading if you're building your own MCP.