Image EXIF Editor
Edit and modify EXIF metadata in images including rotation, author, camera, and other common metadata fields using ExifTool
API Documentation
Request Endpoint
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| imageFile | file (Upload 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 type parameters need to be uploaded first via POST /upload/image-exif-editor to get filePath, then pass filePath to the corresponding file field.
Response Format
{
"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)"
}
AI MCP Documentation
Add this tool to your MCP server 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://elysiatools.com/mcp/sse?toolId=image-exif-editor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.
Supports URL file links or Base64 encoding for file parameters.
If you encounter any issues, please contact us at [email protected]