cloudinary-mcp-server

by yoavniran
Verified

get-asset

Get the details of a specific file (asset)

Input Schema

NameRequiredDescriptionDefault
assetIdNoThe Cloudinary asset ID
contextNoWhether to include contextual metadata. Default: false
metadataNoWhether to include structured metadata. Default: false
publicIdNoThe public ID of the asset
resourceTypeNoType of asset. Default: image
tagsNoWhether to include the list of tag names. Default: false
typeNoDelivery type. Default: upload

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assetId": { "description": "The Cloudinary asset ID", "type": "string" }, "context": { "description": "Whether to include contextual metadata. Default: false", "type": "boolean" }, "metadata": { "description": "Whether to include structured metadata. Default: false", "type": "boolean" }, "publicId": { "description": "The public ID of the asset", "type": "string" }, "resourceType": { "description": "Type of asset. Default: image", "enum": [ "image", "raw", "video" ], "type": "string" }, "tags": { "description": "Whether to include the list of tag names. Default: false", "type": "boolean" }, "type": { "description": "Delivery type. Default: upload", "enum": [ "upload", "private", "authenticated", "fetch", "facebook", "twitter", "gravatar", "youtube", "hulu", "vimeo", "animoto", "worldstarhiphop", "dailymotion", "list" ], "type": "string" } }, "type": "object" }