MCP Hub
Back to servers

Junipr MCP Server

Enables AI assistants to capture webpage screenshots, generate PDFs from URLs or HTML, and extract rich metadata like Open Graph and JSON-LD data. It provides tools for web-to-image/PDF conversion and structured data extraction through the Junipr API.

glama
Updated
Mar 12, 2026

junipr-mcp

MCP server for Junipr APIs. Gives AI assistants the ability to capture screenshots, generate PDFs, and extract metadata from any webpage.

Tools

ToolDescription
screenshotCapture a screenshot of any webpage (PNG, JPEG, or WebP)
pdfGenerate a PDF from a URL or raw HTML
metadataExtract title, description, Open Graph, Twitter Cards, JSON-LD, and more

Setup

1. Get an API key

Sign up at junipr.io/pricing to get a free or paid API key.

2. Configure your MCP client

Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "junipr": {
      "command": "npx",
      "args": ["-y", "junipr-mcp"],
      "env": {
        "JUNIPR_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Code (CLI)

claude mcp add junipr -- npx -y junipr-mcp

Then set the environment variable:

export JUNIPR_API_KEY=your-api-key-here

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "junipr": {
      "command": "npx",
      "args": ["-y", "junipr-mcp"],
      "env": {
        "JUNIPR_API_KEY": "your-api-key-here"
      }
    }
  }
}

VS Code

Add to your VS Code settings (.vscode/mcp.json):

{
  "servers": {
    "junipr": {
      "command": "npx",
      "args": ["-y", "junipr-mcp"],
      "env": {
        "JUNIPR_API_KEY": "your-api-key-here"
      }
    }
  }
}

Windsurf

Add to your Windsurf MCP config (~/.codeium/windsurf/mcp_config.json):

{
  "mcpServers": {
    "junipr": {
      "command": "npx",
      "args": ["-y", "junipr-mcp"],
      "env": {
        "JUNIPR_API_KEY": "your-api-key-here"
      }
    }
  }
}

Tool Reference

screenshot

Capture a screenshot of any webpage.

ParameterTypeDefaultDescription
urlstring(required)URL to capture
formatpng | jpeg | webppngImage format
widthnumber1280Viewport width (320-3840)
heightnumber720Viewport height (200-2160)
fullPagebooleanfalseCapture full scrollable page
deviceTypedesktop | mobile | tabletdesktopDevice to emulate
blockCookieBannersbooleantrueHide cookie banners

pdf

Generate a PDF from a URL or HTML.

ParameterTypeDefaultDescription
urlstringURL to convert (provide url or html)
htmlstringRaw HTML to convert (provide url or html)
formatA4 | Letter | Legal | Tabloid | A3 | A5A4Paper format
landscapebooleanfalseLandscape orientation
printBackgroundbooleantrueInclude backgrounds
marginobject1cm each{ top, right, bottom, left } in CSS units
headerTemplatestringHeader HTML template
footerTemplatestringFooter HTML template
displayHeaderFooterbooleanfalseShow header/footer

metadata

Extract metadata from any webpage.

ParameterTypeDefaultDescription
urlstring(required)URL to extract metadata from

Returns title, description, Open Graph tags, Twitter Cards, JSON-LD structured data, favicon, canonical URL, language, and more.

License

MIT

Reviews

No reviews yet

Sign in to write a review