Web extraction for LLMs and agents. Scrape, crawl, map, search, extract, summarize, diff, monitor, and research any URL into clean Markdown, text, or JSON, i...
文档
Agent Web
试用Fetch any public web page and get back clean, LLM-ready markdown (polite, robots-respecting)
它能做什么
Fetch any public web page and get back clean, LLM-ready markdown (polite, robots-respecting)
技能文档
URL → LLM-ready markdown (agent-web)
Use this skill when a task needs the readable content of a web page as clean markdown — to summarize an article, extract docs, or feed a page into an LLM without parsing raw HTML yourself. Give it one publicly reachable URL; get back the title, a word count, and LLM-ready markdown. Server-rendered (static) HTML pages, no account, no API key.
Base URL: https://agent-web.foomworks.workers.dev
Charter-clean by design (the bright line): this is a polite reader. It honors the
origin's robots.txt for its user-agent, identifies honestly (no browser spoofing), performs
read-only GETs of the single URL you supply, and never bypasses anti-bot/CAPTCHA, paywalls,
or login walls. You are responsible for your right to fetch the URL you submit.
Use as an MCP server (recommended for agents)
agent-web is a remote MCP server (Streamable HTTP, JSON-RPC 2.0) — connect your agent and the tools load natively, no curl required:
- Endpoint:
https://agent-web.foomworks.workers.dev/mcp - Tools (all free, return data directly):
read_url— fetch a URL → full LLM-ready markdown (title, word count, markdown)read_url_preview— the first ~600 characters of the markdown (a cheap look before the full pull)
Discovery manifests: GET /.well-known/mcp.json (MCP descriptor), GET /.well-known/agent-card.json
(A2A), GET /openapi.json (OpenAPI 3.1). The REST endpoints below are available for direct
HTTP/curl use.
When to use
- "Summarize / extract the content of "
- "Turn this docs/article page into markdown so I can work with it"
- "Read and answer a question about it"
Endpoints (all currently free)
GET /read?url=— fetch the page →{ title, words, markdown }GET /read/preview?url=— the first ~600 characters of the markdownPOST /mcp— MCP server (JSON-RPC 2.0):read_url,read_url_previewGET /health— service statusGET /policy— the Acceptable-Use Policy (the polite-reader guarantees)GET /stats— daily usage counters
Limits & behavior
- Static HTML only for now — JavaScript-rendered pages, screenshots, and PDF are a later increment (not yet supported).
- A disallowed
robots.txtpath is refused without fetching; an unconfirmablerobots.txt(5xx/error) is treated conservatively as disallowed. - Private/loopback/link-local/internal hosts are blocked (SSRF protection); every redirect hop is re-validated. Body cap ~2 MB, fetch timeout ~12 s.
- The service holds no keys and never initiates payments.
Example
BASE=https://agent-web.foomworks.workers.dev
# REST
curl -s "$BASE/read?url=https://example.com/"
# MCP (Streamable HTTP, JSON-RPC 2.0)
curl -s -X POST "$BASE/mcp" -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"read_url","arguments":{"url":"https://example.com/"}}}'
相关技能
Turn an idea into a live webpage in minutes, no code and no hosting setup. Use when a non-technical user wants to publish a webpage, landing page, one-pager, portfolio, or any simple site to the internet, or says things like put my idea online, publish my website, host my page, share my idea, or make a landing page. The agent writes the page, packages it, deploys to goclawgo, and returns a shareable URL.
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Read any URL and get it back as clean Markdown, plain text, or raw HTML. One core endpoint, three fetch tiers (1/1/2 credits), and only a successful extraction is billed.
Live Web Page Browser: Fetch live webpages: return HTML, Markdown, or screenshots. Headless browser at edge for real-time content extraction and visual capture. Use when an agent needs live web page browser, real time research & information gathering, competitive intelligence & market monitoring, content verification & fact checking, visual documentation & change detection, cancel crawl, job id, get crawl result through AgentPMT-hosted remote tool calls.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking...