From d6f767eb22667b374e1ced51576b094a279d9cb5 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:53:53 +0000 Subject: [PATCH 1/3] Add Cloudinary MCP server definition Official Cloudinary MCP server for media asset management. Upload, search, transform images and videos. Uses @cloudinary/asset-management-mcp npm package. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.cloudinary-mcp.json | 94 +++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 servers/com.cloudinary-mcp.json diff --git a/servers/com.cloudinary-mcp.json b/servers/com.cloudinary-mcp.json new file mode 100644 index 0000000..9d9a3de --- /dev/null +++ b/servers/com.cloudinary-mcp.json @@ -0,0 +1,94 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.cloudinary-mcp", + "name": "Cloudinary", + "alias": "cloudinary", + "description": "Upload, search, transform, and manage media assets in Cloudinary. Supports images and videos with powerful transformation capabilities.", + "icon": "https://avatars.githubusercontent.com/u/1460763?v=4", + "schema_version": "2.1", + "categories": ["cloud", "developer-tools"], + "tags": ["cloudinary", "media", "images", "video", "upload", "cdn", "transformation"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "--package", "@cloudinary/asset-management-mcp", "--", "mcp", "start"], + "env": { + "CLOUDINARY_CLOUD_NAME": "${input:CLOUDINARY_CLOUD_NAME}", + "CLOUDINARY_API_KEY": "${input:CLOUDINARY_API_KEY}", + "CLOUDINARY_API_SECRET": "${input:CLOUDINARY_API_SECRET}" + }, + "metadata": { + "inputs": [ + { + "id": "CLOUDINARY_CLOUD_NAME", + "label": "Cloudinary Cloud Name", + "description": "Your Cloudinary cloud name, found in the dashboard.", + "type": "text", + "required": true, + "secret": false, + "placeholder": "my-cloud-name", + "obtain": { + "url": "https://console.cloudinary.com/settings/api-keys", + "instructions": "1. Log in to console.cloudinary.com\n2. Go to Settings > API Keys\n3. Copy your Cloud Name", + "button_label": "Get Cloud Name" + } + }, + { + "id": "CLOUDINARY_API_KEY", + "label": "Cloudinary API Key", + "description": "API key for the Cloudinary API.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "123456789012345", + "obtain": { + "url": "https://console.cloudinary.com/settings/api-keys", + "instructions": "1. Log in to console.cloudinary.com\n2. Go to Settings > API Keys\n3. Copy your API Key", + "button_label": "Get API Key" + } + }, + { + "id": "CLOUDINARY_API_SECRET", + "label": "Cloudinary API Secret", + "description": "API secret for the Cloudinary API. Keep this private.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://console.cloudinary.com/settings/api-keys", + "instructions": "1. Log in to console.cloudinary.com\n2. Go to Settings > API Keys\n3. Click the eye icon to reveal and copy your API Secret", + "button_label": "Get API Secret" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Get your Cloud Name, API Key, and API Secret from https://console.cloudinary.com/settings/api-keys" + }, + + "contributor": { + "name": "Cloudinary", + "github": "cloudinary", + "url": "https://cloudinary.com" + }, + + "links": { + "repository": "https://github.com/cloudinary/mcp-servers", + "homepage": "https://cloudinary.com", + "documentation": "https://cloudinary.com/documentation/cloudinary_llm_mcp" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 7451e1673cf9b4fbd18d4edc387ace820b1e3af1 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:08:38 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for CLOUDINARY_API_KEY; input type 'password' -> 'text' for CLOUDINARY_API_SECRET) --- servers/com.cloudinary-mcp.json | 38 ++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/servers/com.cloudinary-mcp.json b/servers/com.cloudinary-mcp.json index 9d9a3de..56970fa 100644 --- a/servers/com.cloudinary-mcp.json +++ b/servers/com.cloudinary-mcp.json @@ -6,13 +6,30 @@ "description": "Upload, search, transform, and manage media assets in Cloudinary. Supports images and videos with powerful transformation capabilities.", "icon": "https://avatars.githubusercontent.com/u/1460763?v=4", "schema_version": "2.1", - "categories": ["cloud", "developer-tools"], - "tags": ["cloudinary", "media", "images", "video", "upload", "cdn", "transformation"], - + "categories": [ + "cloud", + "developer-tools" + ], + "tags": [ + "cloudinary", + "media", + "images", + "video", + "upload", + "cdn", + "transformation" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "--package", "@cloudinary/asset-management-mcp", "--", "mcp", "start"], + "args": [ + "-y", + "--package", + "@cloudinary/asset-management-mcp", + "--", + "mcp", + "start" + ], "env": { "CLOUDINARY_CLOUD_NAME": "${input:CLOUDINARY_CLOUD_NAME}", "CLOUDINARY_API_KEY": "${input:CLOUDINARY_API_KEY}", @@ -38,7 +55,7 @@ "id": "CLOUDINARY_API_KEY", "label": "Cloudinary API Key", "description": "API key for the Cloudinary API.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "123456789012345", @@ -52,7 +69,7 @@ "id": "CLOUDINARY_API_SECRET", "label": "Cloudinary API Secret", "description": "API secret for the Cloudinary API. Keep this private.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -65,26 +82,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Get your Cloud Name, API Key, and API Secret from https://console.cloudinary.com/settings/api-keys" }, - "contributor": { "name": "Cloudinary", "github": "cloudinary", "url": "https://cloudinary.com" }, - "links": { "repository": "https://github.com/cloudinary/mcp-servers", "homepage": "https://cloudinary.com", "documentation": "https://cloudinary.com/documentation/cloudinary_llm_mcp" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 9436bae1dd20a9778d0e1e26c03dd2b182583065 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:44:05 +0800 Subject: [PATCH 3/3] fix: rename server files with transport suffix - com.cloudinary-mcp.json -> com.cloudinary-mcp-npx.json (id: com.cloudinary-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik --- .../{com.cloudinary-mcp.json => com.cloudinary-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.cloudinary-mcp.json => com.cloudinary-mcp-npx.json} (98%) diff --git a/servers/com.cloudinary-mcp.json b/servers/com.cloudinary-mcp-npx.json similarity index 98% rename from servers/com.cloudinary-mcp.json rename to servers/com.cloudinary-mcp-npx.json index 56970fa..5006786 100644 --- a/servers/com.cloudinary-mcp.json +++ b/servers/com.cloudinary-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.cloudinary-mcp", - "name": "Cloudinary", + "id": "com.cloudinary-mcp-npx", + "name": "Cloudinary (npx)", "alias": "cloudinary", "description": "Upload, search, transform, and manage media assets in Cloudinary. Supports images and videos with powerful transformation capabilities.", "icon": "https://avatars.githubusercontent.com/u/1460763?v=4",