Skip to content

Commit d91977d

Browse files
claudeits-mash
authored andcommitted
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
1 parent 0217546 commit d91977d

1 file changed

Lines changed: 94 additions & 0 deletions

File tree

servers/com.cloudinary-mcp.json

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.cloudinary-mcp",
4+
"name": "Cloudinary",
5+
"alias": "cloudinary",
6+
"description": "Upload, search, transform, and manage media assets in Cloudinary. Supports images and videos with powerful transformation capabilities.",
7+
"icon": "https://avatars.githubusercontent.com/u/1460763?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["cloud", "developer-tools"],
10+
"tags": ["cloudinary", "media", "images", "video", "upload", "cdn", "transformation"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "--package", "@cloudinary/asset-management-mcp", "--", "mcp", "start"],
16+
"env": {
17+
"CLOUDINARY_CLOUD_NAME": "${input:CLOUDINARY_CLOUD_NAME}",
18+
"CLOUDINARY_API_KEY": "${input:CLOUDINARY_API_KEY}",
19+
"CLOUDINARY_API_SECRET": "${input:CLOUDINARY_API_SECRET}"
20+
},
21+
"metadata": {
22+
"inputs": [
23+
{
24+
"id": "CLOUDINARY_CLOUD_NAME",
25+
"label": "Cloudinary Cloud Name",
26+
"description": "Your Cloudinary cloud name, found in the dashboard.",
27+
"type": "text",
28+
"required": true,
29+
"secret": false,
30+
"placeholder": "my-cloud-name",
31+
"obtain": {
32+
"url": "https://console.cloudinary.com/settings/api-keys",
33+
"instructions": "1. Log in to console.cloudinary.com\n2. Go to Settings > API Keys\n3. Copy your Cloud Name",
34+
"button_label": "Get Cloud Name"
35+
}
36+
},
37+
{
38+
"id": "CLOUDINARY_API_KEY",
39+
"label": "Cloudinary API Key",
40+
"description": "API key for the Cloudinary API.",
41+
"type": "password",
42+
"required": true,
43+
"secret": true,
44+
"placeholder": "123456789012345",
45+
"obtain": {
46+
"url": "https://console.cloudinary.com/settings/api-keys",
47+
"instructions": "1. Log in to console.cloudinary.com\n2. Go to Settings > API Keys\n3. Copy your API Key",
48+
"button_label": "Get API Key"
49+
}
50+
},
51+
{
52+
"id": "CLOUDINARY_API_SECRET",
53+
"label": "Cloudinary API Secret",
54+
"description": "API secret for the Cloudinary API. Keep this private.",
55+
"type": "password",
56+
"required": true,
57+
"secret": true,
58+
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
59+
"obtain": {
60+
"url": "https://console.cloudinary.com/settings/api-keys",
61+
"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",
62+
"button_label": "Get API Secret"
63+
}
64+
}
65+
]
66+
}
67+
},
68+
69+
"auth": {
70+
"type": "api_key",
71+
"instructions": "Get your Cloud Name, API Key, and API Secret from https://console.cloudinary.com/settings/api-keys"
72+
},
73+
74+
"contributor": {
75+
"name": "Cloudinary",
76+
"github": "cloudinary",
77+
"url": "https://cloudinary.com"
78+
},
79+
80+
"links": {
81+
"repository": "https://github.com/cloudinary/mcp-servers",
82+
"homepage": "https://cloudinary.com",
83+
"documentation": "https://cloudinary.com/documentation/cloudinary_llm_mcp"
84+
},
85+
86+
"platforms": ["all"],
87+
88+
"capabilities": {
89+
"tools": true,
90+
"resources": false,
91+
"prompts": false,
92+
"read_only_mode": false
93+
}
94+
}

0 commit comments

Comments
 (0)