upload_image
Upload images to the Printify MCP Server by providing a file name and source (URL, local path, or base64 data) for integration with AI-driven print-on-demand workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileName | Yes | File name | |
url | Yes | URL of the image to upload, path to local file, or base64 encoded image data |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fileName": {
"description": "File name",
"type": "string"
},
"url": {
"description": "URL of the image to upload, path to local file, or base64 encoded image data",
"type": "string"
}
},
"required": [
"fileName",
"url"
],
"type": "object"
}