cloudinary-mcp-server

by yoavniran
Verified

find-assets

Search for existing files (assets) in Cloudinary with a query expression

Input Schema

NameRequiredDescriptionDefault
contextNoInclude context in the response
expressionNoSearch expression (e.g. 'tags=cat' or 'public_id:folder/*')
maxResultsNoMaximum number of results
nextCursorNoNext cursor for pagination
resourceTypeNoResource typeimage
tagsNoInclude tags in the response

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "context": { "description": "Include context in the response", "type": "boolean" }, "expression": { "description": "Search expression (e.g. 'tags=cat' or 'public_id:folder/*')", "type": "string" }, "maxResults": { "default": 10, "description": "Maximum number of results", "maximum": 500, "minimum": 1, "type": "number" }, "nextCursor": { "description": "Next cursor for pagination", "type": "string" }, "resourceType": { "default": "image", "description": "Resource type", "enum": [ "image", "video", "raw" ], "type": "string" }, "tags": { "description": "Include tags in the response", "type": "boolean" } }, "type": "object" }