7015b08063
All three had rotted past honest usability: - Douyin's upstream (yzfly/douyin-mcp-server) is archived and required a 4-step manual local-server setup nobody could complete - Weibo depended on an unmaintained personal fork (mcp-server-weibo) - WeChat full-article reading was increasingly blocked by anti-bot (#339) while doctor still advertised it as zero-config Removes the channel files, installers, skill routing/trigger entries, reference sections and README rows (zh+en). Honest counts: 13 platforms, 6 zero-config. They can return when maintained upstreams exist. Follows the v1.4.0 precedent of removing Discord/Toutiao (#234). Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
51 lines
1.1 KiB
Markdown
51 lines
1.1 KiB
Markdown
# 网页阅读
|
|
|
|
通用网页、RSS。
|
|
|
|
## 通用网页 (Jina Reader)
|
|
|
|
```bash
|
|
# 读取任意网页内容
|
|
curl -s "https://r.jina.ai/URL"
|
|
|
|
# 示例
|
|
curl -s "https://r.jina.ai/https://example.com/article"
|
|
```
|
|
|
|
**适用场景**: 大多数网页可以直接用 Jina Reader 读取。
|
|
|
|
## Web Reader (MCP)
|
|
|
|
```bash
|
|
# 读取网页内容 (Markdown 格式)
|
|
mcporter call 'web-reader.webReader(url: "https://example.com")'
|
|
|
|
# 保留图片
|
|
mcporter call 'web-reader.webReader(url: "https://example.com", retain_images: true)'
|
|
|
|
# 纯文本格式
|
|
mcporter call 'web-reader.webReader(url: "https://example.com", return_format: "text")'
|
|
```
|
|
|
|
**适用场景**: 需要更精确控制输出格式时使用。
|
|
|
|
## RSS (feedparser)
|
|
|
|
```python
|
|
python3 -c "
|
|
import feedparser
|
|
for e in feedparser.parse('FEED_URL').entries[:5]:
|
|
print(f'{e.title} — {e.link}')
|
|
"
|
|
```
|
|
|
|
**适用场景**: 订阅博客、新闻源、播客等 RSS feed。
|
|
|
|
## 选择指南
|
|
|
|
| 场景 | 推荐工具 |
|
|
|-----|---------|
|
|
| 通用网页 | Jina Reader (`curl r.jina.ai`) |
|
|
| 需要图片/格式控制 | web-reader MCP |
|
|
| RSS 订阅 | feedparser |
|