https://github.com/cloudinary/asset-management-mcp
https://github.com/cloudinary/asset-management-mcp
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cloudinary/asset-management-mcp
- Owner: cloudinary
- License: mit
- Created: 2025-11-18T01:18:25.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-26T00:06:35.000Z (about 1 month ago)
- Last Synced: 2026-02-26T04:20:19.069Z (about 1 month ago)
- Language: TypeScript
- Size: 662 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cloudinary Asset Management MCP Server
## Summary
## Table of Contents
* [Cloudinary Asset Management MCP Server](#cloudinary-asset-management-mcp-server)
* [Installation](#installation)
* [Configuration](#configuration)
* [Authentication](#authentication)
* [Available Tools](#available-tools)
* [Custom Tools](#custom-tools)
* [Development](#development)
* [Building from Source](#building-from-source)
* [Contributions](#contributions)
## Installation
Claude Desktop
Install the MCP server as a Desktop Extension using the pre-built [`mcp-server.mcpb`](https://github.com/cloudinary/asset-management-mcp/releases/download/v0.7.0/mcp-server.mcpb) file:
Simply drag and drop the [`mcp-server.mcpb`](https://github.com/cloudinary/asset-management-mcp/releases/download/v0.7.0/mcp-server.mcpb) file onto Claude Desktop to install the extension.
The MCP bundle package includes the MCP server and all necessary configuration. Once installed, the server will be available without additional setup.
> [!NOTE]
> MCP bundles provide a streamlined way to package and distribute MCP servers. Learn more about [Desktop Extensions](https://www.anthropic.com/engineering/desktop-extensions).
Cursor
[](cursor://anysphere.cursor-deeplink/mcp/install?name=CloudinaryAssetMgmt&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyJAY2xvdWRpbmFyeS9hc3NldC1tYW5hZ2VtZW50LW1jcCIsInN0YXJ0IiwiLS1hcGkta2V5IiwiIiwiLS1hcGktc2VjcmV0IiwiIiwiLS1jbG91ZC1uYW1lIiwiIl19)
Or manually:
1. Open Cursor Settings
2. Select Tools and Integrations
3. Select New MCP Server
4. If the configuration file is empty paste the following JSON into the MCP Server Configuration:
```json
{
"command": "npx",
"args": [
"@cloudinary/asset-management-mcp",
"start",
"--api-key",
"",
"--api-secret",
"",
"--cloud-name",
""
]
}
```
Claude Code CLI
```bash
claude mcp add CloudinaryAssetMgmt -- npx -y @cloudinary/asset-management-mcp start --api-key --api-secret --cloud-name
```
Gemini
```bash
gemini mcp add CloudinaryAssetMgmt -- npx -y @cloudinary/asset-management-mcp start --api-key --api-secret --cloud-name
```
Windsurf
Refer to [Official Windsurf documentation](https://docs.windsurf.com/windsurf/cascade/mcp#adding-a-new-mcp-plugin) for latest information
1. Open Windsurf Settings
2. Select Cascade on left side menu
3. Click on `Manage MCPs`. (To Manage MCPs you should be signed in with a Windsurf Account)
4. Click on `View raw config` to open up the mcp configuration file.
5. If the configuration file is empty paste the full json
```bash
{
"command": "npx",
"args": [
"@cloudinary/asset-management-mcp",
"start",
"--api-key",
"",
"--api-secret",
"",
"--cloud-name",
""
]
}
```
VS Code
[](vscode://ms-vscode.vscode-mcp/install?name=CloudinaryAssetMgmt&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyJAY2xvdWRpbmFyeS9hc3NldC1tYW5hZ2VtZW50LW1jcCIsInN0YXJ0IiwiLS1hcGkta2V5IiwiIiwiLS1hcGktc2VjcmV0IiwiIiwiLS1jbG91ZC1uYW1lIiwiIl19)
Or manually:
Refer to [Official VS Code documentation](https://code.visualstudio.com/api/extension-guides/ai/mcp) for latest information
1. Open [Command Palette](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette)
1. Search and open `MCP: Open User Configuration`. This should open mcp.json file
2. If the configuration file is empty paste the full json
```bash
{
"command": "npx",
"args": [
"@cloudinary/asset-management-mcp",
"start",
"--api-key",
"",
"--api-secret",
"",
"--cloud-name",
""
]
}
```
Stdio installation via npm
To start the MCP server, run:
```bash
npx @cloudinary/asset-management-mcp start --api-key --api-secret --cloud-name
```
For a full list of server arguments, run:
```
npx @cloudinary/asset-management-mcp --help
```
## Configuration
### Environment Variables
The MCP server supports the following environment variables:
| Variable | Description | Required |
|----------|-------------|----------|
| `CLOUDINARY_CLOUD_NAME` | Your Cloudinary cloud name | Yes |
| `CLOUDINARY_API_KEY` | Your Cloudinary API key | Yes |
| `CLOUDINARY_API_SECRET` | Your Cloudinary API secret | Yes |
| `CLOUDINARY_URL` | Complete Cloudinary URL (alternative to individual vars) | No |
| `CLOUDINARY_COLLECT_HEADERS` | Collect API response headers (see below) | No |
### CLOUDINARY_URL Format
You can use a single `CLOUDINARY_URL` instead of individual variables:
```bash
CLOUDINARY_URL=cloudinary://API_KEY:API_SECRET@CLOUD_NAME
```
### Response Header Collection
You can configure the server to include Cloudinary API response headers (such as `x-request-id` and rate limit info) in tool output. This is useful for debugging and monitoring.
Set `CLOUDINARY_COLLECT_HEADERS` to control which headers are collected:
```bash
# Collect all response headers
CLOUDINARY_COLLECT_HEADERS=true
# Collect specific headers by exact name (comma-separated)
CLOUDINARY_COLLECT_HEADERS=x-request-id,x-featureratelimit-limit,x-featureratelimit-remaining
# Mix exact names, prefix matching, and regex matching
CLOUDINARY_COLLECT_HEADERS=x-request-id,prefix:x-featureratelimit-
```
#### Header matching specs
Each entry in the comma-separated list is matched against response header names:
| Format | Example | Behaviour |
|--------|---------|-----------|
| exact name | `x-request-id` | matches only `x-request-id` |
| `prefix:` | `prefix:x-featureratelimit-` | matches any header starting with `x-featureratelimit-` |
| `regex:` | `regex:ratelimit` | matches any header whose name contains `ratelimit` |
You can also set this via the `CLOUDINARY_URL` query parameter:
```bash
CLOUDINARY_URL=cloudinary://API_KEY:API_SECRET@CLOUD_NAME?collect_headers=true
```
When enabled, collected headers appear in an `_headers` field in the tool response. When not set, no headers are collected and responses are unchanged.
## Authentication
The MCP server uses your Cloudinary API key and secret for authentication:
```json
{
"env": {
"CLOUDINARY_CLOUD_NAME": "demo",
"CLOUDINARY_API_KEY": "123456789012345",
"CLOUDINARY_API_SECRET": "abcdefghijklmnopqrstuvwxyz12"
}
}
```
## Available Tools
The MCP server exposes Cloudinary's Asset Management API as tools. Use your AI application to discover and invoke the available tools for uploading, managing, searching, and transforming your media assets.
### Usage Examples
#### Example 1: Upload and Transform an Image
```yaml
1. Upload a local image: "Upload file:///Users/me/photo.jpg to Cloudinary as 'hero-image'"
2. Transform it: "Transform asset 'hero-image' with transformations 'c_fill,w_800,h_600/e_sharpen'"
3. Get details: "Show me details for asset with ID [asset-id]"
```
#### Example 2: Search and Organize Assets
```yaml
1. Search for images: "Find all images with tag 'product' uploaded in the last 7 days"
2. Create folder: "Create a new folder called 'summer-2024-products'"
3. List assets: "Show me all video assets in the 'marketing' folder"
```
#### Example 3: Generate Archive
```yaml
1. Get transformation docs: "Show me the Cloudinary transformation reference"
2. Apply transformations: "Transform 'banner' asset with 'c_scale,w_1200/f_auto,q_auto'"
3. Create archive: "Generate a ZIP archive of all images with tag 'export-ready'"
```
#### Example 4: Asset Management Workflow
```yaml
1. Upload multiple files: "Upload all images from folder /assets/new-products/"
2. Add tags: "Update asset [asset-id] and add tags 'featured,homepage'"
3. Get usage stats: "Show my Cloudinary account usage statistics"
```
## Custom Tools
This MCP server includes two powerful custom tools:
### `get-tx-reference`
Retrieves the complete Cloudinary transformation reference documentation.
**When to use:**
- Before creating or modifying transformations
- When user asks about image/video effects, resizing, cropping, filters
**Example:**
```sh
Use get-tx-reference to learn about available transformations
```
### `transform-asset`
Applies transformations to existing assets using Cloudinary's explicit API.
**Parameters:**
- `publicId` - The asset's public ID
- `transformations` - Transformation string (e.g., `c_fill,w_300,h_200`)
- `resourceType` - Type: `image`, `video`, or `raw` (default: `image`)
- `invalidate` - Invalidate CDN cache (default: `false`)
**Example:**
```sh
Transform asset "sample" with transformations "c_fill,w_500,h_500/e_sepia"
```
# Development
## Building from Source
### Prerequisites
- Node.js v20 or higher
- npm, pnpm, bun, or yarn
### Build Steps
```bash
# Clone the repository
git clone https://github.com/cloudinary/asset-management-mcp.git
cd asset-management-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Run locally
npm start
```
### Project Structure
```ini
asset-management-mcp/
├── src/
│ ├── hooks/ # SDK hooks (manual)
│ │ ├── cloudinaryAuthHook.ts # Auth & file:// handling
│ │ ├── customHeadersHook.ts # Inject custom request headers
│ │ ├── responseHeadersHook.ts # Collect response headers
│ │ ├── userAgentHook.ts # Build User-Agent string
│ │ └── registration.ts # Hook registration
│ ├── mcp-server/ # MCP server implementation
│ │ ├── server.ts # Main server (auto-generated)
│ │ ├── server.extensions.ts # Custom tools (manual)
│ │ └── tools/ # Generated tool wrappers
│ ├── funcs/ # API function implementations
│ └── models/ # Type definitions
├── .github/
│ └── workflows/ # CI/CD workflows
└── .speakeasy/ # Speakeasy configuration
```
## Contributions
While we value contributions to this MCP Server, the code is generated programmatically. Any manual changes to generated files will be overwritten on the next generation.
**What you can contribute:**
- ✅ Custom tools in `server.extensions.ts`
- ✅ Custom hooks in `src/hooks/`
- ✅ Documentation improvements
- ✅ Bug reports and feature requests
**Generated files (do not edit):**
- ❌ `src/mcp-server/server.ts`
- ❌ `src/mcp-server/tools/*.ts`
- ❌ `src/funcs/*.ts`
- ❌ `src/models/*.ts`
We look forward to hearing your feedback. Feel free to open a PR or issue with a proof of concept and we'll do our best to include it in a future release.
---
### MCP Server Created by [Speakeasy](https://www.speakeasy.com/?utm_source=asset-management-mcp&utm_campaign=mcp-typescript)