Skip to content

Upload Image

Tool name: open-email-editor-image-upload

Opens the upload form for a KlickTipp account's image library -- the files the email editor's file manager shows. Takes nothing and stores nothing: a host with MCP Apps support shows a file picker, the person picks a file from their own disk, and it goes into the library without passing through the conversation. It is the route for a picture that exists only on the user's disk, and it spares them pasting base64. The answer says the form was opened; the URL of the stored file appears in the window and in a later list-email-editor-images. A picture that already exists at a public URL does not need the form: upload-email-editor-image-from-url adds it directly, and a logo or product picture is usually already in the library, where list-email-editor-images finds it.

Input schema

accountIdnull or integer, >= 1

User ID of the account; omit for the account the access token works in

Default:null
Input example
{ "accountId": null }

Output schema

accountIdintegerrequired
uploadedbooleanrequired
storedAsstring or nullrequired
imageobject or nullrequired
foldersArray of stringsrequired
htmlstringrequired
Output example
{ "accountId": 0, "uploaded": true, "storedAs": "string", "image": { "url": "string", "path": "string", "fileName": "string", "mimeType": "string", "sizeBytes": 0, "uploadedAt": "string", "width": 0, "height": 0 }, "folders": [ "string" ], "html": "string" }