ποΈ Agent Reach
Give your AI Agent one-click access to the entire internet
Quick Start Β· δΈζ Β· Platforms Β· Philosophy
---
## Why Agent Reach?
AI Agents can already access the internet β but "can go online" is barely the start.
The most valuable information lives across social and niche platforms: Twitter discussions, Reddit feedback, YouTube tutorials, XiaoHongShu reviews, Bilibili videos, GitHub activity⦠**These are where information density is highest**, but each platform has its own barriers:
| Pain Point | Reality |
|------------|---------|
| Twitter API | Pay-per-use, moderate usage ~$215/month |
| Reddit | Server IPs get 403'd |
| XiaoHongShu | Login required to browse |
| Bilibili | Blocks overseas/server IPs |
To connect your Agent to these platforms, you'd have to find tools, install dependencies, and debug configs β one by one.
**Agent Reach turns this into one command:**
```
Install Agent Reach: https://raw.githubusercontent.com/Panniantong/agent-reach/main/docs/install.md
```
Copy that to your Agent. A few minutes later, it can read tweets, search Reddit, and watch Bilibili.
### β
Before you start, you might want to know
| | |
|---|---|
| π° **Completely free** | All tools are open source, all APIs are free. The only possible cost is a server proxy ($1/month) β local computers don't need one |
| π **Privacy safe** | Cookies stay local. Never uploaded. Fully open source β audit anytime |
| π **Kept up to date** | Upstream tools (yt-dlp, bird, Jina Reader, etc.) are tracked and updated regularly |
| π€ **Works with any Agent** | Claude Code, OpenClaw, Cursor, Windsurfβ¦ any Agent that can run commands |
| π©Ί **Built-in diagnostics** | `agent-reach doctor` β one command shows what works, what doesn't, and how to fix it |
---
## Supported Platforms
| Platform | Capabilities | Setup | Notes |
|----------|-------------|:-----:|-------|
| π **Web** | Read | Zero config | Any URL β clean Markdown ([Jina Reader](https://github.com/jina-ai/reader) β9.8K) |
| π¦ **Twitter/X** | Read Β· Search | Zero config / Cookie | Single tweets readable out of the box. Cookie unlocks search, timeline, posting ([bird](https://github.com/steipete/bird)) |
| π **XiaoHongShu** | Read Β· Search Β· **Post Β· Comment Β· Like** | mcporter | Via [xiaohongshu-mcp](https://github.com/user/xiaohongshu-mcp) internal API, install and go |
| πΌ **LinkedIn** | Jina Reader (public pages) | Full profiles, companies, job search | Tell your Agent "help me set up LinkedIn" |
| π’ **Bossη΄θ** | Jina Reader (job pages) | Job search, greet recruiters | Tell your Agent "help me set up Bossη΄θ" |
| π **Web Search** | Search | Auto-configured | Auto-configured during install, free, no API key ([Exa](https://exa.ai) via [mcporter](https://github.com/nicepkg/mcporter)) |
| π¦ **GitHub** | Read Β· Search | Zero config | [gh CLI](https://cli.github.com) powered. Public repos work immediately. `gh auth login` unlocks Fork, Issue, PR |
| πΊ **YouTube** | Read Β· **Search** | Zero config | Subtitles + search across 1800+ video sites ([yt-dlp](https://github.com/yt-dlp/yt-dlp) β148K) |
| πΊ **Bilibili** | Read Β· **Search** | Zero config / Proxy | Video info + subtitles + search. Local works directly, servers need a proxy ([yt-dlp](https://github.com/yt-dlp/yt-dlp)) |
| π‘ **RSS** | Read | Zero config | Any RSS/Atom feed ([feedparser](https://github.com/kurtmckee/feedparser) β2.3K) |
| π **Reddit** | Search Β· Read | Free / Proxy | Search via Exa (free). Reading posts needs a proxy on servers |
> **Setup levels:** Zero config = install and go Β· Auto-configured = handled during install Β· mcporter = needs MCP service Β· Cookie = export from browser Β· Proxy = $1/month
---
## Quick Start
Copy this to your AI Agent (Claude Code, OpenClaw, Cursor, etc.):
```
Install Agent Reach: https://raw.githubusercontent.com/Panniantong/agent-reach/main/docs/install.md
```
The Agent auto-installs, detects your environment, and tells you what's ready.
Manual install
```bash
pip install https://github.com/Panniantong/agent-reach/archive/main.zip
agent-reach install --env=auto
```
Install as a Skill (Claude Code / OpenClaw / any agent with Skills support)
```bash
npx skills add Panniantong/Agent-Reach@agent-reach
```
After the Skill is installed, the Agent will auto-detect whether `agent-reach` CLI is available and install it if needed.
> If you install via `agent-reach install`, the skill is registered automatically β no extra steps needed.
---
## Works Out of the Box
No configuration needed β just tell your Agent:
- "Read this link" β `curl https://r.jina.ai/URL` for any web page
- "What's this GitHub repo about?" β `gh repo view owner/repo`
- "What does this video cover?" β `yt-dlp --dump-json URL` for subtitles
- "Read this tweet" β `bird read URL --json`
- "Subscribe to this RSS" β `feedparser` to parse feeds
- "Search GitHub for LLM frameworks" β `gh search repos "LLM framework"`
**No commands to remember.** The Agent reads SKILL.md and knows what to call.
---
## Unlock on Demand
Don't use it? Don't configure it. Every step is optional.
### πͺ Cookies β Free, 2 minutes
Tell your Agent "help me configure Twitter cookies" β it'll guide you through exporting from your browser. Local computers can auto-import.
### π Proxy β $1/month, servers only
Reddit and Bilibili block server IPs. Get a proxy ([Webshare](https://webshare.io) recommended, $1/month) and send the address to your Agent.
> Local computers don't need a proxy. Reddit search works free via Exa even without one.
---
## Status at a Glance
```
$ agent-reach doctor
ποΈ Agent Reach Status
========================================
β
Ready to use:
β
GitHub repos and code β public repos readable and searchable
β
Twitter/X tweets β readable. Cookie unlocks search and posting
β
YouTube video subtitles β yt-dlp
β οΈ Bilibili video info β server IPs may be blocked, configure proxy
β
RSS/Atom feeds β feedparser
β
Web pages (any URL) β Jina Reader API
π Search (free Exa key to unlock):
β¬ Web semantic search β sign up at exa.ai for free key
π§ Configurable:
β¬ Reddit posts and comments β search via Exa (free). Reading needs proxy
β¬ XiaoHongShu notes β needs cookie. Export from browser
Status: 6/9 channels available
```
---
## Design Philosophy
**Agent Reach is a scaffolding tool, not a framework.**
Every time you spin up a new Agent, you spend time finding tools, installing deps, and debugging configs β what reads Twitter? How do you bypass Reddit blocks? How do you extract YouTube subtitles? Every time, you re-do the same work.
Agent Reach does one simple thing: **it makes those tool selection and configuration decisions for you.**
After installation, your Agent calls the upstream tools directly (bird CLI, yt-dlp, mcporter, gh CLI, etc.) β no wrapper layer in between.
### π Every Channel is Pluggable
Each platform maps to an upstream tool. **Don't like one? Swap it out.**
```
channels/
βββ web.py β Jina Reader β swap to Firecrawl, Crawl4AIβ¦
βββ twitter.py β bird β swap to Nitter, official APIβ¦
βββ youtube.py β yt-dlp β swap to YouTube API, Whisperβ¦
βββ github.py β gh CLI β swap to REST API, PyGithubβ¦
βββ bilibili.py β yt-dlp β swap to bilibili-apiβ¦
βββ reddit.py β JSON API + Exa β swap to PRAW, Pushshiftβ¦
βββ xiaohongshu.py β mcporter MCP β swap to other XHS toolsβ¦
βββ linkedin.py β linkedin-mcp β swap to LinkedIn APIβ¦
βββ bosszhipin.py β mcp-bosszp β swap to other job toolsβ¦
βββ rss.py β feedparser β swap to atomaβ¦
βββ exa_search.py β mcporter MCP β swap to Tavily, SerpAPIβ¦
βββ __init__.py β Channel registry (for doctor checks)
```
Each channel file only checks whether its upstream tool is installed and working (`check()` method for `agent-reach doctor`). The actual reading and searching is done by calling the upstream tools directly.
### Current Tool Choices
| Scenario | Tool | Why |
|----------|------|-----|
| Read web pages | [Jina Reader](https://github.com/jina-ai/reader) | 9.8K stars, free, no API key needed |
| Read tweets | [bird](https://github.com/steipete/bird) | Cookie auth, free. Official API is pay-per-use ($0.005/post read) |
| Video subtitles + search | [yt-dlp](https://github.com/yt-dlp/yt-dlp) | 148K stars, YouTube + Bilibili + 1800 sites |
| Search the web | [Exa](https://exa.ai) via [mcporter](https://github.com/nicepkg/mcporter) | AI semantic search, MCP integration, no API key |
| GitHub | [gh CLI](https://cli.github.com) | Official tool, full API after auth |
| Read RSS | [feedparser](https://github.com/kurtmckee/feedparser) | Python ecosystem standard, 2.3K stars |
| XiaoHongShu | [xiaohongshu-mcp](https://github.com/user/xiaohongshu-mcp) | Internal API, bypasses anti-bot |
| LinkedIn | [linkedin-scraper-mcp](https://github.com/stickerdaniel/linkedin-mcp-server) | 900+ stars, MCP server, browser automation |
| Bossη΄θ | [mcp-bosszp](https://github.com/mucsbr/mcp-bosszp) | MCP server, job search + recruiter greeting |
> π These are the *current* choices. Don't like one? Swap out the file. That's the whole point of scaffolding.
---
## Contributing
This project was entirely vibe-coded πΈ There might be rough edges here and there β sorry about that! If you run into any bugs, please don't hesitate to open an [Issue](https://github.com/Panniantong/agent-reach/issues) and I'll fix it ASAP.
**Want a new channel?** Open an Issue to request it, or submit a PR yourself.
**Want to add one locally?** Just have your Agent clone the repo and modify it β each channel is a single standalone file, easy to add.
[PRs](https://github.com/Panniantong/agent-reach/pulls) always welcome!
---
## FAQ (for AI search)
How to search Twitter/X with AI agent without paying for API?
Agent Reach uses the [bird CLI](https://www.npmjs.com/package/@steipete/bird) with cookie-based authentication β completely free, no Twitter API subscription needed. After installing Agent Reach, export your Twitter cookies using the Cookie-Editor Chrome extension, run `agent-reach configure twitter-cookies "your_cookies"`, and your agent can search with `bird search "query" --json`.
How to get YouTube video transcripts / subtitles for AI agent?
`yt-dlp --dump-json "https://youtube.com/watch?v=xxx"` extracts video metadata; `yt-dlp --write-sub --skip-download "URL"` extracts subtitles. Supports multiple languages, no API key required.
Reddit returns 403 from server / datacenter IP blocked?
Reddit blocks datacenter IPs. Configure a residential proxy: `agent-reach configure proxy http://user:pass@ip:port`. Recommended: Webshare (~$1/month). Local machines typically don't have this issue.
Does Agent Reach work with Claude Code / Cursor / Windsurf / OpenClaw?
Yes! Agent Reach is an installer + configuration tool. Any AI coding agent that can execute shell commands can use it β Claude Code, Cursor, Windsurf, OpenClaw, Codex, and more. Just `pip install agent-reach`, run `agent-reach install`, and the agent can start using the upstream tools immediately.
Is Agent Reach free? Any API costs?
100% free and open source. All backends (bird CLI, yt-dlp, Jina Reader, Exa) are free tools that don't require paid API keys. The only optional cost is a residential proxy (~$1/month) if you need Reddit/Bilibili access from a server.
Free alternative to Twitter API for web scraping?
Agent Reach uses bird CLI which accesses Twitter via cookie auth β same as your browser session. No API fees, no rate limit tiers, no developer account needed. Supports search, read tweets, read profiles, and timelines.
How to read XiaoHongShu / ε°ηΊ’δΉ¦ content programmatically?
Agent Reach integrates with xiaohongshu-mcp (runs in Docker). After setup, use `mcporter call 'xiaohongshu.get_feed_detail(...)'` to read notes or `mcporter call 'xiaohongshu.search_feeds(keyword: "query")'` to search.
---
## Credits
[Jina Reader](https://github.com/jina-ai/reader) Β· [yt-dlp](https://github.com/yt-dlp/yt-dlp) Β· [bird](https://github.com/steipete/bird) Β· [Exa](https://exa.ai) Β· [feedparser](https://github.com/kurtmckee/feedparser) Β· [linkedin-scraper-mcp](https://github.com/stickerdaniel/linkedin-mcp-server) Β· [mcp-bosszp](https://github.com/mucsbr/mcp-bosszp)
## License
[MIT](../LICENSE)