Skip to content

Instantly share code, notes, and snippets.

@danielrosehill
Last active November 23, 2025 22:14
Show Gist options
  • Select an option

  • Save danielrosehill/06e0ce7549091ac1cb0d99065d7e4749 to your computer and use it in GitHub Desktop.

Select an option

Save danielrosehill/06e0ce7549091ac1cb0d99065d7e4749 to your computer and use it in GitHub Desktop.
Functioning code block for installing Cloudinary cloud mcp

MCP JSON Example

{
  "mcpServers": {
    "cloudinary-asset-mgmt": {
      "command": "npx",
      "args": [
        "-y", "--package", "@cloudinary/asset-management",
        "--",
        "mcp", "start",
        "--api-key", "123456789012345",
        "--api-secret", "aBcDeFgHiJkLmNoPqRsTuVwXyZ",
        "--cloud-name", "examplecloud"
      ]
    }
  }
}

As Bash command:

claude mcp add --transport stdio cloudinary-asset-mgmt --scope user \
  -- npx -y --package @cloudinary/asset-management -- mcp start \
  --api-key 123456789012345 --api-secret aBcDeFgHiJkLmNoPqRsTuVwXyZ --cloud-name examplecloud

Comments are disabled for this gist.