Exiftool MCP Server

Read, write, and remove metadata from 150+ file formats using ExifTool

Local serverstdioPython

What is the Exiftool MCP server?

Read, write, and remove metadata from 150+ file formats using ExifTool. That is what the exiftool mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

An MCP (Model Context Protocol) server that provides access to ExifTool for reading, writing, and removing metadata from a wide range of file types.

  • Read metadata — from over 150 file formats
  • Write metadata — to files with automatic backup creation
  • Remove metadata — selectively or completely from files
  • Extract specific tags — or retrieve all available metadata
  • Support for multiple metadata standards — EXIF, IPTC, XMP, GPS, and manufacturer-specific formats

Getting it running

Installation goes through your MCP client rather than a global install: point it at exiftool-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • read_metadata — The read_metadata tool exposed by this server
  • write_metadata — Write or update metadata tags in a file using ExifTool. Creates a backup by default
  • remove_metadata — Remove metadata from a file using ExifTool. Can remove all metadata or specific tags
  • list_supported_formats — The list_supported_formats tool exposed by this server
  • Setup — The Setup tool exposed by this server

What it needs from you

ExifTool must be installed on your system. This MCP server is a wrapper that calls the ExifTool command-line tool.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Exiftool's toolset — read_metadata, write_metadata, remove_metadata and 2 more — is a fair guide to whether it matches your workflow. It is maintained by joshmsimpson; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
read_metadataThe read_metadata tool exposed by this server.
write_metadataWrite or update metadata tags in a file using ExifTool. Creates a backup by default.
remove_metadataRemove metadata from a file using ExifTool. Can remove all metadata or specific tags.
list_supported_formatsThe list_supported_formats tool exposed by this server.
SetupThe Setup tool exposed by this server.

How to install the Exiftool MCP server

{
  "mcpServers": {
    "exiftool": {
      "command": "exiftool-mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

ExifTool must be installed on your system. This MCP server is a wrapper that calls the ExifTool command-line tool.

Example prompts to try

  • Use Exiftool to read metadata.
  • Use Exiftool to write metadata.
  • Use Exiftool to remove metadata.

Frequently asked questions

It connects Exiftool to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (read_metadata, write_metadata, remove_metadata, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Exiftool directly.