KosmoKrator

other

Cloudinary MCP, CLI, and Lua Integration for AI Agents

Cloudinary integration docs for AI agents: MCP gateway setup, Cloudinary CLI commands, Lua API reference, credentials, and function schemas.

6 functions 4 read 2 write Manual OAuth token auth

Cloudinary for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Machine-Readable Metadata
integration_slug
cloudinary
route_slug
cloudinary
package
cloudinary
auth_strategy
oauth2_manual_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Cloudinary MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Cloudinary.

Cloudinary CLI Matrix

Use these pages for direct Cloudinary CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
cloudinary.cloudinary_upload Write write 3 Upload an image to Cloudinary. Provide a file URL or base64 data URI, an optional public ID, and an optional folder path. Returns the uploaded asset details.
cloudinary.cloudinary_list_resources Read read 4 List media resources in your Cloudinary cloud. Filter by resource type (image, video, raw) and prefix. Supports pagination with max_results and next_cursor.
cloudinary.cloudinary_get_resource Read read 2 Get details of a specific Cloudinary resource by its type and public ID. Returns full asset metadata including dimensions, format, URL, tags, and derived resources.
cloudinary.cloudinary_delete_resource Write write 2 Delete a media resource from Cloudinary by its type and public ID. This permanently removes the asset and all its derived resources.
cloudinary.cloudinary_list_folders Read read 2 List all folders in your Cloudinary cloud. Returns folder names and paths with pagination support.
cloudinary.cloudinary_get_current_user Read read 0 Get the currently authenticated Cloudinary user profile. Returns user name, email, and account details. Use this to verify that credentials are working.