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_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Cloudinary CLIHeadless setup and direct function calls. Cloudinary MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Cloudinary MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Cloudinary.
Claude Code Cloudinary MCP setup for Claude Code. Cursor Cloudinary MCP setup for Cursor. Codex Cloudinary MCP setup for Codex. OpenAI Agents Cloudinary MCP setup for OpenAI Agents SDK. Claude Agent SDK Cloudinary MCP setup for Claude Agent SDK. Vercel AI SDK Cloudinary MCP setup for Vercel AI SDK. LangChain Cloudinary MCP setup for LangChain. LangGraph Cloudinary MCP setup for LangGraph. CrewAI Cloudinary MCP setup for CrewAI. MCP clients Cloudinary MCP setup for Generic MCP Clients.
Cloudinary CLI Matrix
Use these pages for direct Cloudinary CLI workflows in scripts, CI, cron, and agent wrappers.
CI Cloudinary CLI for CI. Cron Jobs Cloudinary CLI for cron jobs. Shell Scripts Cloudinary CLI for shell scripts. Headless Automation Cloudinary CLI for headless automation. Coding Agents Cloudinary CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |