aidelly_create_media_upload_url
ActiveTool of io.github.wilzer/aidelly
Create a signed upload URL and media record for shell-capable clients that can PUT raw bytes to the returned Supabase URL (for example Claude Code or a local CLI). Do NOT use this from browser-sandboxed chat clients such as ChatGPT or Claude.ai: their sandboxes block network egress to Supabase storage, so the byte upload will fail. Those clients must use aidelly_upload_media instead (this tool is hidden automatically for known chat clients).
Parameters schema
{
"type": "object",
"required": [
"idempotency_key",
"file_name",
"content_type",
"file_size"
],
"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"
},
"file_name": {
"type": "string",
"example": "launch-image.png",
"minLength": 1
},
"file_size": {
"type": "integer",
"example": 245000,
"maximum": 524288000,
"minimum": 1
},
"content_type": {
"type": "string",
"example": "image/png",
"minLength": 3
},
"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