Design
Edit and modify EXIF metadata in images including rotation, author, camera, and other common metadata fields using ExifTool
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
# 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/de/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'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/image-exif-editor| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| imageFile | fileUpload nötig | Ja | Upload JPEG or TIFF image file (formats that support EXIF metadata) |
| operation | select | Nein | Choose the EXIF operation to perform |
| artist | text | Nein | Set the artist or author name in EXIF metadata |
| copyright | text | Nein | Set copyright information in EXIF metadata |
| comment | textarea | Nein | Set image description or comment in EXIF metadata |
| dateTime | text | Nein | Set the date and time the image was taken (format: YYYY-MM-DD HH:MM:SS) |
| make | text | Nein | Set camera manufacturer information |
| model | text | Nein | Set camera model information |
| software | text | Nein | Set software used to process the image |
| orientation | select | Nein | Set image orientation (will rotate the image accordingly) |
| keepOriginal | checkbox | Nein | Preserve original EXIF data while adding new information |
Dateiergebnis
{
"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)"
}Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"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"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"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
}
}
}Fragen oder Probleme? Kontakt: [email protected]