oci ghcr.io/us/crw:lateststdioAGPL-3.0updated 8d ago
Turn URLs into clean markdown or structured JSON with one engine for search, scrape, map, crawl, and extract.
CRW Web Scraper 能做什么?
One-command install
curl -fsSL https://fastcrw.com/install | sh
Runs local and free, no account needed. To use the Cloud, paste your key into the same command and it installs the binary, connects the key, and registers the MCP server with the AI coding tools you already have:
curl -fsSL https://fastcrw.com/install | CRW_API_KEY=crw_live_... sh
crw search "rust tutorials"
Claude Code, Cursor, Codex, Gemini CLI, OpenCode and Windsurf are picked up
automatically when they are already set up; nothing else is touched, and your
key stays in ~/.config/crw/config.toml rather than being copied into each
tool. Add CRW_NO_AGENTS=1 to skip that step, or run crw setup on its own to
choose interactively.
1000 free credits, no credit card. Managed proxies, JS rendering and search, with nothing to run or keep up to date. Get my free key →
macOS and Linux, Intel and ARM. More install options →
What it does
| Operation | Outcome |
|---|---|
| Scrape | One URL to markdown, HTML, links, screenshots, or schema JSON |
| Crawl | Follow a bounded site crawl and collect its pages |
| Map | Discover URLs without scraping every page |
| Search | Search the web and optionally scrape selected results |
| Extract | Produce structured fields from one or many URLs |
Why fastCRW
On Firecrawl's own public 1,000-URL dataset, fastCRW recovered more truth than Crawl4AI and Firecrawl, matched the fastest median latency, and idled at ~14 MB RAM.
On a different benchmark entirely, answer accuracy rather than scrape recall, fastCRW answers 90.0% of the 600 AA-Omniscience questions correctly. Every product listed on the Artificial Analysis Search Index sits below it.
Choose how you use it
CLI
crw https://example.com # scrape, works right after install
crw search "rust async runtime" # search, after `crw setup`
Python SDK
Using Cloud? Get an API key, then export it once:
export CRW_API_KEY="crw_live_..."
pip install crw
from crw import CrwClient
client = CrwClient()
page = client.scrape("https://example.com", formats=["markdown"])
print(page["markdown"])
npm install crw-sdk
import { CrwClient } from "crw-sdk";
const client = new CrwClient();
const page = await client.scrape("https://example.com", {
formats: ["markdown"],
});
console.log(page.markdown);
Local mode and more SDK examples → · REST API →
MCP for AI agents
npx -y crw-mcp@latest install
Installs the CRW skill and MCP server in your detected AI tools. crw setup can
also do this step, so either path is enough.
Manual setup →
Choose where it runs
| Managed API | Local / self-hosted | |
|---|---|---|
| Best for | Zero infrastructure and managed scaling | Data control, private networks, or custom infrastructure |
| Start | Create an API key, then crw setup |
Install and run crw <URL> |
| Operations | Managed proxies, billing, and hosted capabilities | You choose renderers, search, auth, proxies, and capacity |
Capabilities and response shapes can differ by deployment:
/v1/capabilities · response shapes
Learn more
Contributing
The workspace requires Rust 1.85 or newer:
git clone https://github.com/us/crw
cd crw
make check-fast
Engine and MCP server: AGPL-3.0. Python and TypeScript SDKs: MIT. Embedding license: hello@fastcrw.com.
Star History
Please respect website policies. Crawl and map follow robots.txt by default.
安装
把 CRW Web Scraper 添加到你的客户端。选择你正在使用的那个。
claude mcp add ghcr-io-us-crw-latest -- docker run -i --rm ghcr.io/us/crw:latestcodex mcp add ghcr-io-us-crw-latest -- docker run -i --rm ghcr.io/us/crw:latestamp mcp add ghcr-io-us-crw-latest -- docker run -i --rm ghcr.io/us/crw:latest{
"mcpServers": {
"ghcr-io-us-crw-latest": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/us/crw:latest"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ghcr-io-us-crw-latest": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/us/crw:latest"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ghcr-io-us-crw-latest","command":"docker","args":["run","-i","--rm","ghcr.io/us/crw:latest"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ghcr-io-us-crw-latest": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/us/crw:latest"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ghcr-io-us-crw-latest": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/us/crw:latest"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ghcr-io-us-crw-latest": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/us/crw:latest"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ghcr-io-us-crw-latest": {
"type": "local",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/us/crw:latest"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ghcr-io-us-crw-latest": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/us/crw:latest"
]
}
}
}
}Add to your Zed `settings.json`.
docker run -i --rm ghcr.io/us/crw:latestRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
评分
39 / 100
不完整
- 文档25/25
- 维护25/25
- 可信度13/20
- 能力0/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- Licensed AGPL-3.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.32.0最新 | 2026年8月24日 |
| 0.31.0 | 2026年8月18日 |
| 0.30.0 | 2026年8月9日 |
| 0.29.0 | 2026年8月4日 |
| 0.28.0 | 2026年7月24日 |
| 0.27.1 | 2026年7月22日 |
| 0.27.0 | 2026年7月22日 |
| 0.26.1 | 2026年7月21日 |
| 0.26.0 | 2026年7月19日 |
| 0.25.2 | 2026年7月17日 |
| 0.25.1 | 2026年7月16日 |
| 0.25.0 | 2026年7月16日 |
| 0.24.1 | 2026年7月15日 |
| 0.24.0 | 2026年7月12日 |
| 0.23.0 | 2026年7月10日 |
| 0.22.0 | 2026年7月9日 |
| 0.21.3 | 2026年7月8日 |
| 0.21.2 | 2026年7月8日 |
| 0.21.1 | 2026年7月7日 |
| 0.21.0 | 2026年7月6日 |
| 0.20.0 | 2026年7月1日 |
| 0.19.0 | 2026年6月28日 |
| 0.18.3 | 2026年6月23日 |
| 0.18.2 | 2026年6月23日 |
| 0.18.1 | 2026年6月23日 |
| 0.18.0 | 2026年6月23日 |
| 0.17.0 | 2026年6月21日 |
| 0.16.0 | 2026年6月14日 |
| 0.15.2 | 2026年6月12日 |
| 0.15.1 | 2026年6月11日 |
| 0.15.0 | 2026年6月10日 |
| 0.14.0 | 2026年6月8日 |
| 0.13.4 | 2026年6月7日 |
| 0.13.1 | 2026年6月6日 |
| 0.13.0 | 2026年6月6日 |
| 0.12.1 | 2026年6月5日 |
| 0.11.0 | 2026年6月3日 |
| 0.10.0 | 2026年5月20日 |
| 0.9.1 | 2026年5月16日 |
| 0.8.3 | 2026年5月15日 |
| 0.8.2 | 2026年5月14日 |
| 0.7.1 | 2026年5月12日 |
| 0.6.4 | 2026年5月12日 |
| 0.6.3 | 2026年5月12日 |
| 0.6.2 | 2026年5月10日 |
| 0.6.1 | 2026年5月9日 |
| 0.6.0 | 2026年5月9日 |
| 0.5.0 | 2026年5月4日 |
| 0.4.2 | 2026年4月29日 |
| 0.4.1 | 2026年4月29日 |
| 0.4.0 | 2026年4月23日 |
| 0.3.6 | 2026年4月21日 |
| 0.3.5 | 2026年4月12日 |
| 0.3.2 | 2026年4月8日 |
| 0.3.1 | 2026年4月8日 |
| 0.3.0 | 2026年4月4日 |
| 0.2.2 | 2026年4月2日 |
| 0.2.1 | 2026年3月29日 |
| 0.2.0 | 2026年3月28日 |