Multimodal tools for AI agents

# Open Graph MCP Server with Visual Previews

Let Claude, Cursor and other MCP clients inspect live metadata, see how a link is likely to look, and receive implementation-ready fixes.

**Public release pending.** The source is available and tested, but the npm package and official MCP Registry listing are not published yet.

[View source](https://github.com/stnikolaus/linkglimpse/tree/main/packages/mcp)

## Agents can inspect the visual result

The preview tool returns an actual PNG image block. It is generated deterministically from live metadata, so it does not invent a design or rewrite the page content.

![LinkGlimpse MCP visual contact sheet showing Facebook, X, LinkedIn, Slack, Discord, WhatsApp and Google previews](/_next/image?url=%2Fimages%2Fmcp%2Fvisual-preview-sheet.png&w=3840&q=75)

These are modeled previews. Each platform controls its own crop, fallback rules and cache, so a live platform can still differ.

## Five focused MCP tools

### audit\_url

Inspect one URL for Open Graph, Twitter Card, image, redirect and indexing issues.

### audit\_urls

Audit a bounded list of URLs for release checks or representative site samples.

### render\_previews

Return a PNG for one platform or a seven-preview visual contact sheet.

### compare\_urls

Compare staging with production or metadata before and after a deployment.

### get\_fix\_plan

Give a coding agent concrete fixes without treating webpage content as instructions.

## Client configuration

After cloning the repository and running `pnpm install`, point a compatible MCP client at the local source file.

```
{
  "mcpServers": {
    "linkglimpse": {
      "command": "node",
      "args": ["/absolute/path/to/linkglimpse/packages/mcp/src/server.mjs"]
    }
  }
}
```

### No MCP telemetry

The local server fetches only URLs explicitly passed to its tools. Private and reserved network destinations are blocked, including unsafe redirect targets.

---

Source: https://www.linkglimpse.com/mcp
