{"id":50811009,"url":"https://github.com/bikker/screenshotink-mcp","last_synced_at":"2026-06-13T05:00:37.577Z","repository":{"id":364447936,"uuid":"1267901575","full_name":"bikker/screenshotink-mcp","owner":"bikker","description":"Screenshot MCP server for Claude, Cursor \u0026 AI agents — capture, batch, compare and audit any web page. Hosted Chromium, no local browser.","archived":false,"fork":false,"pushed_at":"2026-06-13T03:02:56.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-13T04:24:50.953Z","etag":null,"topics":["ai-agents","claude","cursor","lighthouse","mcp","mcp-server","model-context-protocol","screenshot","screenshot-api","visual-regression"],"latest_commit_sha":null,"homepage":"https://screenshotink.com/mcp","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bikker.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-13T00:43:01.000Z","updated_at":"2026-06-13T03:02:28.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bikker/screenshotink-mcp","commit_stats":null,"previous_names":["bikker/screenshotink-mcp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/bikker/screenshotink-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bikker%2Fscreenshotink-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bikker%2Fscreenshotink-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bikker%2Fscreenshotink-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bikker%2Fscreenshotink-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bikker","download_url":"https://codeload.github.com/bikker/screenshotink-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bikker%2Fscreenshotink-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34272603,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","claude","cursor","lighthouse","mcp","mcp-server","model-context-protocol","screenshot","screenshot-api","visual-regression"],"created_at":"2026-06-13T05:00:16.466Z","updated_at":"2026-06-13T05:00:37.572Z","avatar_url":"https://github.com/bikker.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ScreenshotInk MCP Server\n\n[![npm version](https://img.shields.io/npm/v/%40screenshotink%2Fmcp)](https://www.npmjs.com/package/@screenshotink/mcp)\n[![MCP](https://img.shields.io/badge/MCP-remote%20%2B%20stdio-6E5CFF)](https://modelcontextprotocol.io)\n[![license](https://img.shields.io/badge/license-MIT-green)](LICENSE)\n\nGive your AI agent eyes. **Five tools to capture, batch, compare and audit any web page** — through [ScreenshotInk](https://screenshotink.com)'s hosted Chromium fleet. No local browser, no Puppeteer maintenance; works in Claude Desktop, Claude Code, Cursor, Windsurf, CI runners and cloud sandboxes.\n\nEvery result returns the screenshot **inline in the same turn**, so the agent can reason about pixels immediately.\n\n```\nYou:    Compare our pricing page on staging vs production — did the new cards ship?\nAgent:  ▸ compare_screenshots { url_a: \"https://acme.com/pricing\", url_b: \"https://staging.acme.dev/pricing\" }\n        4.7% of pixels differ, all inside the plan grid — the new Scale card is present. Deploy looks correct. ✓\n```\n\n## Quick start\n\nYou need a ScreenshotInk API key — **free, 100 captures/month, no card**: [screenshotink.com/signup](https://screenshotink.com/signup)\n\n### Claude Code\n\n```bash\nclaude mcp add screenshotink -- npx -y @screenshotink/mcp --key sk_live_YOUR_KEY\n```\n\nor connect to the hosted remote server (nothing runs locally):\n\n```bash\nclaude mcp add --transport http screenshotink https://mcp.screenshotink.com/mcp \\\n  --header \"Authorization: Bearer sk_live_YOUR_KEY\"\n```\n\n### Claude Desktop\n\n`claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"screenshotink\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@screenshotink/mcp\"],\n      \"env\": { \"SCREENSHOTINK_API_KEY\": \"sk_live_YOUR_KEY\" }\n    }\n  }\n}\n```\n\n### Cursor / Windsurf\n\n```json\n{\n  \"mcpServers\": {\n    \"screenshotink\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@screenshotink/mcp\", \"--key\", \"sk_live_YOUR_KEY\"]\n    }\n  }\n}\n```\n\n### Remote server (cloud agents, hosted runtimes)\n\nAnything that speaks Streamable HTTP can connect directly — nothing to install:\n\n```\nURL:   https://mcp.screenshotink.com/mcp\nAuth:  Authorization: Bearer sk_live_YOUR_KEY\n```\n\n## Tools\n\n| Tool | What it does |\n|---|---|\n| `take_screenshot` | Capture any URL — viewport or full page, png/jpeg/pdf, dark mode, ad \u0026 cookie-banner blocking, lazy-load handling |\n| `bulk_screenshots` | Up to 20 URLs in one call — audit a funnel or a competitor set at once |\n| `compare_screenshots` | Pixel-diff two URLs (staging vs production, before vs after) — returns changed-% and a highlighted diff image |\n| `run_lighthouse` | Google Lighthouse scores (performance, accessibility, best practices, SEO) + core web vitals |\n| `capture_sitemap` | Fetch a sitemap.xml and screenshot every page it lists |\n\nSame parameters and defaults as the [REST API](https://screenshotink.com/docs/request-parameters). Captures over MCP count against the same quota as the REST API — one key, one meter. Identical requests within 24h are served from cache for free.\n\n## Why hosted?\n\n- **CI pipelines** — no headless Chrome install, no flaky browser binaries in runners.\n- **Cloud agents** — hosted runtimes can't launch browsers; the remote endpoint gives them eyes with zero dependencies.\n- **Zero maintenance** — we patch Chromium, handle lazy-load, ads and cookie walls. Your agent just asks for pixels.\n\n## Links\n\n- Product \u0026 docs: [screenshotink.com](https://screenshotink.com) · [MCP docs](https://screenshotink.com/docs/mcp)\n- REST API reference: [screenshotink.com/docs](https://screenshotink.com/docs)\n- Issues: [GitHub issues](https://github.com/bikker/screenshotink-mcp/issues)\n\n---\n\nMIT © [ScreenshotInk](https://screenshotink.com) — a [ScalingWeb](https://scalingweb.com) product\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbikker%2Fscreenshotink-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbikker%2Fscreenshotink-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbikker%2Fscreenshotink-mcp/lists"}