cloudinary-mcp-server
Servidor MCP de Cloudinary
Un servidor de Protocolo de Contexto de Modelo que expone los métodos de la API de Carga y Administración de Cloudinary como herramientas para los asistentes de IA. Esta integración permite que los sistemas de IA activen e interactúen con su nube de Cloudinary.
Cómo funciona
El servidor MCP:
Realiza llamadas en su nombre a la API de Cloudinary
Permite la carga de activos a Cloudinary
Permite la gestión de activos en su nube Cloudinary
Se basa en la API de Cloudinary para realizar estas acciones. No todos los métodos y parámetros son compatibles. Se añadirán más con el tiempo.
Abra un problema con una solicitud de un método específico si lo necesita.
Related MCP server: Twilio MCP Server
Beneficios
Convierta sus acciones en la nube de Cloudinary en herramientas invocables para asistentes de IA
Convierta sus activos de Cloudinary en datos para asistentes de IA
Uso con Claude Desktop
Prerrequisitos
NodeJS
Cliente MCP (como la aplicación de escritorio Claude)
Cree y copie la clave/secreto de API de Cloudinary en: API KEYS
Instalación
Para usar este servidor con la aplicación Claude Desktop, agregue la siguiente configuración a la sección "mcpServers" de su claude_desktop_config.json :
{
"mcpServers": {
"cloudinary-mcp-server": {
"command": "npx",
"args": ["-y", "cloudinary-mcp-server"],
"env": {
"CLOUDINARY_CLOUD_NAME": "<cloud name>",
"CLOUDINARY_API_KEY": "<api-key>",
"CLOUDINARY_API_SECRET": "<api-secret>"
}
}
}
}CLOUDINARY_CLOUD_NAME- el nombre de tu nubeCLOUDINARY_API_KEY: La clave API para tu nubeCLOUDINARY_API_SECRET: El secreto de la API para tu nube
Herramientas
Las siguientes herramientas están disponibles:
subir
Descripción: Subir un archivo (activo) a Cloudinary
Parámetros:
source: URL, ruta de archivo, contenido base64 o datos binarios para cargarfolder: Ruta de carpeta opcional en CloudinarypublicId: ID público opcional para el activo cargadoresourceType: Tipo de recurso a cargar (imagen, video, sin procesar, automático)tags: Lista separada por comas de etiquetas para asignar al activo
eliminar activo
Descripción: Eliminar un archivo (activo) de Cloudinary
Parámetros:
publicId: El ID público del activo que se eliminaráassetId: El ID del activo que se eliminará
obtener activo
Descripción: Obtenga los detalles de un archivo específico (activo)
Parámetros:
assetId: El ID del activo de CloudinarypublicId: El ID público del activoresourceType: Tipo de activo (imagen, sin procesar, video)type: Tipo de entrega (carga, privada, autenticada, etc.)tags: si se debe incluir la lista de nombres de etiquetascontext: si se deben incluir metadatos contextualesmetadata: si se deben incluir metadatos estructurados
encontrar activos
Descripción: Busque archivos existentes (activos) en Cloudinary con una expresión de consulta
Parámetros:
expression: expresión de búsqueda (por ejemplo, 'tags=cat' o 'public_id:folder/*')resourceType: Tipo de recurso (imagen, vídeo, sin procesar)maxResults: Número máximo de resultados (1-500)nextCursor: Siguiente cursor para paginacióntags: Incluir etiquetas en la respuestacontext: Incluir contexto en la respuesta
obtener-uso
Descripción: Obtenga un informe sobre el estado de uso del entorno de su producto, incluido el almacenamiento, los créditos, el ancho de banda, las solicitudes, la cantidad de recursos y el uso de complementos.
Parámetros:
date: Opcional. La fecha del informe de uso en formato aaaa-mm-dd. Debe estar dentro de los últimos 3 meses. Predeterminado: la fecha actual.
Available Tools
5 toolsdelete-assetB
Delete a file (asset) from Cloudinary
| Name | Required | Description | Default |
|---|---|---|---|
| publicId | No | The public ID of the asset to delete | |
| assetId | No | The asset ID of the asset to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('Delete') but fails to add context beyond that, such as whether the deletion is permanent, requires specific permissions, has rate limits, or what the response looks like. This leaves significant gaps for a destructive operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste, front-loading the key action and resource. It is appropriately sized for the tool's complexity, making it easy to parse without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's destructive nature, lack of annotations, and no output schema, the description is incomplete. It does not address critical aspects like confirmation of deletion, error handling, or return values, leaving the agent with insufficient information for safe and effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with both parameters ('publicId' and 'assetId') documented in the schema. The description does not add any meaning beyond the schema, such as explaining the difference between these IDs or usage scenarios. Baseline 3 is appropriate since the schema handles parameter documentation adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Delete') and resource ('a file (asset) from Cloudinary'), distinguishing it from sibling tools like 'find-assets', 'get-asset', 'get-usage', and 'upload' which perform different operations. It precisely communicates the tool's function without redundancy.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as whether it's for permanent deletion, when to choose 'publicId' vs 'assetId', or if there are prerequisites like authentication. It lacks context on exclusions or comparisons with siblings, offering only the basic purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find-assetsC
Search for existing files (assets) in Cloudinary with a query expression
| Name | Required | Description | Default |
|---|---|---|---|
| expression | No | Search expression (e.g. 'tags=cat' or 'public_id:folder/*') | |
| resourceType | No | Resource type | image |
| maxResults | No | Maximum number of results | |
| nextCursor | No | Next cursor for pagination | |
| tags | No | Include tags in the response | |
| context | No | Include context in the response |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions searching with a query expression but doesn't describe what the tool returns (e.g., list of assets, metadata), pagination behavior (implied by 'nextCursor' parameter but not explained), rate limits, authentication needs, or error conditions. This is inadequate for a search tool with 6 parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that immediately conveys the core functionality. It's front-loaded with the essential action ('search for existing files') and includes the key constraint ('with a query expression'). There's no wasted verbiage or unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 6 parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain what the tool returns, how results are structured, pagination mechanics (despite a 'nextCursor' parameter), or error handling. The agent would lack sufficient context to use this tool effectively beyond basic invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 6 parameters. The description adds no parameter-specific information beyond mentioning 'query expression' (which aligns with the 'expression' parameter). This meets the baseline of 3 since the schema does the heavy lifting, but the description doesn't enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('search') and resource ('existing files (assets) in Cloudinary'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'get-asset' (which likely retrieves a specific asset) or 'upload' (which creates new assets), missing full sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to prefer 'find-assets' over 'get-asset' for retrieving specific assets or how it relates to 'delete-asset' or 'upload'. There's no context about prerequisites or typical use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-assetC
Get the details of a specific file (asset)
| Name | Required | Description | Default |
|---|---|---|---|
| assetId | No | The Cloudinary asset ID | |
| publicId | No | The public ID of the asset | |
| resourceType | No | Type of asset. Default: image | |
| type | No | Delivery type. Default: upload | |
| tags | No | Whether to include the list of tag names. Default: false | |
| context | No | Whether to include contextual metadata. Default: false | |
| metadata | No | Whether to include structured metadata. Default: false |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a read operation ('Get'), implying it's non-destructive, but doesn't cover critical aspects like authentication requirements, rate limits, error handling, or the format of returned details. For a tool with 7 parameters and no output schema, this leaves significant gaps in understanding how it behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. It directly states what the tool does ('Get the details of a specific file (asset)'), making it easy to parse and understand quickly, with zero wasted information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (7 parameters, no annotations, no output schema), the description is insufficiently complete. It doesn't explain what 'details' include, how results are structured, or behavioral traits like error cases. For a retrieval tool with multiple optional parameters, more context is needed to guide effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, meaning all parameters are documented in the input schema itself. The description adds no additional meaning about parameters beyond implying it retrieves 'details' of an asset. Since the schema does the heavy lifting, the baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Get') and resource ('details of a specific file (asset)'), making the purpose evident. However, it doesn't explicitly differentiate from sibling tools like 'find-assets' (which likely lists multiple assets) or 'delete-asset' (which removes assets), leaving some ambiguity about when to choose this specific retrieval tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an asset ID), compare it to 'find-assets' for searching multiple assets, or specify scenarios where this detailed retrieval is preferred over other operations like 'upload' or 'delete-asset'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-usageC
Get a report on the status of your product environment usage, including storage, credits, bandwidth, requests, number of resources, and add-on usage
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | The date for the usage report. Must be within the last 3 months and specified in the format: yyyy-mm-dd. Default: the current date |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the report includes various metrics but fails to specify critical traits like whether this is a read-only operation, if it requires authentication, rate limits, or how data is formatted. The description adds minimal context beyond the basic purpose, leaving gaps in understanding the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the main purpose and lists key metrics without unnecessary words. It could be slightly improved by structuring usage guidelines, but it earns its place by being clear and direct, with no wasted information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (reporting multiple metrics) and lack of annotations or output schema, the description is incomplete. It should explain the report's format, whether it's aggregated or detailed, and any behavioral aspects like permissions or data freshness. The description only covers what the tool does, not how it behaves or what it returns, leaving significant gaps for an agent to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with a well-described 'date' parameter, so the baseline is 3. The description does not add any parameter-specific details beyond what the schema provides, such as explaining why the date range is limited to the last 3 months or how the default current date affects the report. It compensates slightly by implying the report covers multiple metrics, but this is not parameter-related.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('report on the status of your product environment usage'), listing key metrics like storage, credits, and bandwidth. It distinguishes itself from siblings like 'delete-asset' or 'upload' by focusing on reporting rather than asset management, though it doesn't explicitly differentiate from other potential reporting tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It lacks context about prerequisites, frequency, or scenarios where this report is needed, such as monitoring limits or billing. With siblings like 'find-assets' that might overlap in data retrieval, no explicit distinctions are made.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
uploadC
Upload a file (asset) to Cloudinary
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | The source media to upload (URL, file path, base64 content, or binary data) | |
| folder | No | Optional folder path in Cloudinary | |
| publicId | No | Optional public ID for the uploaded asset | |
| resourceType | No | Type of resource to upload | auto |
| tags | No | A string containing Comma-separated list of tags to assign to the asset |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure but offers minimal insight. It states the tool uploads a file but doesn't cover critical traits like authentication requirements, rate limits, error handling, or what happens on success (e.g., returns a URL or ID). For a mutation tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary details. Every word earns its place by clearly conveying the tool's function, making it highly concise and well-structured for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a mutation operation with 5 parameters) and lack of annotations and output schema, the description is incomplete. It doesn't address behavioral aspects like side effects, return values, or error conditions, leaving the agent with insufficient context to use the tool effectively beyond basic purpose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description adds no parameter-specific information beyond implying 'source' is required, which is already clear from the schema. This meets the baseline of 3, as the description doesn't compensate but the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('upload') and resource ('a file (asset) to Cloudinary'), making the purpose immediately understandable. It distinguishes from siblings like delete-asset or find-assets by focusing on creation rather than deletion or retrieval. However, it doesn't explicitly contrast with get-asset or get-usage, which keeps it from a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., authentication needs), when not to use it (e.g., for updates vs. initial uploads), or how it differs from sibling tools like find-assets for locating existing files. This lack of contextual direction leaves the agent to infer usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
- First observed
delete-asset - First observed
find-assets - First observed
get-asset - First observed
get-usage - First observed
upload
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: delete, search, get details, get usage report, and upload. There is no overlap in functionality, making it easy for an agent to select the correct tool without confusion.
Four tools follow a consistent verb-noun pattern (delete-asset, find-assets, get-asset, get-usage), but 'upload' deviates by omitting the noun. This minor inconsistency slightly reduces predictability, though the naming remains readable and mostly uniform.
With 5 tools, this server is well-scoped for managing Cloudinary assets. Each tool earns its place by covering essential operations (upload, get, search, delete, usage reporting), avoiding bloat while providing complete core functionality.
The toolset covers core CRUD operations for assets (upload, get, delete, search) and includes usage reporting, offering good coverage for the Cloudinary domain. A minor gap is the lack of update or transformation tools for assets, but agents can work around this by re-uploading or using other methods.
Maintenance
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceThis server implements the Model Context Protocol to facilitate meaningful interaction and understanding development between humans and AI through structured tools and progressive interaction patterns.57-
- AlicenseNot gradedqualityFmaintenanceAn implementation of the Model Context Protocol (MCP) server that exposes Twilio APIs to AI assistants and tools, allowing them to interact with Twilio services through the MCP protocol.109MIT
- AlicenseAqualityDmaintenanceA Model Context Protocol server that enables AI assistants to make HTTP requests (GET, POST, PUT, DELETE) to external APIs through standardized MCP tools.42MIT

Contentfulofficial
AlicenseNot gradedqualityAmaintenanceA Model Context Protocol (MCP) server that provides AI assistants with comprehensive tools to interact with Contentful APIs.139 npm60MIT