Skip to content

Commit 6e5b7cf

Browse files
authored
feat: add Cloudinary MCP server definition (#32)
* 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 * fix: update server definition (input type 'password' -> 'text' for CLOUDINARY_API_KEY; input type 'password' -> 'text' for CLOUDINARY_API_SECRET) * 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 <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 3ed8dac commit 6e5b7cf

1 file changed

Lines changed: 108 additions & 0 deletions

File tree

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

0 commit comments

Comments
 (0)