Read web pages, articles, and document links by converting URLs into Markdown text. Use the `read_url` tool directly, without bash. Sends the full URL to the th
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-web-reader-d0b0732b2139 ,按照其中的说明把「web-reader」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Converts any URL into clean Markdown text, removing ads, navigation, styling, and other distractions. Suitable for:
tushare, OKX, yfinance, and similar)Call the read_url tool directly (do not use bash + requests, call the tool directly):
read_url(url="https://tushare.pro/document/2?doc_id=27")
Returns JSON:
{
"status": "ok",
"title": "Page title",
"url": "Original URL",
"content": "Page content in Markdown format",
"length": 12345
}
read_url forwards the full target URL
(including any query string) to the external Jina Reader service
(r.jina.ai). Do not pass URLs containing credentials, tokens, or
private/internal addresses — they would leave this host."cached": true; pass no_cache=true to
force a fresh fetch (slower). Use no_cache=true only when a prior result
explicitly reported "cached": true or the task genuinely requires newer
data. Do not use it merely because context compaction removed a prior
payload or because that payload was restored by replay; in that case consume
the restored evidence and continue the analysis.bash + requests fetch is possible, but it bypasses this
tool's URL safety guard and the Jina layer — use sparingly and never
for internal/authenticated URLs.read_url(url="https://tushare.pro/document/2?doc_id=27")
read_url(url="https://blog.example.com/quantitative-trading-guide")
read_url(url="https://github.com/PaddlePaddle/PaddleOCR")