snapshot-site/snapshot-site-mcp
FreeMaintainedScreenshot, visual-diff, and AI page-analysis API for AI agents. Capture any URL as PNG/JPEG/WebP/PDF/HTML, diff two versions of a page to catch visual regressi
About
Screenshot, visual-diff, and AI page-analysis API for AI agents. Capture any URL as PNG/JPEG/WebP/PDF/HTML, diff two versions of a page to catch visual regressions, and get an AI summary of a page. Hosted remote MCP at https://mcp.snapshot-site.com/mcp with OAuth, or npx -y @snapshot-site/mcp. In the official MCP registry as com.snapshot-site/screenshots.
README
Official MCP server for the Snapshot Site API
Tools
screenshotanalyzecompare
These tools are annotated for MCP clients as:
- read-only
- idempotent
- open-world
They also include richer titles, category metadata, and example intents to improve tool selection in Claude Desktop and Cursor.
Two ways to connect
Hosted, with OAuth — point your client at https://mcp.snapshot-site.com/mcp
and sign in. There is no local process to run and no API key in your client
config; the server resolves your account from the OAuth session.
Local, with an API key — run the package yourself over stdio and provide
SNAPSHOT_SITE_API_KEY. The server calls the Snapshot Site API directly.
Either way, calls count against the same plan quota as direct API calls. Nothing is metered differently because it came through MCP.
Credentials
The hosted server needs no credential — you sign in through OAuth and the server resolves your account from the session. Skip this section unless you run the server yourself over stdio.
For local stdio mode you need a Snapshot Site API key.
Sign up for a Snapshot Site Console account.
Create an API key on the API Keys page.

Pass the key to the server as the
SNAPSHOT_SITE_API_KEYenvironment variable.Leave
SNAPSHOT_SITE_BASE_URLat its default (https://api.prod.ss.snapshot-site.com) unless you're pointed at a self-hosted or staging instance.
Compatibility
Requires Node.js 20.9 or later. Built against @modelcontextprotocol/sdk v1.28
and tested with Claude Desktop and Cursor over stdio, and with any client that
speaks the streamable HTTP transport against the hosted endpoint.
Usage
Not sure which options to use? Preview a capture and its parameters in the Screenshot console playground before wiring them into a tool call.

OAuth discovery flow
What a client does when connecting to the hosted server:
1. Discovery
Claude
-> GET https://mcp.snapshot-site.com/.well-known/oauth-protected-resource
MCP
-> responds:
authorization_servers = https://mcp.snapshot-site.com
2. Authorization
Claude
-> must know client_id
-> opens:
https://mcp.snapshot-site.com/oauth/v2/authorize
?client_id=...
&redirect_uri=https://claude.ai/api/mcp/auth_callback
&response_type=code
&code_challenge=...
3. Token
Claude
-> receives an access token
-> calls the MCP server:
POST https://mcp.snapshot-site.com/
Authorization: Bearer <access_token>
The server then validates the token against the issuer and resolves the account it belongs to before running the tool.
Verifying the deployment
curl -s https://mcp.snapshot-site.com/.well-known/oauth-protected-resource | jq
curl -s https://mcp.snapshot-site.com/.well-known/openid-configuration | jq
curl -i https://mcp.snapshot-site.com/
curl -i -X POST https://mcp.snapshot-site.com/mcp -H 'content-type: application/json' --data '{}'
Manual vs implicit client_id
- The
client_idis only needed for the authorization step. - If your client cannot discover that
client_idbeforehand, enter it manually in the connector UI. - It cannot be injected later once the OAuth flow has started.
- The server can publish an experimental implicit mode by exposing a
preferred_client_idin/.well-known/oauth-protected-resource. - Clients that read this metadata may then skip the manual entry. Clients that ignore the field still require a manual
client_id.
Environment
export SNAPSHOT_SITE_API_KEY=ss_live_xxx
export SNAPSHOT_SITE_BASE_URL=https://api.prod.ss.snapshot-site.com
Build
pnpm install
pnpm run build
Local stdio mode
export SNAPSHOT_SITE_API_KEY=ss_live_xxx
snapshot-site-mcp
Claude Desktop configuration
{
"mcpServers": {
"snapshot-site": {
"command": "node",
"args": ["/absolute/path/to/snapshot-site-mcp/build/server.js"],
"env": {
"SNAPSHOT_SITE_API_KEY": "ss_live_xxx",
"SNAPSHOT_SITE_BASE_URL": "https://api.prod.ss.snapshot-site.com"
}
}
}
}
Cursor configuration
{
"mcpServers": {
"snapshot-site": {
"command": "node",
"args": ["/absolute/path/to/snapshot-site-mcp/build/server.js"],
"env": {
"SNAPSHOT_SITE_API_KEY": "ss_live_xxx"
}
}
}
}
Remote HTTP mode
This package also supports a hosted MCP endpoint for clients using mcp-remote.
Start the HTTP server:
pnpm start:http
or:
npx snapshot-site-mcp-http
Environment variables:
export PORT=3000
export HOST=0.0.0.0
export MCP_PATH=/mcp
export HEALTH_PATH=/healthz
export MCP_ALLOWED_HOSTS=mcp.snapshot-site.com
export SNAPSHOT_SITE_BASE_URL=https://api.prod.ss.snapshot-site.com
Remote client configuration with direct API key header:
{
"mcpServers": {
"Snapshot Site MCP": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.snapshot-site.com/mcp",
"--header",
"x-snapshotsiteapi-key: ss_live_xxx"
]
}
}
}
The hosted server is stateless. Each request authenticates with x-snapshotsiteapi-key, which makes the service safe to run on multiple replicas without session affinity.
Zitadel / OAuth
The remote HTTP server also supports OAuth bearer tokens validated against an OIDC issuer such as Zitadel.
Environment variables:
export OIDC_ISSUER_URL=https://auth.snapshot-site.com
export OIDC_AUDIENCE=snapshot-site-mcp
export OIDC_REQUIRED_SCOPE=claudeai
export OIDC_DISCOVERY_CLIENT_ID=366546620977775166
export RESOURCE_SERVER_URL=https://mcp.snapshot-site.com
export ALLOW_API_KEY_AUTH=false
export SNAPSHOT_SITE_API_KEY=ss_server_side_xxx
In bearer-token mode, the MCP server validates the incoming access token against the issuer JWKS and then uses the server-side Snapshot Site API key to call the backend API.
It also exposes and proxies:
GET /.well-known/oauth-protected-resource
GET /.well-known/openid-configuration
GET/POST /oauth/v2/*
GET /ui/*
GET/POST /oauth/register
so MCP clients can discover the authorization server metadata automatically.
When OIDC_DISCOVERY_CLIENT_ID is set, the protected resource metadata also includes:
{
"resource_name": "Snapshot Site MCP",
"preferred_client_id": "366546620977775166",
"oauth_client_metadata": {
"client_id": "366546620977775166",
"token_endpoint_auth_method": "none"
}
}
This is an experimental compatibility hint for clients that can infer the OAuth public client automatically. Manual client_id entry remains the reliable fallback.
The MCP server also exposes a lightweight registration_endpoint compatibility shim at:
POST https://mcp.snapshot-site.com/oauth/register
This shim currently returns the preconfigured public PKCE client instead of provisioning a brand-new Zitadel client per installation. It validates and reflects the redirect_uris requested by the client, as long as they are valid HTTPS URLs. It is meant to improve compatibility with clients that expect DCR-style discovery, while keeping the existing manual flow as fallback.
Installing snapshot-site/snapshot-site-mcp
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/snapshot-site/snapshot-site-mcpFAQ
Is snapshot-site/snapshot-site-mcp MCP free?
Yes, snapshot-site/snapshot-site-mcp MCP is free — one-click install via Unyly at no cost.
Does snapshot-site/snapshot-site-mcp need an API key?
Yes, it requires environment variables: ALLOW_API_KEY_AUTH, HEALTH_PATH, MCP_ALLOWED_HOSTS, MCP_PATH, OIDC_AUDIENCE, OIDC_DISCOVERY_CLIENT_ID, OIDC_ISSUER_URL, OIDC_REQUIRED_SCOPE, RESOURCE_SERVER_URL, SNAPSHOT_SITE_API_KEY, SNAPSHOT_SITE_BASE_URL. Unyly injects them into the config during install.
Is snapshot-site/snapshot-site-mcp hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install snapshot-site/snapshot-site-mcp in Claude Desktop, Claude Code or Cursor?
Open snapshot-site/snapshot-site-mcp on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Playwright
Browser automation, scraping, screenshots
by MicrosoftPuppeteer
Browser automation and web scraping.
by modelcontextprotocolGarmin Connect
An MCP server for Garmin Connect that provides access to fitness activities, health statistics, and sleep data by routing requests through a headless browser to
by etweisbergHiggsfield Unlimited
MCP server for Higgsfield AI that enables unlimited-mode image, video, audio generation, uploads, and job management via multiple parallel accounts, using brows
by nukIeeropentabs-dev/opentabs
Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a
by opentabs-devrobhunter/agentdeals
1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan
by robhunterhlydecker/ucsc-genome-mcp
MCP server to interact with the UCSC Genome Browser API, letting you find genomes, chromosomes, and more.
by hlydecker34892002/bilibili-mcp-js
A MCP server that supports searching for Bilibili content. Provides LangChain integration examples and test scripts.
by 34892002achiya-automation/safari-mcp
Native Safari browser automation for AI agents with 80+ tools. No Chrome dependency, optimized for Apple Silicon with 60% less CPU overhead.
by achiya-automationagent-infra/mcp-server-browser
Browser automation capabilities using Puppeteer, both support local and remote browser connection.
by bytedanceCompare snapshot-site/snapshot-site-mcp with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All browse MCPs
