trackmcp
Back to directory
Bishop81

imagedimensions-mcp

View on GitHub

MCP server that audits images on any web page — natural vs rendered dimensions, oversized-image detection, and format breakdown. Powered by imagedimensions.com.

0 stars JavaScriptOthers Updated Aug 14, 2026

Documentation

imagedimensions-mcp

An MCP server that audits the images on any public web page —

natural vs. rendered dimensions, oversized-image detection, and format breakdown — so AI agents

(Claude, Cursor, Windsurf, etc.) can check image performance during development.

Powered by imagedimensions.com. The scan runs server-side, so **no

local browser or Chrome install is required.**

Install / run

jsonc
// Claude Desktop / any MCP client config
{
  "mcpServers": {
    "imagedimensions": {
      "command": "npx",
      "args": ["-y", "imagedimensions-mcp"]
    }
  }
}

Tool

`scan_image_dimensions`

ParamTypeDescription
`url`string (required)Public URL of the page to audit.
`oversizedThreshold`number (optional)Area-overshoot ratio to flag as oversized. Default `4` (≈2× per dimension).

Returns a text report plus structured content:

  • total / visible image counts and CSS-background count
  • modern-format share (WebP + AVIF)
  • format breakdown
  • the list of oversized images (natural → rendered, overshoot ratio, format, src)
  • a link to the full visual report on imagedimensions.com

Example agent uses: "Audit the images on https://example.com," "Which images on this page are

oversized and hurting LCP?", "What % of this site's images use modern formats?"

Why "oversized" matters

An image downloaded much larger than the box it renders into wastes bandwidth and slows Largest

Contentful Paint — the most common image-performance mistake on the web. See

the writeup.

Config

  • `IMAGEDIMENSIONS_API_BASE` — override the API base (default `https://imagedimensions.com`).

License

MIT

Frequently asked questions

What is imagedimensions-mcp?

imagedimensions-mcp is MCP server that audits images on any web page — natural vs rendered dimensions, oversized-image detection, and format breakdown. Powered by imagedimensions.com.

How do I install imagedimensions-mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is imagedimensions-mcp open source?

Yes — it is hosted on GitHub at https://github.com/Bishop81/imagedimensions-mcp.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP