snaprender-mcp
SnapRender-Integrationen
Offizielle Integrationen für die SnapRender Screenshot API — erstellen Sie Screenshots jeder Website als PNG, JPEG, WebP oder PDF.
Remote-MCP-Server
SnapRender betreibt einen gehosteten MCP-Server — verbinden Sie sich von jedem MCP-Client aus ohne Installation:
https://app.snap-render.com/mcpTransport: Streamable HTTP (MCP-Spezifikation 2025-03-26)
Authentifizierung:
X-API-Key-Header oderAuthorization: Bearer-HeaderTools:
take_screenshot,check_screenshot_cache,get_usagePrompts:
screenshot_website,compare_devices
Claude Desktop (remote — empfohlen)
{
"mcpServers": {
"snaprender": {
"type": "streamable-http",
"url": "https://app.snap-render.com/mcp",
"headers": {
"Authorization": "Bearer sk_live_your_key_here"
}
}
}
}Jeder MCP-Client (curl)
# Initialize a session
curl -X POST https://app.snap-render.com/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "X-API-Key: sk_live_your_key_here" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'Der Server gibt einen Mcp-Session-Id-Header zurück — fügen Sie diesen in nachfolgende Anfragen ein, um die Sitzung wiederzuverwenden.
Smithery
Installieren Sie über Smithery für die automatische Einrichtung mit jedem MCP-Client.
Related MCP server: Renderly MCP
Lokaler MCP-Server (npm)
Wenn Sie die Ausführung lokal über den stdio-Transport bevorzugen:
{
"mcpServers": {
"snaprender": {
"command": "npx",
"args": ["-y", "snaprender-mcp"],
"env": {
"SNAPRENDER_API_KEY": "sk_live_your_key_here"
}
}
}
}Siehe mcp-server/ für die vollständige Dokumentation.
Remote vs. Lokal
Remote (gehostet) | Lokal ( | |
Installation | Keine — nur eine HTTPS-URL | Erfordert Node.js + npx |
Transport | Streamable HTTP | stdio |
Anwendungsfall | Jeder MCP-Client, Smithery, Web-Apps | Claude Desktop, Claude Code |
MCP-Tools
take_screenshot
Erstellen Sie einen Screenshot einer beliebigen Website. Gibt das Bild als PNG, JPEG, WebP oder PDF zurück.
Parameter | Typ | Erforderlich | Beschreibung |
| string | Ja | Zu erfassende URL (http:// oder https://) |
| string | Nein |
|
| integer | Nein | Viewport-Breite 320-3840 (Standard: 1280) |
| integer | Nein | Viewport-Höhe 200-10000 (Standard: 800) |
| boolean | Nein | Gesamte scrollbare Seite erfassen |
| string | Nein |
|
| boolean | Nein | Dunkelmodus aktivieren |
| boolean | Nein | Werbung blockieren (Standard: true) |
| boolean | Nein | Cookie-Banner entfernen (Standard: true) |
| integer | Nein | JPEG/WebP-Qualität 1-100 (Standard: 90) |
| integer | Nein | Wartezeit in ms nach dem Laden der Seite (Standard: 0) |
| string | Nein | Kommagetrennte CSS-Selektoren zum Ausblenden |
| string | Nein | CSS-Selektor, der vor der Aufnahme angeklickt werden soll |
check_screenshot_cache
Prüfen Sie, ob ein Screenshot zwischengespeichert ist, ohne ihn neu zu erstellen. Zählt nicht gegen das Kontingent.
Parameter | Typ | Erforderlich | Beschreibung |
| string | Ja | Zu prüfende URL |
| string | Nein | Ausgabeformat (Standard: |
get_usage
Statistiken zur Screenshot-Nutzung abrufen.
Parameter | Typ | Erforderlich | Beschreibung |
| string | Nein | Monat im Format |
Integrationen für Agent-Frameworks
Framework | Verzeichnis | Beschreibung |
|
| |
|
| |
|
| |
|
| |
Separates Repo | Community-Node für n8n-Workflows (npm) |
Weitere Integrationen
Integration | Beschreibung | Einrichtungszeit |
Skill-Datei für OpenClaw KI-Agenten | 5 Min | |
OpenAPI-Spezifikation für benutzerdefinierte GPTs und OpenAI-Funktionsaufrufe | 5 Min | |
Vorgefertigte API-Anfragen für Postman | 1 Min |
SDKs
# Node.js
npm install snaprender
# Python
pip install snaprenderDirekte API
curl "https://app.snap-render.com/v1/screenshot?url=https://example.com" \
-H "X-API-Key: sk_live_your_key_here" \
-o screenshot.pngAPI-Schlüssel erhalten
Kostenlos anmelden unter snap-render.com — 200 Screenshots/Monat, keine Kreditkarte erforderlich.
Links
Remote-MCP-Server — Streamable HTTP-Endpunkt
MCP-Server auf npm (
npx snaprender-mcp)Node.js SDK (
npm install snaprender)Python SDK (
pip install snaprender)LangChain Python Tool (
pip install langchain-snaprender)LangChain.js Tool (
npm install langchain-snaprender)CrewAI Tool (
pip install crewai-snaprender)AutoGen Tool (
pip install autogen-ext-snaprender)n8n Community Node (
npm install n8n-nodes-snaprender)
Lizenz
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to capture website screenshots, automate browser interactions, and manage recurring screenshot configurations across 150+ global locations. It also supports AI-powered domain research and visual change monitoring for any web page.15MIT
- AlicenseAqualityCmaintenanceEnables AI agents to capture clean web screenshots and extract main article content from any web page, with automatic removal of cookie banners, ads, and boilerplate.2MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to capture any public URL as PNG, JPEG, or PDF via REST API or MCP tools, including screenshot capture, page description, and PDF rendering.20MIT
- AlicenseNot gradedqualityBmaintenanceEnables Claude Code to capture public web pages as images or PDFs via Latchshot's hosted API, and check rendering quota, without requiring a local browser.MIT
Related MCP Connectors
Screenshots, PDFs and Markdown from any URL or HTML for AI agents, via the SnapForge API
Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.
Screenshot, diff, audit and sitemap-capture any web page — 5 MCP tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/User0856/snaprender-integrations'
If you have feedback or need assistance with the MCP directory API, please join our Discord server