Rendex Extension
This tutorial covers how to add the Rendex MCP Server as a goose extension to capture screenshots, generate PDFs, and render HTML to images from any webpage or raw HTML — useful for archiving UIs, generating invoices and reports, producing OG images, and giving goose a reliable "see the web" capability without spinning up a full browser automation stack.
Configuration
Quick Install
- goose Desktop
- goose CLI
Add a Remote Extension (Streaming HTTP) extension type with:
Endpoint URL
https://mcp.rendex.dev/mcp
Custom Request Header
Authorization: Bearer <YOUR_RENDEX_API_KEY>
- goose Desktop
- goose CLI
- Launch the installer
- Click
Yesto confirm the installation - Get your Rendex API key and paste it in
- Click
Add Extension - Click the button in the top-left to open the sidebar
- Navigate to the chat
- Run the
configurecommand:
goose configure
- Choose to add a
Remote Extension (Streamable HTTP).
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◆ What type of extension would you like to add?
│ ○ Built-in Extension
│ ○ Command-line Extension
│ ● Remote Extension (Streamable HTTP) (Connect to a remote extension via MCP Streamable HTTP)
└
- Give your extension a name.
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Remote Extension (Streamable HTTP)
│
◆ What would you like to call this extension?
│ Rendex
└
- Enter the Streamable HTTP endpoint URI.
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Remote Extension (Streamable HTTP)
│
◇ What would you like to call this extension?
│ Rendex
│
◆ What is the Streamable HTTP endpoint URI?
│ https://mcp.rendex.dev/mcp
└
- Enter the number of seconds goose should wait for actions to complete before timing out. Default is
300seconds.
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Remote Extension (Streamable HTTP)
│
◇ What would you like to call this extension?
│ Rendex
│
◇ What is the Streamable HTTP endpoint URI?
│ https://mcp.rendex.dev/mcp
│
◆ Please set the timeout for this tool (in secs):
│ 300
└
- Enter a description for this extension.
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Remote Extension (Streamable HTTP)
│
◇ What would you like to call this extension?
│ Rendex
│
◇ What is the Streamable HTTP endpoint URI?
│ https://mcp.rendex.dev/mcp
│
◇ Please set the timeout for this tool (in secs):
│ 300
│
◆ Enter a description for this extension:
│ Capture screenshots, generate PDFs, and render HTML to images via AI agents
└
- Add a custom header for this extension.
info
Obtain your Rendex API key and paste it in as the
Bearer token. Free tier includes 500 calls/month, no credit card required.┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Remote Extension (Streamable HTTP)
│
◇ What would you like to call this extension?
│ Rendex
│
◇ What is the Streamable HTTP endpoint URI?
│ https://mcp.rendex.dev/mcp
│
◇ Please set the timeout for this tool (in secs):
│ 300
│
◇ Enter a description for this extension:
│ Capture screenshots, generate PDFs, and render HTML to images via AI agents
│
◆ Would you like to add custom headers?
│ Yes
│
◇ Header name:
│ Authorization
│
◇ Header value:
│ Bearer rdx_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
│
◇ Add another header?
│ No
│
└ Added Rendex extension
Example Usage
Let's use the Rendex extension to generate an invoice PDF from raw HTML and archive a product page.
goose Prompt
1. Render this HTML as an A4 PDF with 1cm margins:
<!doctype html>
<html>
<body style="font-family: system-ui; padding: 40px;">
<h1>Invoice #0042</h1>
<p>Bill to: Acme Corp</p>
<table>
<tr><td>MCP server listing</td><td>$500.00</td></tr>
<tr><td>Total</td><td><b>$500.00</b></td></tr>
</table>
</body>
</html>
2. Then take a full-page screenshot of https://news.ycombinator.com in dark mode
3. Return both results so I can save them
goose Output
I'll generate the invoice PDF first, then capture the HN page.
[rendex_screenshot: format=pdf, pdfFormat=A4, pdfMargin={top: 1cm, ...}, html=<invoice markup>]
✓ PDF captured successfully (12,344 bytes)
width: 1280 height: 800 capturedAt: 2026-04-15T12:34:56Z
[rendex_screenshot: url=https://news.ycombinator.com, fullPage=true, darkMode=true]
✓ Screenshot captured (PNG, 847KB)
width: 1280 height: 4,321 waitStrategy: networkidle2
Both renders completed. You have:
1. Invoice PDF (A4, 12.3KB) — base64 in result 1
2. Dark-mode full-page screenshot of Hacker News (PNG, 847KB) — base64 in result 2
Pricing
Rendex is free to try — no credit card required for the free tier.
| Plan | Calls/Month | Rate limit |
|---|---|---|
| Free | 500 | 10/min |
| Starter | 10,000 | 60/min |
| Pro | 100,000 | 300/min |
| Enterprise | Custom | 1,000/min |
Get an API key at rendex.dev.
Links
- Website: rendex.dev
- GitHub: copperline-labs/rendex-mcp
- npm:
@copperline/rendex-mcp - Smithery: smithery.ai/server/copperline/rendex-mcp
- Official MCP Registry:
io.github.copperline-labs/rendex-mcp