{"id":26648370,"url":"https://github.com/felores/cloudinary-mcp-server","last_synced_at":"2025-12-24T21:00:46.020Z","repository":{"id":271473872,"uuid":"913564273","full_name":"felores/cloudinary-mcp-server","owner":"felores","description":"MCP (Model Context Protocol) server for uploading media to Cloudinary using Claude Desktop","archived":false,"fork":false,"pushed_at":"2025-03-13T16:53:36.000Z","size":47,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T00:02:02.577Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/felores.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-07T23:43:22.000Z","updated_at":"2025-03-13T16:53:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"dab142aa-df30-453f-9d00-772fc1247385","html_url":"https://github.com/felores/cloudinary-mcp-server","commit_stats":null,"previous_names":["felores/cloudinary-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/felores/cloudinary-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felores%2Fcloudinary-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felores%2Fcloudinary-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felores%2Fcloudinary-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felores%2Fcloudinary-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/felores","download_url":"https://codeload.github.com/felores/cloudinary-mcp-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felores%2Fcloudinary-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28008450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-25T00:01:49.202Z","updated_at":"2025-12-24T21:00:45.964Z","avatar_url":"https://github.com/felores.png","language":"JavaScript","readme":"# Cloudinary MCP Server\n\nThis MCP server provides tools for uploading images and videos to Cloudinary through Claude Desktop and compatible MCP clients.\n\n\u003ca href=\"https://glama.ai/mcp/servers/zjiw1ry8ly\"\u003e\u003cimg width=\"380\" height=\"200\" src=\"https://glama.ai/mcp/servers/zjiw1ry8ly/badge\" alt=\"Cloudinary Server MCP server\" /\u003e\u003c/a\u003e\n\n## Installation\n\n### Requirements: Node.js\n\n1. Install Node.js (version 18 or higher) and npm from [nodejs.org](https://nodejs.org/)\n2. Verify installation:\n   ```bash\n   node --version\n   npm --version\n   ```\n\n### Install using npx (Recommended)\n1. Navigate to the Claude configuration directory:\n\n   - Windows: `C:\\Users\\NAME\\AppData\\Roaming\\Claude`\n   - macOS: `~/Library/Application Support/Claude/`\n   \n   You can also find these directories inside the Claude Desktop app: Claude Desktop \u003e Settings \u003e Developer \u003e Edit Config\n\n2. Add the following configuration to your MCP settings file:\n\n```json\n{\n  \"mcpServers\": {\n    \"cloudinary\": {\n      \"command\": \"npx\",\n      \"args\": [\"@felores/cloudinary-mcp-server@latest\"],\n      \"env\": {\n        \"CLOUDINARY_CLOUD_NAME\": \"your_cloud_name\",\n        \"CLOUDINARY_API_KEY\": \"your_api_key\",\n        \"CLOUDINARY_API_SECRET\": \"your_api_secret\"\n      }\n    }\n  }\n}\n```\n\n3. Make sure to replace the environment variables with your Cloudinary credentials from the [Cloudinary Console](https://console.cloudinary.com/settings/api-keys).\n\n### Developer Installation\nIf you want to modify the server or contribute to development:\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/felores/cloudinary-mcp-server.git\ncd cloudinary-mcp-server\n```\n\n2. Install dependencies and build:\n```bash\nnpm install\nnpm run build\n```\n\n## Setup Instructions\n\n1. First, ensure you have a Cloudinary account and get your credentials from the [Cloudinary Console](https://console.cloudinary.com/settings/api-keys):\n   - Cloud Name\n   - API Key\n   - API Secret\n\n2. Add the server configuration to your Claude/Cline MCP settings file:\n\n```json\n{\n  \"mcpServers\": {\n    \"cloudinary\": {\n      \"command\": \"node\",\n      \"args\": [\"c:/path/to/cloudinary-mcp-server/dist/index.js\"],\n      \"env\": {\n        \"CLOUDINARY_CLOUD_NAME\": \"your_cloud_name\",\n        \"CLOUDINARY_API_KEY\": \"your_api_key\",\n        \"CLOUDINARY_API_SECRET\": \"your_api_secret\"\n      }\n    }\n  }\n}\n```\n\nFor Claude desktop app, edit the configuration file at the appropriate location for your OS.\n\n3. Install dependencies and build the server:\n```bash\nnpm install\nnpm run build\n```\n\n## Available Tools\n\n### upload\n\nUpload images and videos to Cloudinary.\n\nParameters:\n- `file` (required): Path to file, URL, or base64 data URI to upload\n- `resource_type` (optional): Type of resource ('image', 'video', or 'raw')\n- `public_id` (optional): Custom public ID for the uploaded asset\n- `overwrite` (optional): Whether to overwrite existing assets with the same public ID\n- `tags` (optional): Array of tags to assign to the uploaded asset\n\nExample usage in Claude/Cline:\n```typescript\nuse_mcp_tool({\n  server_name: \"cloudinary\",\n  tool_name: \"upload\",\n  arguments: {\n    file: \"path/to/image.jpg\",\n    resource_type: \"image\",\n    public_id: \"my-custom-id\"\n  }\n});\n","funding_links":[],"categories":["Community Servers","Cloud Platforms","Image and Video Generation","Mcp Server Directories \u0026 Lists","Table of Contents","🌐 Web Development","🗂️ Extensions by Category"],"sub_categories":["How to Submit","Cloud Storage","🎨 Media Creation"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelores%2Fcloudinary-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffelores%2Fcloudinary-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelores%2Fcloudinary-mcp-server/lists"}