Skip to main content
Glama

SnapRender 통합

npm MCP npm SDK PyPI SDK License: MIT

SnapRender 스크린샷 API를 위한 공식 통합 — 모든 웹사이트의 스크린샷을 PNG, JPEG, WebP 또는 PDF로 캡처합니다.

원격 MCP 서버

SnapRender는 호스팅된 MCP 서버를 운영합니다. 별도의 설치 없이 모든 MCP 클라이언트에서 연결할 수 있습니다:

https://app.snap-render.com/mcp
  • 전송: Streamable HTTP (MCP 사양 2025-03-26)

  • 인증: X-API-Key 헤더 또는 Authorization: Bearer 헤더

  • 도구: take_screenshot, check_screenshot_cache, get_usage

  • 프롬프트: screenshot_website, compare_devices

Claude Desktop (원격 — 권장)

{
  "mcpServers": {
    "snaprender": {
      "type": "streamable-http",
      "url": "https://app.snap-render.com/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_your_key_here"
      }
    }
  }
}

모든 MCP 클라이언트 (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"}}}'

서버는 Mcp-Session-Id 헤더를 반환합니다. 세션을 재사용하려면 후속 요청에 이 헤더를 포함하세요.

Smithery

모든 MCP 클라이언트에서 자동 설정을 위해 Smithery를 통해 설치하세요.

Related MCP server: Renderly MCP

로컬 MCP 서버 (npm)

stdio 전송을 통해 로컬에서 실행하려는 경우:

{
  "mcpServers": {
    "snaprender": {
      "command": "npx",
      "args": ["-y", "snaprender-mcp"],
      "env": {
        "SNAPRENDER_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

전체 문서는 mcp-server/를 참조하세요.

원격 vs 로컬

원격 (호스팅)

로컬 (npx)

설치

없음 — HTTPS URL만 필요

Node.js + npx 필요

전송

Streamable HTTP

stdio

사용 사례

모든 MCP 클라이언트, Smithery, 웹 앱

Claude Desktop, Claude Code

MCP 도구

take_screenshot

모든 웹사이트의 스크린샷을 캡처합니다. 이미지를 PNG, JPEG, WebP 또는 PDF로 반환합니다.

매개변수

유형

필수

설명

url

string

캡처할 URL (http:// 또는 https://)

format

string

아니오

png, jpeg, webp 또는 pdf (기본값: png)

width

integer

아니오

뷰포트 너비 320-3840 (기본값: 1280)

height

integer

아니오

뷰포트 높이 200-10000 (기본값: 800)

full_page

boolean

아니오

스크롤 가능한 전체 페이지 캡처

device

string

아니오

iphone_14, iphone_15_pro, pixel_7, ipad_pro, macbook_pro

dark_mode

boolean

아니오

다크 모드 활성화

block_ads

boolean

아니오

광고 차단 (기본값: true)

block_cookie_banners

boolean

아니오

쿠키 배너 제거 (기본값: true)

quality

integer

아니오

JPEG/WebP 품질 1-100 (기본값: 90)

delay

integer

아니오

페이지 로드 후 대기 시간(ms) (기본값: 0)

hide_selectors

string

아니오

숨길 CSS 선택자 (쉼표로 구분)

click_selector

string

아니오

캡처 전 클릭할 CSS 선택자

check_screenshot_cache

캡처하지 않고 스크린샷이 캐시되어 있는지 확인합니다. 할당량에 포함되지 않습니다.

매개변수

유형

필수

설명

url

string

확인할 URL

format

string

아니오

출력 형식 (기본값: png)

get_usage

스크린샷 사용 통계를 가져옵니다.

매개변수

유형

필수

설명

month

string

아니오

YYYY-MM 형식의 월 (기본값: 현재 월)

에이전트 프레임워크 통합

프레임워크

디렉토리

설명

LangChain Python

langchain/

LangChain / LangGraph 에이전트를 위한 @tool 데코레이터 함수 (PyPI)

LangChain.js

langchain-js/

LangChain.js 에이전트를 위한 StructuredTool 클래스 (npm)

CrewAI

crewai/

CrewAI 에이전트를 위한 BaseTool 서브클래스 (PyPI)

AutoGen

autogen/

Microsoft AutoGen 에이전트를 위한 FunctionTool 래퍼 (PyPI)

n8n

별도 저장소

n8n 워크플로우를 위한 커뮤니티 노드 (npm)

기타 통합

통합

설명

설정 시간

OpenClaw Skill

OpenClaw AI 에이전트용 스킬 파일

5분

ChatGPT Actions

커스텀 GPT 및 OpenAI 함수 호출을 위한 OpenAPI 사양

5분

Postman Collection

Postman용 사전 빌드된 API 요청

1분

SDK

# Node.js
npm install snaprender

# Python
pip install snaprender

직접 API

curl "https://app.snap-render.com/v1/screenshot?url=https://example.com" \
  -H "X-API-Key: sk_live_your_key_here" \
  -o screenshot.png

API 키 받기

snap-render.com에서 무료로 가입하세요. 신용카드 없이 월 200개의 스크린샷을 제공합니다.

링크

라이선스

MIT

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
3Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables 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.
    15
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables 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.
    20
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables 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

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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