analyze_image
Extract detailed metadata from image files using the analyze_image tool on the image-reader MCP Server. Specify the image path to retrieve essential information for processing or analysis.
Instructions
Get detailed metadata about an image
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| path | Yes | Path to the image file | 
Input Schema (JSON Schema)
{
  "properties": {
    "path": {
      "description": "Path to the image file",
      "type": "string"
    }
  },
  "required": [
    "path"
  ],
  "type": "object"
}