Skip to main content
Hosted MCP · Streamable HTTP · zero install

Give your agent live web access in 5 minutes.

A hosted MCP server for Claude, Cursor, Codex, Cline, and any MCP-aware client. Agents provision their own key from POST /v1/keys/provision and onboard from a SKILL.md. There is no human signup flow in the path.

https://mcp.superscraper.dev/{YOUR_KEY}/mcp

The hosted MCP endpoint goes live at launch and is not reachable yet. The REST API below works today.

Free tier · 1,000 credits/mo · no card required

The tools an agent gets

These are the registered MCP tools, not a marketing summary. Each one is directly callable, alongside the full /v1 REST surface and the live connector catalog, auto-wrapped as tools.

scrape

A URL → markdown + structured listing data.

extract

A URL + JSON schema → typed structured data via LLM.

crawl

Walk a site from a start URL, same-domain, up to a page cap.

batch_scrape

Scrape up to 50 URLs concurrently with a pass/fail summary.

search

Web search with ranked results, optionally scraped.

google_maps_search

Local businesses from Google Maps with contact details.

yelp_search

Local businesses from Yelp with ratings and contact details.

screenshot

Full-page, viewport, or single-element page capture.

transform

Raw HTML → clean Markdown, offline, no network call.

unblock

Fetch a hard/anti-bot URL through the cheapest working provider.

list_tools

Meta-tool: discover the full catalog and per-parameter schemas on demand.

Two ways to wire it up

Add the hosted server to your tool's MCP config, or skip MCP and call the REST API directly. Both hit the same backend. There is no infrastructure to run either way.

Straight over HTTP

Not using MCP? Every tool on this page is a REST endpoint. Nothing to install.

curl -X POST https://superscraper-production-1381.up.railway.app/v1/scrape \
  -H "Authorization: Bearer $SUPERSCRAPER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com", "formats": ["markdown"] }'

Manual MCP config

Add the hosted server as a remote MCP server in your tool's config. Swap in your key.

{
  "mcpServers": {
    "superscraper": {
      "url": "https://mcp.superscraper.dev/{YOUR_KEY}/mcp"
    }
  }
}
MCP is the universal connector

Works with the agents you already run

If a tool speaks MCP, it already works. Point it at the hosted server and the model gains live web fetch and extract.

self-onboarding

Your agent onboards itself

Most servers still assume a human sets up the key. This one does not. The agent mints its own free-tier key, reads a SKILL.md to learn the API, and starts pulling the web inside its own loop. No human in the path.

  • POST /v1/keys/provisionThe agent mints its own free-tier key in one call. No dashboard, no signup form to click through first.
  • GET /agent-onboarding/SKILL.mdThe self-onboarding doc. The agent fetches it and wires itself up: key, then calls, then MCP.
  • https://mcp.superscraper.dev/{YOUR_KEY}/mcpKey in the URL, zero install. The hosted server goes live at launch; the tools appear in the agent the moment it is registered.

Give your agent the live web

Get a key, or let the agent mint its own. Point your tool at the hosted server and the model can fetch, extract, and search with one URL of config.