Skip to content

Cline

Image CDN for Cline

Wire up AuraImage from one JSON file — or from the cline mcp wizard, if you would rather not touch it.

$0 forever 20 GB bandwidth 3 GB storage hard stop at quota — never a surprise bill. Compare plans

Add AuraImage to Cline

Cline is UI-first. In the VS Code extension you reach this config through a panel, not a file:

  1. Open the Cline panel and click the MCP Servers icon.
  2. Choose Configure, then Configure MCP Servers.
  3. Paste the JSON below.

The Cline CLI reads ~/.cline/mcp.json; the VS Code extension keeps the same JSON in cline_mcp_settings.json, which you open from the Cline panel: MCP Servers icon → Configure → Configure MCP Servers. Cline does not document environment-variable expansion in this JSON, so leave the value blank and put AURA_SECRET_KEY in the environment of whichever process you start, editor or CLI.

~/.cline/mcp.json
{
  "mcpServers": {
    "auraimage": {
      "command": "npx",
      "args": ["-y", "@auraimage/mcp-server@latest"],
      "env": {
        "AURA_SECRET_KEY": ""
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Or from the terminal

bash
cline mcp

Verified against the vendor docs on 2026-08-09.

Optimize images with Cline

Each prompt is paired with the MCP tool it fires.

  • Audit this project for image LCP problems — report only, do not change anything yet.audit_lcp
  • Migrate everything under assets/ to AuraImage, and show me the diff before you write it.migrate_assets
  • Write alt text for the images in this folder, following the tone I set in .clinerules/.generate_alt
  • Swap this <img> for a responsive AuraImage tag and leave the original commented out.generate_responsive_tag
  • Show me thumbnail crops of every image in this folder — walk me through them one at a time so I can approve each call.smart_crop_preview

Prompt

Migrate everything under assets/ to AuraImage, and show me the diff before you write it.migrate_assets

Before

tsx
<img src="/hero.jpg" alt="" />

After Cline edits it

tsx
<AuraImage
  src='my-app/hero'
  alt='Golden Gate Bridge at sunset'
  width={1200}
  height={800}
/>

A Cloudinary alternative your agent can wire up itself

CapabilityCloudinary / ImgixAuraImage with Cline
Pricing modelMetered per GB and per transformFlat monthly price
EgressBilled$0
AVIFOpt-in configurationServed by default
BlurHash placeholdersBuild it yourselfBundled
ComponentSDK importLands in your repo, yours to edit
InstallManual wiringOne MCP config, then a prompt

Teach Cline your image conventions

Cline reads a .clinerules/ directory of .md and .txt files at the repo root, so image conventions can live in their own file instead of one long document.

Path.clinerules/

Verified against the vendor docs on 2026-08-09.

Questions, answered

The things developers ask before they ship. If something is missing, just email us.

Install it in your side project. Pay when you ship.

$0 forever 20 GB bandwidth 3 GB storage hard stop at quota — never a surprise bill. Compare plans