Skip to content
BEAD

Open Graph Tag Generator

Build Open Graph and Twitter Card meta tags from a simple form, with a live share preview.

Facebook / LinkedIn preview
b-e-a-d.com
BEAD — Browser Emergency Assistance Desk
Tiny tools for browser emergencies. Free, fast, no signup.
Tags
<meta property="og:title" content="BEAD — Browser Emergency Assistance Desk" />
<meta property="og:description" content="Tiny tools for browser emergencies. Free, fast, no signup." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://b-e-a-d.com" />
<meta property="og:image" content="https://b-e-a-d.com/opengraph-image" />
<meta property="og:site_name" content="BEAD" />
<meta property="og:locale" content="en_US" />

<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="BEAD — Browser Emergency Assistance Desk" />
<meta name="twitter:description" content="Tiny tools for browser emergencies. Free, fast, no signup." />
<meta name="twitter:image" content="https://b-e-a-d.com/opengraph-image" />
</>Use this tool programmaticallycurl · JavaScript · MCP

Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.

curl
curl https://api.b-e-a-d.com/tools/og-tag-generator/run \
  -H "Content-Type: application/json" \
  -d '{
  "title": "a",
  "description": "a",
  "ogType": "website",
  "twitterCard": "summary_large_image",
  "locale": "en_US"
}'
JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/og-tag-generator/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "title": "a",
  "description": "a",
  "ogType": "website",
  "twitterCard": "summary_large_image",
  "locale": "en_US"
}),
});
const data = await res.json();
console.log(data.result);
MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
  "mcpServers": {
    "bead": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
    }
  }
}

# Then ask Claude to call:
mcp__bead__bead_og_tag_generator

Full reference: developer docs · OpenAPI spec

About this tool

Open Graph (OG) tags control how a link looks when shared on Facebook, LinkedIn, iMessage, Slack, Discord, and most other apps. Twitter / X uses its own twitter: tags but happily falls back to OG when its own are missing — this tool emits both.

Recommended image size: 1200 × 630(1.91:1). Keep the file under ~1 MB so scrapers don't time out.

You might also like