pyodide_read-image
Extract and read image files from a specified mounted directory using Python on the mcp-pyodide server. Input mount name and image path to process visual data efficiently.
Instructions
Read an image from a mounted directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imagePath | Yes | Path of the image file | |
mountName | Yes | Name of the mount point |
Input Schema (JSON Schema)
{
"properties": {
"imagePath": {
"description": "Path of the image file",
"type": "string"
},
"mountName": {
"description": "Name of the mount point",
"type": "string"
}
},
"required": [
"mountName",
"imagePath"
],
"type": "object"
}