Provides five tools for working with images without downloading or processing them. You get metadata extraction via HTTP headers, favicon discovery across multiple sources (HTML links, manifest.json, and fallback routes), Open Graph and Twitter card image extraction for link previews, placeholder generation through the placehold.co API with customizable dimensions and colors, and responsive image markup generation with srcset and picture elements. Useful when you need to inspect what images a site uses, grab icons and preview images for card layouts, or generate boilerplate HTML for responsive designs. Metadata only, so it's fast and doesn't touch image data itself.
Public tool metadata for what this MCP can expose to an agent.
resizeDeterministic image resizing. Only downsizing is supported. Cost: 0.002 USDC7 paramsDeterministic image resizing. Only downsizing is supported. Cost: 0.002 USDC
urlstringwidthintegerformatstringWEBP · JPEG · PNGdefault: WEBPheightintegerqualityintegerimage_idstringcrop_to_aspectbooleanidentifyExtracts format, mode, dimensions, and EXIF metadata from an image. Cost: 0.001 USDC2 paramsExtracts format, mode, dimensions, and EXIF metadata from an image. Cost: 0.001 USDC
urlstringimage_idstringfeature-requestSubmit a feature request. Free but throttled to 1 request per agent per 24h. Cost: 0.000 USDC1 paramsSubmit a feature request. Free but throttled to 1 request per agent per 24h. Cost: 0.000 USDC
descriptionintegeruploadStages an image for processing. Returns an image_id valid for 1 hour. Cost: 0.001 USDC2 paramsStages an image for processing. Returns an image_id valid for 1 hour. Cost: 0.001 USDC
filestringbase64_datastringMCP server providing image analysis tools for AI agents. Metadata inspection only -- no image processing or manipulation.
Read image metadata from a URL using HTTP headers. Returns content-type, file size, last-modified, etag, and cache info without downloading the full image.
Find all favicons for any website. Checks /favicon.ico, parses HTML <link> tags, and inspects manifest.json. Returns all discovered favicons with sizes and types.
Extract Open Graph image, Twitter card image, and Apple touch icon from any URL. Useful for generating link previews.
Generate placeholder image URLs via the placehold.co API. Supports custom dimensions, colors, text, format, and font. Returns the URL plus ready-to-use HTML and Markdown markup. Can generate multiple sizes at once.
Generate srcset and <picture> element HTML for responsive images. Given a base image URL, produces multiple size variants with proper markup for responsive design, including multi-format <source> elements.
npm install
npm run build
Add to your Claude Desktop config:
{
"mcpServers": {
"image-tools": {
"command": "node",
"args": ["path/to/mcp-image-tools/dist/index.js"]
}
}
}
MIT