get-screenshot-and-upload

get-screenshot-and-upload is a skill for Claude Code from metalevel-tech/snapix-mcp-server. It costs 90 tokens per session (1,077 once invoked), scanned A, original, MIT.

A workflow that takes a screenshot of a web page in a browser, uploads it to Snapix, and removes the temporary local file.

In plain words
What is it for?
Use it to capture a URL and store the resulting image in Snapix.
Why use it?
It avoids manually capturing, saving, uploading, and cleaning up screenshots. It can use VS Code's browser tools or Chrome as a fallback.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it to capture a URL and store the resulting image in Snapix.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/metalevel-tech/snapix-mcp-server/get-screenshot-and-upload-v2
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add metalevel-tech/snapix-mcp-server --skill get-screenshot-and-upload-v2
Clone the repo
git clone --depth 1 https://github.com/metalevel-tech/snapix-mcp-server

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for get-screenshot-and-upload

README.md
[![agentmods](https://agentmods.dev/badge/skills/metalevel-tech/snapix-mcp-server/get-screenshot-and-upload-v2/github.svg)](https://agentmods.dev/skills/metalevel-tech/snapix-mcp-server/get-screenshot-and-upload-v2)
Your own site
<a href="https://agentmods.dev/skills/metalevel-tech/snapix-mcp-server/get-screenshot-and-upload-v2"><img src="https://agentmods.dev/badge/skills/metalevel-tech/snapix-mcp-server/get-screenshot-and-upload-v2/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for get-screenshot-and-upload

Your own site · 80×15
<a href="https://agentmods.dev/skills/metalevel-tech/snapix-mcp-server/get-screenshot-and-upload-v2"><img src="https://agentmods.dev/badge/skills/metalevel-tech/snapix-mcp-server/get-screenshot-and-upload-v2.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,077 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00090 $0.01077
Opus 5 $0.00045 $0.00539
Sonnet 5 $0.00018 $0.00215
Haiku 4.5 $0.00009 $0.00108

Measured 11d ago against content hash 9dec34f52c2c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

get-screenshot-and-upload scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/get-screenshot-and-upload-v2/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Get Screenshot & Upload to Snapix

Captures a live browser screenshot using VS Code's integrated browser tools (primary method) or chrome-devtools-mcp (fallback), temporarily saves the image, uploads it to Snapix via snapix-mcp, then cleans up the local file.

When to Use

  • "Take a screenshot of <url> and upload to Snapix"
  • "Capture <url> and store the image in Snapix"
  • Any screenshot-to-cloud workflow targeting Snapix

Prerequisites

Primary Method (Recommended)

  • VS Code with browser tools enabled: Ensure workbench.browser.enableChatTools setting is true
  • Integrated browser access: The agent must have permission to use browser tools
  • Snapix MCP configured and authenticated (mcp_metalevel_sna_snapix_* tools available)

Fallback Method

  • Chrome with remote debugging: Running on http://127.0.0.1:9222 (only needed if integrated browser is unavailable) See chrome-devtools-mcp instructions for setup details.

Procedure

Step 1 — Navigate to the URL

Open or navigate to the target URL using mcp_io_github_chr_new_page (opens in a new tab) or mcp_io_github_chr_navigate_page (reuses current tab):

mcp_io_github_chr_new_page  url="<target-url>"

Wait a few seconds for the page to load (run_in_terminal: sleep 3).

Step 2 — Dismiss Dialogs (if any)

Use the snapshot (mcp_io_github_chr_take_snapshot) to check for overlays. Dismiss consent dialogs or popups via mcp_io_github_chr_evaluate_script:

() => {
  const buttons = document.querySelectorAll('button');
  for (const btn of buttons) {
    if (btn.textContent.trim() === 'Reject all' || btn.textContent.trim() === 'Accept') {
      btn.click();
      return 'dismissed';
    }
  }
  return 'no dialog';
}

Wait 1–2 seconds after dismissal before proceeding.

Step 3 — Save Screenshot to Filesystem

Use mcp_io_github_chr_take_screenshot with the filePath parameter to save the screenshot directly to disk:

Read the full file on GitHub · 113 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 113 lines · 90 tokens per session scan A 9dec34f52c2c

Subscribe to this mod's changes

get-screenshot-and-upload is a skill published in the GitHub repository metalevel-tech/snapix-mcp-server (0 stars, last pushed 3mo ago), licensed MIT. It adds 90 tokens to every session and 1,077 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

browse

Use the browse CLI for Browserbase browser automation, Browserbase cloud APIs, Browserbase Functions, templates, web fetch/search, diagnostics, and Browse.sh skill discovery/installation. Use when the user asks to navigate pages, inspect browser state, run local or remote browser sessions, manage Browserbase…

rivet-dev/agentos · 109 tokens

node-crawler

Node.js web crawler for production-grade, large-scale tasks — NOT for simple one-off requests. Use only when: bulk scraping, batch downloading, multi-page crawling, long-running spiders, or complex multi-step workflows that need connection pooling, rate limiting, proxy rotation, automatic retries, and Cheerio parsing.…

bda-research/node-crawler · 115 tokens

meme-sticker

Turn one uploaded image into a complete 12-piece chat sticker pack by generating two 3x2 sticker sheets, extracting transparent PNGs, normalizing their canvases, and packaging the result as a ZIP. Use this skill whenever a user provides a photo and asks for chat stickers, reaction stickers, meme stickers, custom…

shanliuling/meme-sticker · 105 tokens

studiomcphub-studio

Image to Retail in 90 seconds. 10-stage creative pipeline: background removal, palette extraction, resize, 6-product mockups, CMYK conversion, print-ready PDF, SVG vectorization, invisible watermarking, AI metadata enrichment, ESRGAN upscaling. Local DAM organizes all outputs. HTML preview gallery.

codex-curator/studiomcphub · 73 tokens

gem-pw

Browser-automated Gemini Gem CLI (CDP-first) — chat, CRUD, image gen, deep research, --collab surgical-diff review. No API key.

lesterppo/hermes-gem-pw · 39 tokens

dependabot-triage

Triage and fix Dependabot vulnerability alerts in JavaScript/TypeScript repos (Node.js services AND browser frontends). v2.1 workflow with Standard (defensive) and Fast-Track (low-risk) modes — defensive minimal-patched versioning, exposure mapping (Public/API · Client-Bundle · Internal/Dev), CI workflow inspection to…

akshayrao14/git-practices · 187 tokens