You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Single Go binary. Fetches HTML, strips noise, outputs markdown. Supports single-page fetch and multi-page crawling by depth.
7
+
Single Go binary. Fetches HTML, strips noise, outputs markdown. Works as a CLI and as a Claude Code plugin.
8
8
9
9
---
10
10
11
11
## Install
12
12
13
+
### Claude Code Plugin
14
+
15
+
```
16
+
/install-plugin RandomCodeSpace/rawdoc
17
+
```
18
+
19
+
Adds `/rawdoc` and `/rawdoc-crawl` commands plus `rawdoc_fetch` and `rawdoc_crawl` MCP tools. Requires Go installed on the machine (binary builds automatically on install).
20
+
21
+
### CLI Only
22
+
13
23
```bash
14
24
go install github.com/RandomCodeSpace/rawdoc@latest
15
25
```
@@ -148,45 +158,44 @@ Falls back to readability scoring when no selector matches.
148
158
149
159
---
150
160
151
-
## Claude Code MCP Plugin
161
+
## Claude Code Plugin
152
162
153
-
rawdoc runs as an MCP stdio server with `--serve`. Two tools are exposed:
163
+
### What You Get
154
164
155
-
-**`rawdoc_fetch`** — fetch a single page as markdown/json/text
156
-
-**`rawdoc_crawl`** — crawl linked pages by depth
165
+
| Component | Name | Description |
166
+
|-----------|------|-------------|
167
+
| Command |`/rawdoc <url>`| Fetch a page as markdown |
0 commit comments