webcap
Click on "Deploy 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., "@webcapScreenshot https://example.com and extract the main article text."
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.
webcap
Screenshot any URL, extract structured data, monitor pages for changes — all via a single HTTP API call. Pay-per-call with no accounts, no API keys.
GET /v1/extract/preview?url=... → Free preview (title, headings, links)
POST /v1/x402/capture → PNG/JPEG/PDF screenshot + persistent link
POST /v1/x402/extract → Structured JSON (title, headings, markdown)
POST /v1/x402/video → Scroll-capture video (MP4/WebM)
POST /v1/watches → Scheduled monitoring with webhook alertsPricing: $0.001/screenshot · $0.01/extraction batch · No subscriptions, no minimums.
Why webcap?
Feature | webcap | Screenshot APIs (typical) |
Price | $0.001/screenshot | $0.01–0.10/screenshot |
Accounts required | No | Yes |
API keys | No | Yes |
Payment | Card (Stripe) or crypto (USDC) | Credit card only |
Batch support | Up to 50 URLs per payment | Limited |
Self-hostable | Yes (Docker) | No |
Open source | Yes (MIT) | No |
Related MCP server: alterlab-mcp-server
Features
Endpoint | What you get | Price |
| Screenshot as PNG/JPEG/PDF (base64) + persistent public artifact link + OG metadata | $0.001 |
| Structured page data as JSON: title, description, headings, paragraphs, links, images, word count, markdown. Batch up to 50 URLs per payment. | $0.01 |
| SEO basics + link/OG health in one call | $0.002 |
| Site URL list from sitemap/robots + 1-hop crawl (up to 50 URLs) | $0.002 |
| Scroll-capture a page as MP4/WebM video | $0.005 |
| Create a scheduled monitor (free to create, prepay 100-run packs) | $0.10–$1.00/pack |
Bearer-token rail (no signing key)
The same products are buyable with an API key: POST /v1/register
({"address"} → {apiKey}), fund with a plain USDC transfer via
POST /v1/invoice, then send Authorization: Bearer <apiKey> to
POST /v1/extract, POST /v1/audit, POST /v1/map-lite, POST /v1/video,
POST /v1/analyze, or POST /v1/analyze/batch. Every call costs 1 credit,
refunded whenever the call does not return 200; an empty balance answers 402
with a 1-credit top-up invoice. Watches fund the same way:
POST /v1/watches/{id}/topup {"runs": 100} (capture pack 10 credits, extract
pack 100). Full spec: GET /openapi.json (tags: accounts).
Free endpoints (no payment)
Endpoint | Description |
| Bounded preview: title, headings, links, word count (10 req/min/IP) |
| Open Graph link-preview metadata |
| Create a scheduled monitor (free; prepay via top-up) |
| Liveness check |
| Tell webcap something (machine or human): |
Quick start
Use as an MCP server (agent runtimes)
webcap ships an MCP server, so any MCP host (Claude Desktop, Cursor, agent frameworks) can call it as a tool. Two ways to wire it: a remote endpoint (no install at all) or the stdio server from a checkout.
The remote endpoint is the cheapest path for an agent — nothing to install, no package registry, no account:
{
"mcpServers": {
"webcap": { "url": "https://webcap.shoutsid.fyi/mcp" }
}
}POST /mcp speaks MCP Streamable HTTP (JSON-RPC 2.0 over HTTPS; GET is
deliberately 405 because the server never opens an SSE stream). It holds no
wallet, so it never spends on a caller's behalf: the free tools run directly,
and a paid tool returns the live x402 402 challenge for your own client to
settle. The endpoint is also described in
/.well-known/mcp-tools.json and openapi.json.
It is listed in the official MCP Registry as
io.github.shoutsid-lab/webcap, so a runtime that reads the registry can
discover it without this README:
curl -s 'https://registry.modelcontextprotocol.io/v0/servers?search=webcap'The stdio server runs locally and can settle paid calls itself. The free tools
need no configuration; set WEBCAP_MCP_WALLET_KEY to a Base-mainnet USDC key to
let the paid tools settle automatically (gasless — the payer signs EIP-3009, the
facilitator pays gas). With no key, paid tools return the x402 402 challenge for
the host to pay. No wallet at all? Set WEBCAP_MCP_API_KEY to an
operator-funded account key instead (POST /v1/register, then fund via
POST /v1/invoice): paid tools bill 1 credit each from that balance. A
configured wallet wins over the key.
From a source checkout — npm ci && npm run build — then point args at
its dist/mcp/stdio.js:
{
"mcpServers": {
"webcap": {
"command": "node",
"args": ["/absolute/path/to/webcap/dist/mcp/stdio.js"],
"env": { "WEBCAP_MCP_WALLET_KEY": "0x..." }
}
}
}(npm run mcp runs the TypeScript directly, so no build step is needed
there.) The npm release will be @shoutsid/webcap — the unscoped
webcap name belongs to an unrelated package, and it is not published yet —
so until then the remote endpoint above is the install-free option.
Tools, all 18 of them (every one is also in
/.well-known/openai-tools.json and /.well-known/mcp-tools.json):
Discovery, free:
webcap_preview,webcap_og,webcap_service,webcap_health,webcap_agent_funnelFree trial rail, one claim per wallet per endpoint:
webcap_trial_status,webcap_trial_claim_capture,webcap_trial_claim_extract,webcap_trial_claim_audit,webcap_trial_claim_map_lite,webcap_trial_claim_analyze,webcap_quick_thumbnail(no wallet needed)Paid:
webcap_capture,webcap_extract,webcap_audit,webcap_map_lite,webcap_video,webcap_analyze
The trial tools are the point: an agent can claim one real extraction, audit or capture for free before it spends anything.
Capture a screenshot
# 1. POST without payment → HTTP 402 + a PAYMENT-REQUIRED header
curl -si -X POST "https://webcap.shoutsid.fyi/v1/x402/capture" \
-H 'content-type: application/json' \
-d '{"url":"https://example.com/"}'
# 2. Decode the base64 challenge → sign a gasless EIP-3009 transfer → retry with PAYMENT-SIGNATUREJavaScript (with x402 auto-payment)
import axios from 'axios';
import { x402Client, wrapAxiosWithPayment } from '@x402/axios';
import { ExactEvmScheme } from '@x402/evm';
import { privateKeyToAccount } from 'viem/accounts';
// Needs USDC on Base mainnet (no ETH needed — facilitator pays gas)
const payer = privateKeyToAccount(process.env.PAYER_KEY);
const client = new x402Client().register('eip155:*', new ExactEvmScheme(payer));
const api = wrapAxiosWithPayment(
axios.create({ baseURL: 'https://webcap.shoutsid.fyi' }),
client,
);
// Capture a screenshot (auto: unpaid → 402 → sign → retry)
const { data } = await api.post('/v1/x402/capture', { url: 'https://example.com', format: 'png' });
console.log(data.artifact.url); // persistent public screenshot linkPython
import os
from x402 import X402Client
from x402.schemes import ExactEvmScheme
from eth_account import Account
payer = Account.from_key(os.environ["PAYER_KEY"])
client = X402Client().register("eip155:*", ExactEvmScheme(payer))
response = client.post(
"https://webcap.shoutsid.fyi/v1/x402/capture",
json={"url": "https://example.com", "format": "png"},
)
print(response.json()["artifact"]["url"]) # persistent public screenshot linkExtract structured data
# Single URL
curl -s -X POST "https://webcap.shoutsid.fyi/v1/x402/extract" \
-H 'content-type: application/json' \
-d '{"url":"https://example.com"}'
# Batch (up to 50 URLs, one payment covers the whole batch)
curl -s -X POST "https://webcap.shoutsid.fyi/v1/x402/extract" \
-H 'content-type: application/json' \
-d '{"urls":["https://a.com","https://b.com"],"schema":"company name + tagline"}'How payment works
The live rail is crypto (x402, USDC on Base) — no accounts, no API keys.
Card payments are an operator option, not a hosted feature: until an operator
sets STRIPE_SECRET_KEY, POST /v1/stripe/checkout answers
stripe_not_configured and points at the crypto rail. (The hosted deployment at
https://webcap.shoutsid.fyi is card-less today.)
Card payments (Stripe, when configured)
POST /v1/stripe/checkoutwith a pack id — Stripe Checkout handles the rest.Enter your card details. Credits are added to your account instantly.
Use API key authentication for subsequent calls.
Crypto payments (x402 — no accounts needed)
webcap uses x402 v2 — a gasless, accountless payment protocol built on HTTP 402:
POST a paid route with no payment → HTTP 402 + a
PAYMENT-REQUIREDheader carrying a base64 x402 v2 challenge.Read the challenge: USDC amount, merchant address, chain info.
Sign a gasless EIP-3009
transferWithAuthorization(from your wallet, to the merchant, for the amount). No ETH needed — the facilitator submits the tx and pays gas.Retry the same request with the signed payload in the
PAYMENT-SIGNATUREheader. The facilitator verifies your USDC balance, settles on-chain, and returns the result.
No accounts. No API keys. No credits. Just HTTP + your choice of payment.
Self-hosting
# Clone the repo
git clone https://github.com/shoutsid-lab/webcap.git
cd webcap
# Install dependencies
npm install
# Copy and configure environment
cp .env.example .env
# Edit .env with your settings
# Build and run
npm run build
npm startDocker
docker compose build
docker compose up -dThe Docker setup includes health checks, resource limits, and persistent data volumes. See docker-compose.yml for details.
Local development (Anvil testnet)
npm install
npm run chain:up # Starts Anvil with mintable USDC
WEBCAP_CHAIN=local \
WEBCAP_USDC_ADDRESS=$(jq -r .usdcContract /tmp/webcap-chain.json) \
WEBCAP_MERCHANT_ADDRESS=$(jq -r .merchant.address /tmp/webcap-chain.json) \
npm startConfiguration
All environment variables are documented in .env.example. Key ones:
Variable | Description | Default |
| Network: |
|
| Public URL for artifact links | required |
| Price per screenshot in USDC |
|
| Price per extraction in USDC |
|
| Payment facilitator endpoint |
|
API reference
Full OpenAPI 3.1 spec: GET /openapi.json
Agent discovery: GET /.well-known/x402, GET /v1/x402/service, GET /llms.txt, GET /skill.md
Tests
npm test # full vitest suite (tests/**/*.test.ts, no exclusions)
npm run typecheck # Type checkingBoth must pass before a change ships. Deliberately no test/file counts here: they
have gone stale twice (a reader caught the second one in issue #1), and a number
nobody regenerates is worse than no number. npm test prints the current totals.
Claim audit
npm run audit:claims # against localhost:8080
npm run audit:claims -- --base-url https://webcap.shoutsid.fyi # against a deploymentThe tests check the code; this checks the claims — it reads README.md,
/skill.md and /llms.txt and verifies every METHOD /path they advertise is
actually served, that every documented price equals the 402 challenge amount, and
that the free trial menu quotes the same prices as the paid routes. It exits
non-zero on any failure, so it can gate a deploy. Issue #1 was filed by an agent
that did this by hand; this is the same check as a command.
License
MIT — see LICENSE for details.
Links
Live API: https://webcap.shoutsid.fyi
OpenAPI docs: https://webcap.shoutsid.fyi/openapi.json
This server cannot be deployed
Maintenance
Related MCP Connectors
Fetch and extract data from any public web page, even JS-rendered or anti-bot protected
- mcpOAuthcom.screenshotink
Screenshot, diff, audit and sitemap-capture any web page — 5 MCP tools for AI agents.
Clean PNG/JPEG screenshots via REST or MCP, with goal-driven multi-step navigation.
Screenshots, PDFs and Markdown from any URL or HTML for AI agents, via the SnapForge API
Related MCP Servers
AlicenseAqualityDmaintenanceScrape any webpage and return clean markdown, HTML, or structured JSON. Bypasses anti-bot protection, renders JavaScript (React/Vue/Angular), supports premium residential proxies and CSS extraction. Works with any MCP client — no local install required.1552 npm19MIT- AlicenseAqualityAmaintenanceEnables web scraping, structured data extraction, and screenshot capture with automatic anti-bot bypass, supporting JavaScript rendering, proxy rotation, and tiered pricing.2589 npmMIT
- AlicenseNot gradedqualityBmaintenanceEnables 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.13 npmMIT
- AlicenseAqualityAmaintenanceEnables fetching any public web page through managed proxies, with optional JavaScript rendering, returning markdown, text, HTML, or structured JSON.135 npm11MIT