Skip to main content
Glama
felores

Cloudinary MCP Server

by felores

Cloudinary MCP サーバー

この MCP サーバーは、Claude Desktop および互換性のある MCP クライアントを介して Cloudinary に画像やビデオをアップロードするためのツールを提供します。

インストール

要件: Node.js

  1. nodejs.orgから Node.js (バージョン 18 以上) と npm をインストールします。

  2. インストールを確認します:

    node --version
    npm --version

npx を使用してインストールする (推奨)

  1. Claude 構成ディレクトリに移動します。

    • Windows: C:\Users\NAME\AppData\Roaming\Claude

    • macOS: ~/Library/Application Support/Claude/

    Claude Desktop アプリ内にも以下のディレクトリがあります: Claude Desktop > 設定 > 開発者 > 設定の編集

  2. MCP 設定ファイルに次の構成を追加します。

{
  "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"
      }
    }
  }
}
  1. Cloudinary コンソールから環境変数を Cloudinary 資格情報に置き換えてください。

開発者向けインストール

サーバーを変更したり開発に貢献したい場合は、次の手順に従ってください。

  1. リポジトリをクローンします。

git clone https://github.com/felores/cloudinary-mcp-server.git
cd cloudinary-mcp-server
  1. 依存関係をインストールしてビルドします。

npm install
npm run build

Related MCP server: cloudinary-mcp-server

セットアップ手順

  1. まず、Cloudinary アカウントがあることを確認し、 Cloudinary コンソールから資格情報を取得します。

    • クラウド名

    • APIキー

    • APIシークレット

  2. Claude/Cline MCP 設定ファイルにサーバー構成を追加します。

{
  "mcpServers": {
    "cloudinary": {
      "command": "node",
      "args": ["c:/path/to/cloudinary-mcp-server/dist/index.js"],
      "env": {
        "CLOUDINARY_CLOUD_NAME": "your_cloud_name",
        "CLOUDINARY_API_KEY": "your_api_key",
        "CLOUDINARY_API_SECRET": "your_api_secret"
      }
    }
  }
}

Claude デスクトップ アプリの場合は、OS の適切な場所にある構成ファイルを編集します。

  1. 依存関係をインストールしてサーバーを構築します。

npm install
npm run build

利用可能なツール

アップロード

Cloudinary に画像とビデオをアップロードします。

パラメータ:

  • file (必須): アップロードするファイル、URL、またはbase64データURIへのパス

  • resource_type (オプション): リソースの種類 ('image'、'video'、または 'raw')

  • public_id (オプション): アップロードされたアセットのカスタムパブリックID

  • overwrite (オプション):同じ公開IDを持つ既存のアセットを上書きするかどうか

  • tags (オプション): アップロードされたアセットに割り当てるタグの配列

Claude/Cline での使用例:

use_mcp_tool({
  server_name: "cloudinary",
  tool_name: "upload",
  arguments: {
    file: "path/to/image.jpg",
    resource_type: "image",
    public_id: "my-custom-id"
  }
});
Install Server
A
license - permissive license
B
quality
D
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/felores/cloudinary-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server