read-iptc
Extract and analyze IPTC metadata from images using the exif-mcp server. Supports various input formats including paths, URLs, base64, and buffers for detailed metadata insights.
Instructions
Read IPTC metadata from an image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"image": {
"additionalProperties": false,
"properties": {
"buffer": {
"type": "string"
},
"data": {
"type": "string"
},
"kind": {
"enum": [
"path",
"url",
"base64",
"buffer"
],
"type": "string"
},
"path": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"kind"
],
"type": "object"
}
},
"required": [
"image"
],
"type": "object"
}