Cloudinary MCP
Vendor MCP30 toolsOAuth 2.1/DCRMediaDeveloper ToolsConnects AI agents to Cloudinary's asset management platform, enabling upload, search, transformation, and organization of media assets through natural...
Cloudinary MCP connector
-
Install the SDK
Section titled “Install the SDK”Terminal window npm install @scalekit-sdk/nodeTerminal window pip install scalekit -
Set your credentials
Section titled “Set your credentials”Add your Scalekit credentials to your
.envfile. Find values in app.scalekit.com > Developers > API Credentials..env SCALEKIT_ENVIRONMENT_URL=<your-environment-url>SCALEKIT_CLIENT_ID=<your-client-id>SCALEKIT_CLIENT_SECRET=<your-client-secret> -
Authorize and make your first call
Section titled “Authorize and make your first call”quickstart.ts import { ScalekitClient } from '@scalekit-sdk/node'import 'dotenv/config'const scalekit = new ScalekitClient(process.env.SCALEKIT_ENV_URL,process.env.SCALEKIT_CLIENT_ID,process.env.SCALEKIT_CLIENT_SECRET,)const actions = scalekit.actionsconst connector = 'cloudinarymcp'const identifier = 'user_123'// Generate an authorization link for the userconst { link } = await actions.getAuthorizationLink({ connectionName: connector, identifier })console.log('Authorize Cloudinary MCP:', link)process.stdout.write('Press Enter after authorizing...')await new Promise(r => process.stdin.once('data', r))// Make your first callconst result = await actions.executeTool({connector,identifier,toolName: 'cloudinarymcp_get_tx_reference',toolInput: {},})console.log(result)quickstart.py import osfrom scalekit.client import ScalekitClientfrom dotenv import load_dotenvload_dotenv()scalekit_client = ScalekitClient(env_url=os.getenv("SCALEKIT_ENV_URL"),client_id=os.getenv("SCALEKIT_CLIENT_ID"),client_secret=os.getenv("SCALEKIT_CLIENT_SECRET"),)actions = scalekit_client.actionsconnection_name = "cloudinarymcp"identifier = "user_123"# Generate an authorization link for the userlink_response = actions.get_authorization_link(connection_name=connection_name,identifier=identifier,)print("Authorize Cloudinary MCP:", link_response.link)input("Press Enter after authorizing...")# Make your first callresult = actions.execute_tool(tool_input={},tool_name="cloudinarymcp_get_tx_reference",connection_name=connection_name,identifier=identifier,)print(result)
What you can do
Section titled “What you can do”Connect this agent connector to let your agent:
- Upload sign — Use this tool when the user wants to upload a file to Cloudinary directly from their own machine or environment
- Tags manage asset — Adds, removes, or replaces tags on multiple assets
Applies a tag command to the given assets, addressing them by public ID
- Metadata manage asset — Sets structured metadata values on multiple assets
Assigns structured metadata field values to the given assets, addressing them by public ID
- Context manage asset — Adds or clears contextual metadata on multiple assets
Applies a contextual-metadata command to the given assets, addressing them by public ID
- Get generation task, usage details, tx reference — Get a generation task
Get the status of a generation task
- Images generate image from — Generate an image from reference images
Generate an image guided by one or more reference images — restyle,
on-brand variants, character consistency, virtual try-on, edit/extend —
steered by prompt
Tool list
Section titled “Tool list”Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.
cloudinarymcp_asset_rename#Updates an existing asset's identifier (public ID) and optionally other metadata in your Cloudinary account2 params
Updates an existing asset's identifier (public ID) and optionally other metadata in your Cloudinary account
RequestBodyobjectrequiredThe rename request parameters.resource_typestringrequiredThe type of resource (image, video, or raw).cloudinarymcp_asset_update#Updates an existing asset's metadata, tags, and other attributes using its asset ID
Updates one or more attributes of a specified resource (asset) by its asset ID. This enables you to update details of an asset by its unique and immutable identifier, regardless of public ID, display name, asset folder, resource type or delivery type. Note that you can also update attributes of an existing asset using the explicit API endpoint.2 params
Updates an existing asset's metadata, tags, and other attributes using its asset ID Updates one or more attributes of a specified resource (asset) by its asset ID. This enables you to update details of an asset by its unique and immutable identifier, regardless of public ID, display name, asset folder, resource type or delivery type. Note that you can also update attributes of an existing asset using the explicit API endpoint.
asset_idstringrequiredThe asset ID of the resource. Must be a 32-character hexadecimal string.ResourceUpdateRequestobjectrequiredThe asset attributes to update.cloudinarymcp_create_asset_relations#Add related assets by asset ID
Relates an asset to other assets by their asset IDs, an immutable identifier, regardless of public ID, display name, asset folder, resource type or delivery type. This is a bidirectional process, meaning that the asset will also be added as a related_asset to all the other assets specified. The relation is also a one to many relationship, where the asset is related to all the assets specified, but those assets aren't also related to each other.2 params
Add related assets by asset ID Relates an asset to other assets by their asset IDs, an immutable identifier, regardless of public ID, display name, asset folder, resource type or delivery type. This is a bidirectional process, meaning that the asset will also be added as a related_asset to all the other assets specified. The relation is also a one to many relationship, where the asset is related to all the assets specified, but those assets aren't also related to each other.
asset_idstringrequiredThe asset ID of the resource. Must be a 32-character hexadecimal string.relate_assets_by_asset_id_requestobjectrequiredThe asset IDs to relate.cloudinarymcp_create_folder#Creates a new empty folder in your Cloudinary media library
Creates a new folder at the specified path1 param
Creates a new empty folder in your Cloudinary media library Creates a new folder at the specified path
folderstringrequiredThe full path of the folder, including any nested folders. Must not be empty, and must not contain double slashes or leading/trailing slashes.cloudinarymcp_delete_asset#Delete asset by asset ID
Deletes an asset using its immutable asset ID.1 param
Delete asset by asset ID Deletes an asset using its immutable asset ID.
requestobjectrequiredThe asset to delete and related options.cloudinarymcp_delete_asset_relations#Delete asset relations by asset ID
Unrelates the asset from other assets, specified by their asset IDs, an immutable identifier, regardless of public ID, display name, asset folder, resource type or delivery type. This is a bidirectional process, meaning that the asset will also be removed as a related_asset from all the other assets specified.2 params
Delete asset relations by asset ID Unrelates the asset from other assets, specified by their asset IDs, an immutable identifier, regardless of public ID, display name, asset folder, resource type or delivery type. This is a bidirectional process, meaning that the asset will also be removed as a related_asset from all the other assets specified.
asset_idstringrequiredThe asset ID of the resource. Must be a 32-character hexadecimal string.unrelate_assets_by_asset_id_requestobjectrequiredThe asset IDs to unrelate.cloudinarymcp_delete_derived_assets#Delete derived resources
Deletes derived resources by derived resource ID1 param
Delete derived resources Deletes derived resources by derived resource ID
requestobjectrequiredThe derived resource IDs to delete.cloudinarymcp_delete_folder#Deletes an existing folder from your media library
Deletes a folder and all assets within it.1 param
Deletes an existing folder from your media library Deletes a folder and all assets within it.
folderstringrequiredThe full path of the folder, including any nested folders. Must not be empty, and must not contain double slashes or leading/trailing slashes.cloudinarymcp_download_asset_backup#Download a backup copy of an asset2 params
Download a backup copy of an asset
asset_idstringrequiredThe asset ID of the resource. Must be a 32-character hexadecimal string.version_idstringrequiredThe version ID of the backup to download. Must be a 32-character hexadecimal string.cloudinarymcp_generate_archive#Creates an archive (ZIP or TGZ file) that contains a set of assets from your product environment.
Creates a downloadable ZIP or other archive format containing the specified resources.2 params
Creates an archive (ZIP or TGZ file) that contains a set of assets from your product environment. Creates a downloadable ZIP or other archive format containing the specified resources.
RequestBodyobjectrequiredThe archive generation parameters.resource_typestringrequiredThe type of resource for archive generation (image, video, or raw).cloudinarymcp_generate_image#Generate an image
Generate an image from a text prompt using AI models.
The model is selected via the optional `model` object:
1. If `model.id` is provided, use that exact model.
2. Else if `model.family` (+ optional `model.tier`) is provided, resolve via the model registry; a missing tier defaults to `standard`.
3. If `model` is omitted, use the global default (nano-banana / premium, i.e. `nano-banana-2`).
1 param
Generate an image Generate an image from a text prompt using AI models. The model is selected via the optional `model` object: 1. If `model.id` is provided, use that exact model. 2. Else if `model.family` (+ optional `model.tier`) is provided, resolve via the model registry; a missing tier defaults to `standard`. 3. If `model` is omitted, use the global default (nano-banana / premium, i.e. `nano-banana-2`).
requestobjectrequiredA JSON object containing the generation request parameters.cloudinarymcp_generate_image_from_images#Generate an image from reference images
Generate an image guided by one or more **reference images** — restyle,
on-brand variants, character consistency, virtual try-on, edit/extend —
steered by `prompt`.
Only edit-capable models are selectable here. The model is selected via
the optional `model` object, exactly like `text_to_image`, but IDs are
restricted to edit models:
1. If `model.id` is provided, use that exact edit model.
2. Else if `model.family` (+ optional `model.tier`) is provided, resolve
to that family's edit model (e.g. `nano-banana` / `premium` →
`nano-banana-2-edit`).
3. If `model` is omitted, use the default edit model (`nano-banana-2-edit`).
Each reference image is either a stored managed asset (by `asset_id`,
read-permission checked) or an external HTTPS `url`.
1 param
Generate an image from reference images Generate an image guided by one or more **reference images** — restyle, on-brand variants, character consistency, virtual try-on, edit/extend — steered by `prompt`. Only edit-capable models are selectable here. The model is selected via the optional `model` object, exactly like `text_to_image`, but IDs are restricted to edit models: 1. If `model.id` is provided, use that exact edit model. 2. Else if `model.family` (+ optional `model.tier`) is provided, resolve to that family's edit model (e.g. `nano-banana` / `premium` → `nano-banana-2-edit`). 3. If `model` is omitted, use the default edit model (`nano-banana-2-edit`). Each reference image is either a stored managed asset (by `asset_id`, read-permission checked) or an external HTTPS `url`.
requestobjectrequiredA JSON object containing the image-to-image generation request parameters.cloudinarymcp_get_asset_details#Get resource by asset ID
Returns the details of a single resource specified by its asset ID.12 params
Get resource by asset ID Returns the details of a single resource specified by its asset ID.
asset_idstringrequiredThe asset ID of the resource. Must be a 32-character hexadecimal string.accessibility_analysisbooleanoptionalWhether to return accessibility analysis scores for the image. Default: false.colorsbooleanoptionalWhether to include color information (predominant colors and histogram of 32 leading colors). Default: false.coordinatesbooleanoptionalWhether to include previously specified custom cropping coordinates and faces coordinates. Default: false.derived_next_cursorstringoptionalThe cursor for the next page of derived assets when there are more derived images than max_results.facesbooleanoptionalWhether to include a list of coordinates of detected faces. Default: false.max_resultsintegeroptionalMaximum number of derived assets to return. Default: 10.media_metadatabooleanoptionalWhether to include IPTC, XMP, and detailed Exif metadata in the response. Default: false.pagesbooleanoptionalWhether to report the number of pages in multi-page documents (e.g., PDF). Default: false.phashbooleanoptionalWhether to include the perceptual hash (pHash) of the uploaded photo for image similarity detection. Default: false.quality_analysisbooleanoptionalWhether to return quality analysis scores for the image. Default: false.versionsbooleanoptionalWhether to include details of all the backed up versions of the asset. Default: false.cloudinarymcp_get_generation_task#Get a generation task
Get the status of a generation task.1 param
Get a generation task Get the status of a generation task.
task_idstringrequiredThe ID of the generation task.cloudinarymcp_get_tx_reference#Get Cloudinary transformation rules documentation from official docs
MANDATORY before creating, modifying, or discussing Cloudinary transformations. Required when user asks for image/video effects, resizing, cropping, filters, etc. Not needed for simple asset management (upload, list, delete, etc.). Call only once per session - documentation doesn't change, reuse the knowledge.
This tool returns the complete, authoritative Cloudinary transformation reference that contains all valid parameters, syntax rules, and best practices.0 params
Get Cloudinary transformation rules documentation from official docs MANDATORY before creating, modifying, or discussing Cloudinary transformations. Required when user asks for image/video effects, resizing, cropping, filters, etc. Not needed for simple asset management (upload, list, delete, etc.). Call only once per session - documentation doesn't change, reuse the knowledge. This tool returns the complete, authoritative Cloudinary transformation reference that contains all valid parameters, syntax rules, and best practices.
cloudinarymcp_get_usage_details#Retrieves comprehensive usage metrics and account statistics
A report on the status of product environment usage, including storage, credits, bandwidth, requests, number of resources, and add-on usage. No date parameter needed to get current usage statistics.1 param
Retrieves comprehensive usage metrics and account statistics A report on the status of product environment usage, including storage, credits, bandwidth, requests, number of resources, and add-on usage. No date parameter needed to get current usage statistics.
datestringoptionalThe date for which to retrieve usage details (YYYY-MM-DD). If not specified, returns the current usage.cloudinarymcp_list_files#Get raw assets
Retrieves a list of raw assets. Results can be filtered by various criteria like tags, prefix, or specific public IDs.9 params
Get raw assets Retrieves a list of raw assets. Results can be filtered by various criteria like tags, prefix, or specific public IDs.
directionstringoptionalThe sort direction for the results. Default is "desc".fieldsstringoptionalAdditional fields to include in the response. The fields public_id and asset_id are always included.max_resultsintegeroptionalMaximum number of results to return (1-500).next_cursorstringoptionalCursor for pagination.prefixstringoptionalA public_id prefix. When specified, all assets with that prefix are returned.public_idsarrayoptionalAn array of public IDs to return.start_atstringoptionalAn ISO-8601 formatted timestamp. When specified, returns resources created since that timestamp. Supported only if neither `prefix` nor `public_ids` were passed.tagsbooleanoptionalWhether to include the list of tag names assigned to each asset. Default is false.typestringoptionalThe delivery type to filter by. When omitted, returns assets of all delivery types.cloudinarymcp_list_images#Get image assets
Retrieves a list of image assets. Results can be filtered by various criteria like tags, prefix, or specific public IDs.9 params
Get image assets Retrieves a list of image assets. Results can be filtered by various criteria like tags, prefix, or specific public IDs.
directionstringoptionalThe sort direction for the results. Default is "desc".fieldsstringoptionalAdditional fields to include in the response. The fields public_id and asset_id are always included.max_resultsintegeroptionalMaximum number of results to return (1-500).next_cursorstringoptionalCursor for pagination.prefixstringoptionalA public_id prefix. When specified, all assets with that prefix are returned.public_idsarrayoptionalAn array of public IDs to return.start_atstringoptionalAn ISO-8601 formatted timestamp. When specified, returns resources created since that timestamp. Supported only if neither `prefix` nor `public_ids` were passed.tagsbooleanoptionalWhether to include the list of tag names assigned to each asset. Default is false.typestringoptionalThe delivery type to filter by. When omitted, returns assets of all delivery types.cloudinarymcp_list_tags#Retrieves a list of tags currently applied to assets in your Cloudinary account
Retrieves a comprehensive list of all tags that exist in your product environment for assets of the specified type.
[Cloudinary Admin API documentation](https://cloudinary.com/documentation/admin_api)4 params
Retrieves a list of tags currently applied to assets in your Cloudinary account Retrieves a comprehensive list of all tags that exist in your product environment for assets of the specified type. [Cloudinary Admin API documentation](https://cloudinary.com/documentation/admin_api)
resource_typestringrequiredThe type of resource (image, video, or raw).max_resultsintegeroptionalMaximum number of results to return (1-500).next_cursorstringoptionalCursor for pagination.prefixstringoptionalLimit the returned tags to those that start with the specified prefix.cloudinarymcp_list_videos#Get video assets
Retrieves a list of video assets. Results can be filtered by various criteria like tags, prefix, or specific public IDs.9 params
Get video assets Retrieves a list of video assets. Results can be filtered by various criteria like tags, prefix, or specific public IDs.
directionstringoptionalThe sort direction for the results. Default is "desc".fieldsstringoptionalAdditional fields to include in the response. The fields public_id and asset_id are always included.max_resultsintegeroptionalMaximum number of results to return (1-500).next_cursorstringoptionalCursor for pagination.prefixstringoptionalA public_id prefix. When specified, all assets with that prefix are returned.public_idsarrayoptionalAn array of public IDs to return.start_atstringoptionalAn ISO-8601 formatted timestamp. When specified, returns resources created since that timestamp. Supported only if neither `prefix` nor `public_ids` were passed.tagsbooleanoptionalWhether to include the list of tag names assigned to each asset. Default is false.typestringoptionalThe delivery type to filter by. When omitted, returns assets of all delivery types.cloudinarymcp_manage_asset_context#Adds or clears contextual metadata on multiple assets
Applies a contextual-metadata command to the given assets, addressing them by public ID.
2 params
Adds or clears contextual metadata on multiple assets Applies a contextual-metadata command to the given assets, addressing them by public ID.
context_update_requestobjectrequiredThe context command, the metadata to apply, and the assets to apply it to.resource_typestringrequiredThe type of resource (image, video, or raw).cloudinarymcp_manage_asset_metadata#Sets structured metadata values on multiple assets
Assigns structured metadata field values to the given assets, addressing them by public ID.
Values are merged into each asset's existing structured metadata: fields not mentioned
keep their current values, and an empty value clears the field. Every referenced field
must already exist in the product environment. Conditional metadata rules are evaluated
as part of the update.
2 params
Sets structured metadata values on multiple assets Assigns structured metadata field values to the given assets, addressing them by public ID. Values are merged into each asset's existing structured metadata: fields not mentioned keep their current values, and an empty value clears the field. Every referenced field must already exist in the product environment. Conditional metadata rules are evaluated as part of the update.
metadata_update_requestobjectrequiredThe structured metadata values to assign and the assets to assign them to.resource_typestringrequiredThe type of resource (image, video, or raw).cloudinarymcp_manage_asset_tags#Adds, removes, or replaces tags on multiple assets
Applies a tag command to the given assets, addressing them by public ID.
The number of tags multiplied by the number of public IDs must not exceed 10,000.
2 params
Adds, removes, or replaces tags on multiple assets Applies a tag command to the given assets, addressing them by public ID. The number of tags multiplied by the number of public IDs must not exceed 10,000.
resource_typestringrequiredThe type of resource (image, video, or raw).tags_update_requestobjectrequiredThe tag command, the tags to apply, and the assets to apply them to.cloudinarymcp_move_folder#Renames or moves an entire folder (along with all assets it contains) to a new location
Renames or moves an entire folder (along with all assets it contains) to a new location within your Cloudinary media library.2 params
Renames or moves an entire folder (along with all assets it contains) to a new location Renames or moves an entire folder (along with all assets it contains) to a new location within your Cloudinary media library.
folderstringrequiredThe full path of the folder, including any nested folders. Must not be empty, and must not contain double slashes or leading/trailing slashes.move_folder_requestobjectrequiredThe new folder path.cloudinarymcp_search_assets#Provides a powerful query interface to filter and retrieve assets and their details
Returns a list of resources matching the specified search criteria.
Uses a Lucene-like query language to filter assets by descriptive attributes (`public_id`, `asset_id`, `filename`, `display_name`, `folder` / `asset_folder`, `tags`, `context.<key>`), file details (`resource_type`, `type`, `format`, `bytes`, `width`, `height`, `duration`, `pages`, `aspect_ratio`, `transparent`, `grayscale`), lifecycle dates (`uploaded_at`, `created_at`, `taken_at`, `updated_at`, `last_updated.<kind>`), moderation and lifecycle state (`status`, `moderation_status`, `moderation_kind`), embedded data (`image_metadata.*`), structured metadata (`metadata.<external_id>`), and analysis fields (`face_count`, `colors`, `quality_score`, `illustration_score`, `accessibility_analysis.*`). Supports sorting, aggregate counts, and complex boolean expressions. See the `expression` parameter for the full field reference.1 param
Provides a powerful query interface to filter and retrieve assets and their details Returns a list of resources matching the specified search criteria. Uses a Lucene-like query language to filter assets by descriptive attributes (`public_id`, `asset_id`, `filename`, `display_name`, `folder` / `asset_folder`, `tags`, `context.<key>`), file details (`resource_type`, `type`, `format`, `bytes`, `width`, `height`, `duration`, `pages`, `aspect_ratio`, `transparent`, `grayscale`), lifecycle dates (`uploaded_at`, `created_at`, `taken_at`, `updated_at`, `last_updated.<kind>`), moderation and lifecycle state (`status`, `moderation_status`, `moderation_kind`), embedded data (`image_metadata.*`), structured metadata (`metadata.<external_id>`), and analysis fields (`face_count`, `colors`, `quality_score`, `illustration_score`, `accessibility_analysis.*`). Supports sorting, aggregate counts, and complex boolean expressions. See the `expression` parameter for the full field reference.
requestobjectrequiredThe search query parameters.cloudinarymcp_search_folders#Searches for folders whose attributes match a given expression
Lists the folders that match the specified search expression. Limited to 2000 results. If no parameters are passed, returns the 50 most recently created folders in descending order of creation time.4 params
Searches for folders whose attributes match a given expression Lists the folders that match the specified search expression. Limited to 2000 results. If no parameters are passed, returns the 50 most recently created folders in descending order of creation time.
expressionstringoptionalThe (Lucene-like) string expression specifying the search query. If not passed, returns all folders (up to max_results).max_resultsintegeroptionalMaximum number of folders to return (max 500, default 50).next_cursorstringoptionalThe cursor for pagination. Use the next_cursor value from a previous response to get the next page of results.sort_byarrayoptionalSort order for the results. Each item maps a field name to a direction.cloudinarymcp_sign_upload#Use this tool when the user wants to upload a file to Cloudinary directly from their own machine or environment. It signs Upload API parameters so the caller can POST files straight to the Cloudinary Upload API — no API secret required on the client side.
NOT suitable for large files (>100 MB) or bulk uploads — direct the user to the Cloudinary CLI (`cld uploader upload`) or an SDK instead, which handle chunking, retries, and progress reporting.
Returns one credential object per input entry:
upload_params — serialized params to echo verbatim as form fields (includes timestamp)
api_key — Cloudinary API key
signature — HMAC signature over upload_params; invalidated if any field is changed
host — Upload API hostname (may differ from api.cloudinary.com for regional/enterprise accounts)
cloud_name — Cloudinary cloud name
Send only signable params in the input (public_id, folder, tags, context, metadata, eager, transformation, …). Do not include file, resource_type, api_key, or signature — these are not part of the signed parameter set and will be ignored if passed.
To upload after signing, POST multipart/form-data to:
https://<host>/v1_1/<cloud_name>/<resource_type>/upload
Include your file plus api_key, signature, and EVERY key from upload_params as its own form field. Any added, dropped, renamed, or re-serialized field invalidates the signature. resource_type (image/video/raw/auto) is part of the URL, not upload_params.
Example (all upload_params keys must appear — shown here with public_id and timestamp only for brevity; include every key your upload_params actually contains):
curl https://<host>/v1_1/<cloud_name>/image/upload \
-F 'file=@"/path/to/photo.jpg"' \
-F 'api_key=<api_key>' -F 'signature=<signature>' \
-F 'timestamp=<upload_params.timestamp>' \
-F 'public_id=<upload_params.public_id>' # one -F per upload_params key
IMPORTANT — the file= argument MUST use two quoting layers: single-quotes around the entire -F value (shell), double-quotes around the path (curl): -F 'file=@"<path>"'. Paths with spaces or special characters are common and will be word-split by the shell if unquoted, silently truncating the filename at the first space.1 param
Use this tool when the user wants to upload a file to Cloudinary directly from their own machine or environment. It signs Upload API parameters so the caller can POST files straight to the Cloudinary Upload API — no API secret required on the client side. NOT suitable for large files (>100 MB) or bulk uploads — direct the user to the Cloudinary CLI (`cld uploader upload`) or an SDK instead, which handle chunking, retries, and progress reporting. Returns one credential object per input entry: upload_params — serialized params to echo verbatim as form fields (includes timestamp) api_key — Cloudinary API key signature — HMAC signature over upload_params; invalidated if any field is changed host — Upload API hostname (may differ from api.cloudinary.com for regional/enterprise accounts) cloud_name — Cloudinary cloud name Send only signable params in the input (public_id, folder, tags, context, metadata, eager, transformation, …). Do not include file, resource_type, api_key, or signature — these are not part of the signed parameter set and will be ignored if passed. To upload after signing, POST multipart/form-data to: https://<host>/v1_1/<cloud_name>/<resource_type>/upload Include your file plus api_key, signature, and EVERY key from upload_params as its own form field. Any added, dropped, renamed, or re-serialized field invalidates the signature. resource_type (image/video/raw/auto) is part of the URL, not upload_params. Example (all upload_params keys must appear — shown here with public_id and timestamp only for brevity; include every key your upload_params actually contains): curl https://<host>/v1_1/<cloud_name>/image/upload \ -F 'file=@"/path/to/photo.jpg"' \ -F 'api_key=<api_key>' -F 'signature=<signature>' \ -F 'timestamp=<upload_params.timestamp>' \ -F 'public_id=<upload_params.public_id>' # one -F per upload_params key IMPORTANT — the file= argument MUST use two quoting layers: single-quotes around the entire -F value (shell), double-quotes around the path (curl): -F 'file=@"<path>"'. Paths with spaces or special characters are common and will be word-split by the shell if unquoted, silently truncating the filename at the first space.
uploadsarrayrequiredOne or more sets of Cloudinary Upload API parameters to sign. Returns one signed credential object per entry, in the same order. Only genuine Upload API params are signed; file, resource_type, api_key, and signature are excluded.cloudinarymcp_transform_asset#Generate derived transformations for existing assets using Cloudinary's explicit API with eager transformations
⚠️ CRITICAL PREREQUISITES:
1. MUST call get-tx-reference tool first
2. MUST validate transformation syntax against official docs
3. MUST use only documented parameters from the reference
4. MUST follow proper URL component structure (slashes between components, commas within)
📋 VALIDATION CHECKLIST:
- ✅ Called get-tx-reference tool
- ✅ Verified all parameters exist in official docs
- ✅ Used correct syntax (e.g., f_auto/q_auto not f_auto,q_auto)
- ✅ Applied proper component chaining rules
- ✅ Included crop mode when using width/height
This tool creates actual derived assets on Cloudinary using the explicit API.4 params
Generate derived transformations for existing assets using Cloudinary's explicit API with eager transformations ⚠️ CRITICAL PREREQUISITES: 1. MUST call get-tx-reference tool first 2. MUST validate transformation syntax against official docs 3. MUST use only documented parameters from the reference 4. MUST follow proper URL component structure (slashes between components, commas within) 📋 VALIDATION CHECKLIST: - ✅ Called get-tx-reference tool - ✅ Verified all parameters exist in official docs - ✅ Used correct syntax (e.g., f_auto/q_auto not f_auto,q_auto) - ✅ Applied proper component chaining rules - ✅ Included crop mode when using width/height This tool creates actual derived assets on Cloudinary using the explicit API.
publicIdstringrequiredThe public ID of the existing asset to transformtransformationsstringrequiredVALIDATED transformation string using ONLY parameters from get-tx-reference docs. Examples: 'c_fill,w_300,h_200' or 'e_sepia/a_90'. MUST follow component rules: commas within components, slashes between components.invalidatebooleanoptionalWhether to invalidate cached versionsresourceTypestringoptionalThe resource type of the assetcloudinarymcp_upload_asset#Uploads media assets (images, videos, raw files) to your Cloudinary product environment
Uploads media assets (images, videos, raw files) to your Cloudinary product environment. The file is securely stored
in the cloud with backup and revision history. Cloudinary automatically analyzes and saves important data about each
asset, such as format, size, resolution, and prominent colors, which is indexed to enable searching on those attributes.
Supports uploading from:
- Local file paths (SDKs/MCP server only). For MCP server path MUST start with file://
- Remote HTTP/HTTPS URLs
- Base64 Data URIs (max ~60 MB)
- Private storage buckets (S3 or Google Storage)
- FTP addresses
The uploaded asset is immediately available for transformation and delivery upon successful upload.
Transform media files using transformation syntax in delivery URLs, which creates derived files accessible immediately without re-uploading the original.2 params
Uploads media assets (images, videos, raw files) to your Cloudinary product environment Uploads media assets (images, videos, raw files) to your Cloudinary product environment. The file is securely stored in the cloud with backup and revision history. Cloudinary automatically analyzes and saves important data about each asset, such as format, size, resolution, and prominent colors, which is indexed to enable searching on those attributes. Supports uploading from: - Local file paths (SDKs/MCP server only). For MCP server path MUST start with file:// - Remote HTTP/HTTPS URLs - Base64 Data URIs (max ~60 MB) - Private storage buckets (S3 or Google Storage) - FTP addresses The uploaded asset is immediately available for transformation and delivery upon successful upload. Transform media files using transformation syntax in delivery URLs, which creates derived files accessible immediately without re-uploading the original.
upload_requestobjectrequiredThe file to upload and associated parameters.resource_typestringoptionalThe type of resource (image, video, raw, or auto).cloudinarymcp_visual_search_assets#Finds images in your asset library based on visual similarity or content
Returns a list of resources that are visually similar to a specified image. You can provide the source image for comparison in one of three ways:
- Provide a URL of an image
- Specify the asset ID of an existing image
- Provide a textual description1 param
Finds images in your asset library based on visual similarity or content Returns a list of resources that are visually similar to a specified image. You can provide the source image for comparison in one of three ways: - Provide a URL of an image - Specify the asset ID of an existing image - Provide a textual description
requeststringrequiredThe visual search parameters.