-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
94 lines (94 loc) · 2.92 KB
/
server.json
File metadata and controls
94 lines (94 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.cloudinary/asset-management-mcp",
"title": "Cloudinary Asset Management",
"description": "Upload, organize, search, and transform images, videos, and files with AI-powered tools.",
"repository": {
"url": "https://github.com/cloudinary/asset-management-mcp",
"source": "github"
},
"version": "0.8.1",
"packages": [
{
"registryType": "npm",
"identifier": "@cloudinary/asset-management-mcp",
"version": "0.8.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "CLOUDINARY_CLOUD_NAME",
"description": "Your Cloudinary cloud name. Find it in your Cloudinary Dashboard.",
"isRequired": true,
"isSecret": false
},
{
"name": "CLOUDINARY_API_KEY",
"description": "Your Cloudinary API key. Found in Dashboard > Settings > Access Keys.",
"isRequired": true,
"isSecret": true
},
{
"name": "CLOUDINARY_API_SECRET",
"description": "Your Cloudinary API secret. Found in Dashboard > Settings > Access Keys.",
"isRequired": true,
"isSecret": true
}
]
},
{
"registryType": "oci",
"identifier": "docker.io/cloudinary/asset-management-mcp:0.8.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "CLOUDINARY_CLOUD_NAME",
"description": "Your Cloudinary cloud name. Find it in your Cloudinary Dashboard.",
"isRequired": true,
"isSecret": false
},
{
"name": "CLOUDINARY_API_KEY",
"description": "Your Cloudinary API key. Found in Dashboard > Settings > Access Keys.",
"isRequired": true,
"isSecret": true
},
{
"name": "CLOUDINARY_API_SECRET",
"description": "Your Cloudinary API secret. Found in Dashboard > Settings > Access Keys.",
"isRequired": true,
"isSecret": true
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://asset-management.mcp.cloudinary.com/mcp",
"headers": [
{
"name": "cloudinary-cloud-name",
"description": "Your Cloudinary cloud name. Find it in your Cloudinary Dashboard.",
"isRequired": true,
"isSecret": false
},
{
"name": "cloudinary-api-key",
"description": "Your Cloudinary API key. Found in Dashboard > Settings > Access Keys.",
"isRequired": true,
"isSecret": true
},
{
"name": "cloudinary-api-secret",
"description": "Your Cloudinary API secret. Found in Dashboard > Settings > Access Keys.",
"isRequired": true,
"isSecret": true
}
]
}
]
}