Skip to content

Commit 7451e16

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for CLOUDINARY_API_KEY; input type 'password' -> 'text' for CLOUDINARY_API_SECRET)
1 parent d6f767e commit 7451e16

1 file changed

Lines changed: 26 additions & 12 deletions

File tree

servers/com.cloudinary-mcp.json

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,30 @@
66
"description": "Upload, search, transform, and manage media assets in Cloudinary. Supports images and videos with powerful transformation capabilities.",
77
"icon": "https://avatars.githubusercontent.com/u/1460763?v=4",
88
"schema_version": "2.1",
9-
"categories": ["cloud", "developer-tools"],
10-
"tags": ["cloudinary", "media", "images", "video", "upload", "cdn", "transformation"],
11-
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+
],
1222
"transport": {
1323
"type": "stdio",
1424
"command": "npx",
15-
"args": ["-y", "--package", "@cloudinary/asset-management-mcp", "--", "mcp", "start"],
25+
"args": [
26+
"-y",
27+
"--package",
28+
"@cloudinary/asset-management-mcp",
29+
"--",
30+
"mcp",
31+
"start"
32+
],
1633
"env": {
1734
"CLOUDINARY_CLOUD_NAME": "${input:CLOUDINARY_CLOUD_NAME}",
1835
"CLOUDINARY_API_KEY": "${input:CLOUDINARY_API_KEY}",
@@ -38,7 +55,7 @@
3855
"id": "CLOUDINARY_API_KEY",
3956
"label": "Cloudinary API Key",
4057
"description": "API key for the Cloudinary API.",
41-
"type": "password",
58+
"type": "text",
4259
"required": true,
4360
"secret": true,
4461
"placeholder": "123456789012345",
@@ -52,7 +69,7 @@
5269
"id": "CLOUDINARY_API_SECRET",
5370
"label": "Cloudinary API Secret",
5471
"description": "API secret for the Cloudinary API. Keep this private.",
55-
"type": "password",
72+
"type": "text",
5673
"required": true,
5774
"secret": true,
5875
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -65,26 +82,23 @@
6582
]
6683
}
6784
},
68-
6985
"auth": {
7086
"type": "api_key",
7187
"instructions": "Get your Cloud Name, API Key, and API Secret from https://console.cloudinary.com/settings/api-keys"
7288
},
73-
7489
"contributor": {
7590
"name": "Cloudinary",
7691
"github": "cloudinary",
7792
"url": "https://cloudinary.com"
7893
},
79-
8094
"links": {
8195
"repository": "https://github.com/cloudinary/mcp-servers",
8296
"homepage": "https://cloudinary.com",
8397
"documentation": "https://cloudinary.com/documentation/cloudinary_llm_mcp"
8498
},
85-
86-
"platforms": ["all"],
87-
99+
"platforms": [
100+
"all"
101+
],
88102
"capabilities": {
89103
"tools": true,
90104
"resources": false,

0 commit comments

Comments
 (0)