- Home
- MCP servers
- Cloudinary
Cloudinary
- javascript
9
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"felores-cloudinary-mcp-server": {
"command": "npx",
"args": [
"@felores/cloudinary-mcp-server@latest"
],
"env": {
"CLOUDINARY_API_KEY": "YOUR_API_KEY",
"CLOUDINARY_API_SECRET": "YOUR_API_SECRET",
"CLOUDINARY_CLOUD_NAME": "YOUR_CLOUD_NAME"
}
}
}
}You can upload images and videos to Cloudinary from Claude Desktop and compatible MCP clients using a dedicated MCP server. This setup lets you run a local MCP endpoint that handles file uploads to your Cloudinary account, streamlining asset management directly from your workflows.
How to use
Set up the MCP server locally and point your MCP client to it. You can run the server via npx for quick start or run it directly from your own Node installation if you prefer to customize or contribute.
How to install
Prerequisites you need before installing:
- Install Node.js version 18 or higher and npm from nodejs.org
- Verify installations with:
- node --version
- npm --version
Recommended setup flow using npx for a quick start.
{
"mcpServers": {
"cloudinary": {
"command": "npx",
"args": ["@felores/cloudinary-mcp-server@latest"],
"env": {
"CLOUDINARY_CLOUD_NAME": "your_cloud_name",
"CLOUDINARY_API_KEY": "your_api_key",
"CLOUDINARY_API_SECRET": "your_api_secret"
}
}
}
}
Additional setup notes
If you want to modify the server or contribute to development, you can build from source and run locally.
# Developer installation flow
git clone https://github.com/felores/cloudinary-mcp-server.git
cd cloudinary-mcp-server
npm install
npm run build
Available tools
upload
Uploads images or videos to Cloudinary. You can specify resource_type, public_id, overwrite, and tags to control how assets are stored and managed.