
exif-mcp
An offline MCP server that allows LLMs or humans to extract and analyze metadata from images using the exifr library, supporting various image formats and metadata segments without external tools.
Tools
read-metadata
Read all or specified metadata segments from an image
read-exif
Read EXIF data from an image with optional tag filtering
read-xmp
Read XMP metadata from an image with option for extended XMP segments
gps-coordinates
Extract GPS coordinates (latitude/longitude) from image metadata
thumbnail
Extract embedded thumbnail from image as base64 data or URL
read-icc
Read ICC metadata from an image
read-iptc
Read IPTC metadata from an image
read-jfif
Read JFIF metadata from an image
read-ihdr
Read IHDR metadata from an image
orientation
Get image orientation value (1-8)
rotation-info
Get detailed rotation and flip information from image orientation
README
exif-mcp
An MCP server that allows LLMs (or humans) to read image metadata on-demand, entirely offline. Based on the excellent exifr library it's exremely fast and does not rely on any external tools.
Usecases:
- Analyze image metadata and visualize it
- Perform analysis of your image library: what are my most used cameras? Lens distribution? Which dates of the week I take most pictures on? Most favorite locations?
- Debugging image manipulation code.
Ths tool is used extensively by the reverse geolocation service PlaceSpotter for development and testing.
Overview
exif-mcp
is a Model Context Protocol (MCP) server that provides tools for extracting various metadata segments from images. Built with TypeScript, it leverages the excellent exifr library to parse metadata from images in common formats like JPEG, PNG, TIFF, and HEIC. This allows this service to parse image metadata without executing any external tools which allows it to be both highly efficient and secure.
Features
- Local operation: Works completely offline with no remote network required
- Multiple segments: Extracts EXIF, GPS, XMP, ICC, IPTC, JFIF, and IHDR metadata
- Various input formats: Supports JPEG, TIFF, HEIC/AVIF, and PNG
- Flexible image sources: Read from file system, URLs, base64 data, or buffers
- Specialized tools: Get orientation, rotation info, GPS coordinates, and thumbnails
Installation
# Clone the repository
git clone https://github.com/stass/exif-mcp.git
cd exif-mcp
# Install dependencies
npm install
# Build the project
npm run build
Usage
Claude Desktop
Put this into Claude config file (claude_desktop_config.json):
"mcpServers": {
"exif-mcp": {
"command": "node",
"args": [
"/path/to/exif-mcp/dist/server.js"
]
}
},
Restart Claude. Now you can ask Claude to inspect images for you or e.g. find files taken with specific camera. This works best in combination with filesystem MCP tools so Claude can find files and list directories.
Starting the server
# Start the server
npm start
# For development with auto-reload
npm run dev
The server uses the StdioServerTransport
from the MCP SDK, making it compatible with any MCP client that supports STDIO transport.
You can use mcp-proxy to enable remote access.
Available Tools
The following tools are provided by the server:
Tool name | Description |
---|---|
read-metadata |
Reads all or specified metadata segments |
read-exif |
Reads EXIF data specifically |
read-xmp |
Reads XMP data |
read-icc |
Reads ICC color profile data |
read-iptc |
Reads IPTC metadata |
read-jfif |
Reads JFIF segment data |
read-ihdr |
Reads IHDR segment data |
orientation |
Gets image orientation (1-8) |
rotation-info |
Gets rotation and flip information |
gps-coordinates |
Extracts GPS coordinates |
thumbnail |
Extracts embedded thumbnail |
Debugging with MCP Inspector
- Start the inspector:
npx @modelcontextprotocol/inspector node dist/server.js
- Connect to it with MCP Inspector using the STDIO transport
- Call a tool, e.g.,
read-metadata
with parameter:{ "image": { "kind": "path", "path": "/path/to/image.jpg" } }
- You cal also use MCP inspector command line like this:
npx @modelcontextprotocol/inspector --cli node dist/server.js --method tools/call --tool-name read-exif --tool-arg image='{"kind": "path", "path": "/path/to/image.jpeg"}' --tool-arg pick="[]"
Image Source Types
The server supports multiple ways to provide image data:
// From local file system
{
"kind": "path",
"path": "/path/to/image.jpg"
}
// From URL (http, https, or file://)
{
"kind": "url",
"url": "https://example.com/image.jpg"
}
// From base64 data (raw or data URI)
{
"kind": "base64",
"data": "data:image/jpeg;base64,/9j/4AAQSkZ..."
}
// From base64 buffer
{
"kind": "buffer",
"buffer": "/9j/4AAQSkZ..."
}
Development
Running Tests
# Run tests
npm test
# Run tests with watch mode
npm run test:watch
Project Structure
exif-mcp/
├── src/
│ ├── server.ts # Main entry point
│ ├── tools/
│ │ ├── index.ts # Tool registration
│ │ ├── loaders.ts # Image loading utilities
│ │ └── segments.ts # exifr options builders
│ └── types/
│ └── image.ts # Type definitions
├── tests/ # Test files
└── README.md
Error Handling
The server provides standardized error handling for common issues:
- Unsupported formats or missing metadata
- Network fetch failures
- Oversized payloads
- Internal exifr errors
License
BSD 2-clause
Acknowledgements
- exifr - Extremely fast and robust EXIF parsing library
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.