Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.rog0x/image

NPM · @ROG0X/MCP-IMAGE-TOOLS · SCANNED AUG 3

Image metadata, favicon, OG image for AI agents

+22 this week 68 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability76
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 621 tokens (~124/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @rog0x/mcp-image-tools

# add to Claude Code
claude mcp add rog0x-image -- npx -y @rog0x/mcp-image-tools
# add to Codex CLI
codex mcp add rog0x-image -- npx -y @rog0x/mcp-image-tools
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rog0x-image": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@rog0x/mcp-image-tools"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add rog0x-image --command npx --arg -y --arg @rog0x/mcp-image-tools
# ~/.hermes/config.yaml
mcp_servers:
  rog0x-image:
    command: "npx"
    args: ["-y", "@rog0x/mcp-image-tools"]
// mcp.json
{
  "mcpServers": {
    "rog0x-image": {
      "command": "npx",
      "args": [
        "-y",
        "@rog0x/mcp-image-tools"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +47
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Malware scan: unverified → pass security
    • Tool coverage: 100 → unverified functional
    • Security disclosure: fail → unverified functional
    • MCP protocol: unverified → pass functional
    • Maintenance: unverified → pass functional
    • Stability: unverified → 0.20 functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Schema quality: unverified → excellent functional
    • Licence: MIT functional
  • 1 Aug 26 +16
    • Tool coverage: unverified → 100 functional
  • 31 Jul 26 −41
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 +22
    • Security disclosure: unverified → fail functional
    • Tool coverage: unverified → 100 functional
  • 28 Jul 26 −22
    • Security disclosure: fail → unverified functional
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@rog0x/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 5 exposed · ~621 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
extract_og_image ~54

Extract Open Graph image, Twitter card image, and Apple touch icon from any URL. Returns all social media preview images found on the page.

NameTypeReqDescription
urlstringyesURL of the web page to extract images from

No output schema declared.

No examples provided.

find_favicons ~66

Find all favicons for a website. Checks /favicon.ico, parses HTML link tags, and inspects manifest.json. Returns all found favicons with sizes and types.

NameTypeReqDescription
urlstringyesWebsite URL to find favicons for (e.g. https://example.com)

No output schema declared.

No examples provided.

generate_placeholder ~236

Generate placeholder image URLs via placehold.co. Supports custom size, colors, text, format, and font. Returns URL plus ready-to-use HTML and Markdown markup.

NameTypeReqDescription
backgroundColorstringBackground color hex without # (e.g. 'cccccc'). Default: cccccc
fontstringFont name (e.g. 'roboto', 'open-sans', 'montserrat')
fontSizenumberFont size in pixels
formatstringImage format: png, jpg, jpeg, gif, webp, svg. Default: png
heightnumberImage height in pixels (1-4000). Defaults to same as width.
sizesarrayGenerate multiple placeholders at once. If provided, width/height params are ignored.
textstringCustom text to display on the image. Default: WIDTHxHEIGHT
textColorstringText color hex without # (e.g. '333333'). Default: 333333
widthnumberyesImage width in pixels (1-4000)

No output schema declared.

No examples provided.

image_metadata ~52

Read image metadata from a URL via HTTP headers: content-type, file size, last-modified, etag, cache info. No image downloading required.

NameTypeReqDescription
urlstringyesDirect URL to an image file

No output schema declared.

No examples provided.

responsive_images ~213

Generate srcset and <picture> element HTML for responsive images. Given a base image URL, produces multiple size variants with proper HTML markup for responsive design.

NameTypeReqDescription
altstringAlt text for the image
baseUrlstringyesBase image URL that accepts width/format query parameters
classNamestringCSS class name to add to the element
formatsarrayImage formats for <picture> sources (default: ['webp', auto-detected original format])
loadingstringLoading strategy: 'lazy' or 'eager' (default: lazy)
sizesstringCSS sizes attribute (default: '(max-width: 768px) 100vw, (max-width: 1200px) 50vw, 33vw')
widthsarrayArray of widths to generate (default: [320, 640, 768, 1024, 1280, 1536, 1920])

No output schema declared.

No examples provided.