Drop your image here

or click to browse

PNG, JPG, GIF up to 10MB

🔍 OpenGraph Tag Checker

Enter any URL to analyze its OpenGraph meta tags and preview how it will appear on social platforms

Perfect Social Media Image Sizes — What You'll Get

og-image.png — 1200×630px perfect for Facebook, Twitter, LinkedIn sharing
og-square.png — 1200×1200px optimized for Instagram, WhatsApp, Pinterest
favicon.ico — Multi-size ICO file for browser compatibility
icon.svg — Scalable SVG favicon for modern browsers
apple-touch-icon.png — 180×180px iOS home screen icon
android-chrome-*.png — Android app icons (192×192px, 512×512px)
manifest.webmanifest — PWA manifest for progressive web apps
implementation.html — Ready-to-use HTML template with meta tags

Why Use This Tool?

  • ✅ Free & Open Source: No watermarks, no sign-up, MIT-licensed
  • 🔒 Privacy First: Images processed in memory only — never stored
  • ⚡ Lightning Fast: Instant resizing and ZIP download
  • 📱 All Platforms: Facebook, Twitter, LinkedIn, Instagram, WhatsApp optimized
  • 🎯 Perfect Sizes: Pre-configured for optimal social media engagement
  • 🔧 Developer Ready: Includes HTML implementation and PWA manifest

Use hosted MCP or run it yourself

Start with KrytonLabs hosted processing, or point the same MCP runner at your own backend.

🤖 Use in Claude Code

Installs only a dependency-free MCP runner. No npm. Processing uses the KrytonLabs hosted backend with server-side rate limits.

curl -fsSL https://raw.githubusercontent.com/kmanan/opengraph-generator/main/scripts/install-mcp.sh | bash

🐳 Self-host with Docker

Run your own backend. Edit env vars to taste — see .env.example.

docker run -d --name opengraph -p 6736:6736 \
  -e PUBLIC_URL=https://og.yourdomain.com \
  ghcr.io/kmanan/opengraph:latest

Prefer a UI? Add the stack from docker-compose.yml via Portainer and fill in env vars on the form.

⚙️ Use MCP with your backend

Same MCP runner, but processing goes to your self-hosted backend.

curl -fsSL https://raw.githubusercontent.com/kmanan/opengraph-generator/main/scripts/install-mcp.sh | OPENGRAPH_BACKEND=http://localhost:6736 bash