Design
Edit and modify EXIF metadata in images including rotation, author, camera, and other common metadata fields using ExifTool
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/image-exif-editor' \
-F 'file=@/path/to/imageFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-exif-editor' \
-F 'imageFile=/path/to/file.ext' \
-F 'operation=edit' \
-F 'artist=Enter artist or author name...' \
-F 'copyright=Enter copyright information...' \
-F 'comment=Enter image description or comment...' \
-F 'dateTime=Enter date/time (YYYY-MM-DD HH:MM:SS)...' \
-F 'make=Enter camera manufacturer (e.g., Canon, Nikon)...' \
-F 'model=Enter camera model (e.g., EOS 5D Mark IV)...' \
-F 'software=Enter software name...' \
-F 'orientation=1' \
-F 'keepOriginal=true'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/image-exif-editor| Name | Type | Required | Description |
|---|---|---|---|
| imageFile | fileupload required | Yes | Upload JPEG or TIFF image file (formats that support EXIF metadata) |
| operation | select | No | Choose the EXIF operation to perform |
| artist | text | No | Set the artist or author name in EXIF metadata |
| copyright | text | No | Set copyright information in EXIF metadata |
| comment | textarea | No | Set image description or comment in EXIF metadata |
| dateTime | text | No | Set the date and time the image was taken (format: YYYY-MM-DD HH:MM:SS) |
| make | text | No | Set camera manufacturer information |
| model | text | No | Set camera model information |
| software | text | No | Set software used to process the image |
| orientation | select | No | Set image orientation (will rotate the image accordingly) |
| keepOriginal | checkbox | No | Preserve original EXIF data while adding new information |
File result
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-image-exif-editor": {
"name": "image-exif-editor",
"description": "Edit and modify EXIF metadata in images including rotation, author, camera, and other common metadata fields using ExifTool",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-exif-editor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "image-exif-editor",
"arguments": {
"imageFile": "https://example.com/file.ext",
"operation": "edit",
"artist": "Enter artist or author name...",
"copyright": "Enter copyright information...",
"comment": "Enter image description or comment...",
"dateTime": "Enter date/time (YYYY-MM-DD HH:MM:SS)...",
"make": "Enter camera manufacturer (e.g., Canon, Nikon)...",
"model": "Enter camera model (e.g., EOS 5D Mark IV)...",
"software": "Enter software name...",
"orientation": "1",
"keepOriginal": true
}
}
}Questions or issues? Contact [email protected]