Read Node Image
read_node_imageRetrieve a base64 image from a Neo4j node, returning the image and selected text properties.
Instructions
Retrieve a base64 image stored on a Neo4j node, plus selected text properties.
Returns a mixed ToolResult with TextContent (node properties) and ImageContent (the image). The image property itself is excluded from the text content to avoid duplication.
Usage:
node_element_id: get from vector_search/fulltext_search/read_neo4j_cypher (nodeId field)
image_property: property storing the base64 image (default: "imageBase64")
mime_type: override detected MIME type (default: read from node's imageMimeType, else "image/png")
return_properties: comma-separated list of properties to include in text response
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mime_type | No | Override MIME type (e.g., "image/jpeg"). If not provided, reads from node's imageMimeType property, falling back to "image/png". | |
| image_property | No | Property name holding the base64-encoded image. Defaults to "imageBase64". | |
| node_element_id | Yes | The elementId of the node to read. | |
| return_properties | No | Optional: Comma-separated list of additional text properties to return alongside the image. If not specified, returns all properties (sanitized, excluding the image property). |