Loading...

This MCP server extracts image metadata (EXIF, GPS, XMP, etc.) from various sources, enabling offline analysis and debugging without external tools.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server extracts image metadata (EXIF, GPS, XMP, etc.) from various sources, enabling offline analysis and debugging without external tools.
This server is generally safe for use as it primarily performs read-only operations. However, care should be taken when processing images from untrusted sources due to potential vulnerabilities in the parsing library and the risk of exposing sensitive metadata.
Performance is primarily dependent on the size and complexity of the image and the efficiency of the exifr library. Large images with extensive metadata may take longer to process. Consider limiting the segments to be parsed for faster results.
Since this server operates offline, there are no direct API costs. However, resource consumption (CPU, memory) should be considered when processing large batches of images.
npm install
npmread-metadataReads all or specified metadata segments from an image.
Read-only operation.
read-exifReads EXIF data specifically from an image.
Read-only operation.
read-xmpReads XMP data from an image.
Read-only operation.
read-iccReads ICC color profile data from an image.
Read-only operation.
read-iptcReads IPTC metadata from an image.
Read-only operation.
read-jfifReads JFIF segment data from an image.
Read-only operation.
read-ihdrReads IHDR segment data from an image.
Read-only operation.
orientationGets the image orientation (1-8).
Read-only operation.
rotation-infoGets rotation and flip information from an image.
Read-only operation.
gps-coordinatesExtracts GPS coordinates from an image.
Read-only operation.
thumbnailExtracts the embedded thumbnail from an image.
Read-only operation.
None
local
This server is generally safe for use as it primarily performs read-only operations. However, care should be taken when processing images from untrusted sources due to potential vulnerabilities in the parsing library and the risk of exposing sensitive metadata.
This server only supports read operations, so autonomy is limited to extracting and analyzing metadata. No destructive actions are possible.
Production Tip
Sanitize image paths and URLs to prevent path traversal vulnerabilities when providing image sources.
The server supports JPEG, PNG, TIFF, and HEIC/AVIF formats.
No, this server is designed for read-only access to image metadata.
No, it operates completely offline.
You can provide images via file path, URL, base64 data, or as a buffer.
You can extract EXIF, GPS, XMP, ICC, IPTC, JFIF, and IHDR metadata.
Exercise caution, as malicious images could potentially trigger vulnerabilities in the parsing library.
Use the MCP Inspector to connect to the server and call tools with specific parameters.