Skip to main content
Glama

Cloudinary MCP Server

upload

Upload images, videos, or raw files to Cloudinary via the MCP server. Supports chunked uploads for large files, customizable public IDs, and optional overwrite or tagging for better asset management.

Instructions

Upload media (images/videos) to Cloudinary. For large files, the upload is processed in chunks and returns a streaming response. The uploaded asset will be available at:

  • HTTP: http://res.cloudinary.com/{cloud_name}/{resource_type}/upload/v1/{public_id}.{format}
  • HTTPS: https://res.cloudinary.com/{cloud_name}/{resource_type}/upload/v1/{public_id}.{format} where cloud_name='dadljfaoz', resource_type is 'image' or 'video', and format is determined by the file extension.

Input Schema

NameRequiredDescriptionDefault
fileYesPath to file, URL, or base64 data URI to upload
overwriteNoWhether to overwrite existing assets with the same public ID
public_idNoPublic ID to assign to the uploaded asset. This will be used in the final URL. If not provided, Cloudinary will generate one.
resource_typeNoType of resource to upload. For videos, the upload will return a streaming response as it processes in chunks.
tagsNoTags to assign to the uploaded asset

Input Schema (JSON Schema)

{ "properties": { "file": { "description": "Path to file, URL, or base64 data URI to upload", "type": "string" }, "overwrite": { "description": "Whether to overwrite existing assets with the same public ID", "type": "boolean" }, "public_id": { "description": "Public ID to assign to the uploaded asset. This will be used in the final URL. If not provided, Cloudinary will generate one.", "type": "string" }, "resource_type": { "description": "Type of resource to upload. For videos, the upload will return a streaming response as it processes in chunks.", "enum": [ "image", "video", "raw" ], "type": "string" }, "tags": { "description": "Tags to assign to the uploaded asset", "items": { "type": "string" }, "type": "array" } }, "required": [ "file" ], "type": "object" }
Install Server

Other Tools from Cloudinary MCP Server

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/felores/cloudinary-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server