.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/0xmassi/webclaw
home/mcp-servers/0xmassi/webclaw
0xmassi avatar

webclaw

by0xmassi· 1 MCP server

Stars

2.1k

Forks

205

Category

Browser & Automation

View on GitHub

TL;DR

---

How to install webclaw?

0xmassi/webclaw
$git clone https://github.com/0xmassi/webclaw

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install webclaw by running `git clone https://github.com/0xmassi/webclaw`, then use it for the current task and follow its documentation at https://github.com/0xmassi/webclaw.

Files · 1

View on GitHub
README.md
1<p align="center"><strong>English</strong> | <a href="./README_zh-CN.md">简体中文</a></p>
2 
3<p align="center">
4 <a href="https://webclaw.io">
5 <img src=".github/banner.png" alt="webclaw" width="760" />
6 </a>
7</p>
8 
9<h1 align="center">webclaw</h1>
10 
11<p align="center">
12 <strong>Turn websites into clean markdown, JSON, and LLM-ready context.</strong><br/>
13 <sub>CLI, MCP server, REST API, and SDKs for AI agents and RAG pipelines.</sub>
14</p>
15 
16<p align="center">
17 <a href="https://github.com/0xMassi/webclaw/stargazers"><img src="https://shieldcn.dev/github/stars/0xMassi/webclaw.svg?variant=branded&logo=github" alt="Stars" /></a>
18 <a href="https://github.com/0xMassi/webclaw/releases"><img src="https://shieldcn.dev/github/tag/0xMassi/webclaw.svg?variant=branded&logo=rust" alt="Version" /></a>
19 <a href="https://github.com/0xMassi/webclaw/blob/main/LICENSE"><img src="https://shieldcn.dev/github/license/0xMassi/webclaw.svg?variant=branded" alt="License" /></a>
20 <a href="https://www.npmjs.com/package/create-webclaw"><img src="https://shieldcn.dev/npm/dt/create-webclaw.svg?variant=branded" alt="npm installs" /></a>
21</p>
22 
23<p align="center">
24 <a href="https://discord.gg/KDfd48EpnW"><img src="https://shieldcn.dev/badge/Discord-Join.svg?variant=branded&logo=discord" alt="Discord" /></a>
25 <a href="https://x.com/webclaw_io"><img src="https://shieldcn.dev/badge/Follow-@webclaw__io.svg?variant=branded&logo=x" alt="X / Twitter" /></a>
26 <a href="https://webclaw.io"><img src="https://shieldcn.dev/badge/Hosted-webclaw.io.svg?variant=branded&logo=safari" alt="Hosted webclaw" /></a>
27 <a href="https://webclaw.io/docs"><img src="https://shieldcn.dev/badge/Docs-Read.svg?variant=branded&logo=readthedocs" alt="Docs" /></a>
28</p>
29 
30<p align="center">
31 <img src="assets/demo.gif" alt="webclaw extracting clean markdown from a page" width="760" />
32</p>
33 
34---
35 
36Most web scraping tools give your agent one of two bad outputs:
37 
38- a blocked page, login wall, or empty app shell
39- raw HTML full of nav, scripts, styling, ads, and duplicated boilerplate
40 
41[webclaw.io](https://webclaw.io) is the hosted web extraction API for webclaw. This repo contains the open-source CLI, MCP server, extraction engine, and self-hostable server.
42 
43webclaw turns a URL into clean content your tools can actually use.
44 
45```bash
46webclaw https://example.com --format markdown
47```
48 
49```md
50# Example Domain
51 
52This domain is for use in illustrative examples in documents.
53 
54You may use this domain in literature without prior coordination or asking for permission.
55```
56 
57Use it from the terminal, wire it into Claude/Cursor through MCP, call the hosted API from your app, or self-host the OSS server.
58 
59---
60 
61## Install
62 
63### Agent setup
64 
65The fastest way to connect webclaw to Claude Code, Claude Desktop, Cursor, Windsurf, OpenCode, Codex CLI, and other MCP-compatible tools:
66 
67```bash
68npx create-webclaw
69```
70 
71The installer detects supported clients and configures the MCP server for you.
72 
73### Homebrew
74 
75```bash
76brew tap 0xMassi/webclaw
77brew install webclaw
78```
79 
80### Prebuilt binaries
81 
82Download macOS, Linux, and Windows binaries from [GitHub Releases](https://github.com/0xMassi/webclaw/releases).
83 
84### Docker
85 
86```bash
87docker run --rm ghcr.io/0xmassi/webclaw https://example.com
88```
89 
90### Cargo
91 
92```bash
93cargo install --git https://github.com/0xMassi/webclaw.git webclaw-cli
94cargo install --git https://github.com/0xMassi/webclaw.git webclaw-mcp
95```
96 
97If building from source fails because native build tools are missing, install the platform prerequisites:
98 
99| OS | Command |
100| --- | --- |
101| Debian / Ubuntu | `sudo apt install -y pkg-config libssl-dev cmake clang git build-essential` |
102| Fedora / RHEL | `sudo dnf install -y pkg-config openssl-devel cmake clang git make gcc` |
103| Arch | `sudo pacman -S pkg-config openssl cmake clang git base-devel` |
104| macOS | `xcode-select --install` |
105 
106---
107 
108## Quick Start
109 
110### Scrape one page
111 
112```bash
113webclaw https://stripe.com --format markdown
114```
115 
116### Return LLM-optimized text
117 
118```bash
119webclaw

Preview

0xmassi/webclaw0xmassi/webclaw
Repo0xmassi/webclaw
TypeMCP Servers
CategoryBrowser & Automation
UpdatedJul 2026
LicenseAGPL-3.0
First seenJul 26, 2026

Tags

MCPaiai-agents

Related

6 picks
Type
  1. microsoft avatarplaywright-mcpPlaywright Tools for MCPMCP ServersJul 202626M36k
  2. cloudflare avatarplaywright-mcpPlaywright Tools for MCPMCP ServersApr 202626M250
  3. microsoft avatarPlaywright MCPBrowser automation for agents via accessibility snapshotsMCP Servers6 days ago25M35k
  4. d4vinci avatarscraplingWeb scraping with stealth HTTP, real browsers, and Cloudflare bypass. CSS selectors supported.MCP ServersJul 2026930k72k
  5. firecrawl avatarfirecrawl-mcp-serverMCP server for Firecrawl — search, scrape, and interact with the web.MCP ServersJul 2026480k7.1k
  6. nickclyde avatarduckduckgo-mcp-serverMCP Server for searching via DuckDuckGoMCP ServersJul 2026121k1.4k