Screenshot API
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Screenshot APITake a screenshot of https://example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Screenshot API for AI Agents
Give your AI agent eyes. One MCP tool call returns a screenshot your agent can actually see.
→ Join the early access waitlist · Free tier included · Hosted API coming soon
What it does
AI agents can't see web pages — they get raw HTML, which is noisy, incomplete (no JS-rendered content), and full of boilerplate. This MCP server gives Claude, Cursor, and any MCP-compatible agent three native tools:
Tool | What it returns |
| URL → base64 PNG/JPEG your agent can look at directly |
| Screenshot + title + H1 + meta description in one call |
| URL → A4 PDF |
describe_page is the key differentiator: most agents need a screenshot and some text context. This saves a round-trip.
Related MCP server: Junipr MCP Server
Quick start (self-hosted, free)
Claude Desktop
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"screenshot-api": {
"command": "npx",
"args": ["-y", "screenshot-api-mcp"]
}
}
}Restart Claude Desktop. Then ask:
"Take a screenshot of https://news.ycombinator.com and summarise the top 5 stories"
Cursor
Settings → MCP → Add Server:
{
"name": "screenshot-api",
"command": "npx",
"args": ["-y", "screenshot-api-mcp"]
}Python (LangChain / CrewAI)
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"screenshot": {
"command": "npx",
"args": ["-y", "screenshot-api-mcp"],
"transport": "stdio",
}
})
tools = await client.get_tools()
# → [take_screenshot, describe_page, capture_pdf]Why not just use the HTML?
JS-rendered content — SPAs, lazy-loaded sections, and canvas elements are invisible to scrapers. Playwright renders everything.
Stealth mode — ~40% of real URLs return bot-block pages to naive scrapers. Evasion is built in.
Response cache — same URL twice in a loop? Second call is instant (5-min TTL, no double-billing).
MCP-native — structured outputs designed for agent loops, not bolted-on HTTP wrappers.
Hosted API (coming soon)
The self-hosted version requires Node.js + a local Playwright/Chromium install (~300MB). The hosted API has none of that — your agent hits an endpoint, gets back the image.
Join the waitlist — early access gets 3 months at 40% off.
Planned tiers:
Plan | Price | Screenshots/mo |
Free trial | $0 | 100 (7 days) |
Starter | $19/mo | 2,000 |
Pro | $49/mo | 10,000 |
HTTP API (self-hosted)
GET /screenshot
Param | Type | Default | Description |
| string | required | Public URL (http/https only) |
|
|
| Output format |
|
|
| Full scrollable page |
| number |
| Viewport width (320–3840) |
| number |
| Viewport height (200–2160) |
curl "http://localhost:3099/screenshot?url=https://example.com" -o out.pngGET /health
{ "status": "ok", "browserConnected": true }Local development
npm install
npm run dev # tsx watch
npm test # vitest + real Chromium (~60s)
npm run typecheckDeploy to Fly.io (self-host at scale)
export PATH="$HOME/.fly/bin:$PATH"
flyctl auth login
flyctl launch --no-deploy --copy-config
flyctl secrets set PROXY_SECRET=$(openssl rand -hex 24)
flyctl deploy
flyctl checks list # /health should be greenMemory: Fly's default 256MB will OOM Chromium.
fly.tomlis pre-set to 1GB. Don't scale below 512MB.
Add FLY_API_TOKEN to GitHub repo secrets to enable auto-deploy on push to main.
Configuration
All settings via environment variables. See .env.example.
Key vars: PORT (3099), MAX_CONCURRENCY (2), PROXY_SECRET (empty = auth off locally), NAV_TIMEOUT_MS (20000).
Roadmap
Phase A — Validation (now)
MCP server with 3 tools
Stealth / Cloudflare bypass
Response cache (5-min TTL)
Landing page + waitlist
npm publish (
screenshot-api-mcp)Smithery + mcp.so + Glama listings
20 waitlist signups ← gate to Phase B
Phase B — Hosted API (if gate passed)
Lemon Squeezy billing (usage tiers)
API key issuance + metering
Fly.io deploy (1GB VM,
min_machines_running=1)First paying customer
Phase C — Growth
SEO content ("how to give Claude screenshots")
Zapier integration
LangChain / CrewAI tool package
This server cannot be installed
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
- AlicenseAqualityDmaintenanceEnables AI assistants to capture screenshots of web pages using automated browser sessions. Supports full-page and element-specific screenshots, device simulation, and JavaScript execution for comprehensive web testing and monitoring.Last updated612MIT
- Alicense-qualityCmaintenanceEnables 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.Last updated351MIT
- AlicenseAqualityBmaintenanceCapture screenshots, generate PDFs, and render HTML to images via AI agents. Supports batch capture, geo-targeting, async webhooks, and CSS/JS injection.Last updated112727MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to capture screenshots of any public URL, returning images inline with page metadata. Supports full-page captures, custom wait times, and timeouts.Last updated142MIT
Related MCP Connectors
Generate images, GIFs, and PDFs from HTML, URLs, or templates — from your AI agent.
Screenshots, PDFs and Markdown from any URL or HTML for AI agents, via the SnapForge API
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/raphy78626/screenshot-api'
If you have feedback or need assistance with the MCP directory API, please join our Discord server