aidelly_upload_media
ActiveTool of io.github.wilzer/aidelly
Default image-attach path for MCP: upload media in one step, server-side, with no client-to-Supabase connection required. Preferred for all browser-based chat clients (ChatGPT, Claude.ai) and safe for any client. Provide exactly one of source_url (a public HTTPS URL the server fetches — best for anything non-trivial and not subject to a payload size cap), data_url, or file_base64 (small inline images only; large payloads hit the MCP tool-call size limit). Returns media_id and read_url for aidelly_create_post content.media.
Parameters schema
{
"type": "object",
"required": [
"idempotency_key",
"file_name"
],
"properties": {
"body": {
"type": "object",
"description": "Optional body override for endpoints with sparse parameter schemas.",
"additionalProperties": true
},
"query": {
"type": "object",
"description": "Optional query overrides for endpoints with sparse parameter schemas.",
"additionalProperties": true
},
"folder": {
"type": "string",
"example": "campaign-assets",
"maxLength": 100,
"minLength": 1
},
"brand_id": {
"type": "string"
},
"data_url": {
"type": "string",
"description": "Data URL such as data:image/png;base64,..."
},
"file_name": {
"type": "string",
"example": "launch-image.png",
"minLength": 1
},
"source_url": {
"type": "string",
"format": "uri",
"description": "Public HTTPS URL to fetch server-side."
},
"file_base64": {
"type": "string",
"description": "Base64-encoded file bytes."
},
"content_type": {
"type": "string",
"example": "image/png",
"minLength": 3,
"description": "Required when using file_base64 or data_url."
},
"workspace_id": {
"type": "string",
"format": "uuid",
"description": "Workspace to operate in. Do not ask the user for this UUID — call aidelly_list_workspaces and use the `id` of the matching workspace. Optional for read operations; required when creating content."
},
"idempotency_key": {
"type": "string"
}
},
"additionalProperties": false
}Parent server
io.github.wilzer/aidelly
https://github.com/Aidelly/claude-plugin
1/7 registries