12 web scraping tools as MCP server for AI agents (Claude Desktop, ChatGPT, Cursor). Reddit, Amazon, eBay, Google Maps, Yelp, YouTube, TikTok, Indeed, Trustpilot, contact finder, SaaS pricing.
- ✓Recently active
- ✓Clear description
- !No standard license detected
git clone https://github.com/Perufitlife/multi-scraper-mcp{
"mcpServers": {
"multi-scraper-mcp": {
"command": "node",
"args": ["/path/to/multi-scraper-mcp/dist/index.js"]
}
}
}MCP Servers overview
# Multi-Scraper MCP — 12 scraping tools for AI agents, one MCP server
Give your AI agent real-time web data with a single connection. This [Model Context Protocol](https://modelcontextprotocol.io) server exposes **12 production scraping tools** — Reddit, Amazon, eBay, Google Maps (search + reviews), Yelp, YouTube, TikTok, Indeed, Trustpilot, website contact finder, and SaaS pricing tracker — to Claude, ChatGPT, Cursor, Cline, Windsurf, or any MCP client.
One endpoint. Twelve tools. Pay only for the calls your agent makes.
## The 12 tools
| Tool | What your agent gets |
|------|----------------------|
| `reddit_scrape` | Subreddit posts, Reddit-wide search, comment threads — sentiment & market research |
| `amazon_search` | Products, prices, ratings, ASINs — 10 marketplaces (US/UK/DE/FR/IT/ES/CA/AU/JP/IN) |
| `ebay_search` | Live listings + **sold listings** for real market-price history |
| `google_maps_search` | Local businesses: name, address, phone, website, rating, GPS |
| `google_maps_reviews` | Full review text + ratings for any Google Maps place |
| `yelp_search` | Yelp businesses via the official Fusion API (bring your free Yelp key) |
| `youtube_channel` | Channel stats + recent video metrics |
| `tiktok_profile` | Creator profiles, video stats, hashtag discovery |
| `indeed_jobs` | Job listings with salary data — 7 countries, date/type filters |
| `trustpilot_reviews` | Company reviews — mine complaints with `filterByRating: 1` |
| `website_contacts` | Emails, phones, social links, tech stack from any domain |
| `saas_pricing` | Structured pricing tiers from any SaaS pricing page + change detection |
## Quick start
You need an [Apify account](https://console.apify.com/sign-up) (free tier works) and your API token from [Console → Settings → API & Integrations](https://console.apify.com/settings/integrations).
The MCP endpoint (Streamable HTTP):
```
https://renzomacar--multi-scraper-mcp.apify.actor/mcp
```
Authenticate with `Authorization: Bearer <YOUR_APIFY_TOKEN>` (or append `?token=<YOUR_APIFY_TOKEN>`).
### Claude Code
```bash
claude mcp add --transport http multi-scraper \
"https://renzomacar--multi-scraper-mcp.apify.actor/mcp" \
--header "Authorization: Bearer YOUR_APIFY_TOKEN"
```
### Claude Desktop
Settings → Developer → Edit Config, then add:
```json
{
"mcpServers": {
"multi-scraper": {
"command": "npx",
"args": [
"mcp-remote",
"https://renzomacar--multi-scraper-mcp.apify.actor/mcp",
"--header",
"Authorization: Bearer YOUR_APIFY_TOKEN"
]
}
}
}
```
### Cursor / Windsurf / Cline
Add to your MCP config (e.g. `.cursor/mcp.json`):
```json
{
"mcpServers": {
"multi-scraper": {
"url": "https://renzomacar--multi-scraper-mcp.apify.actor/mcp",
"headers": { "Authorization": "Bearer YOUR_APIFY_TOKEN" }
}
}
}
```
### ChatGPT (Developer Mode connectors)
Settings → Connectors → Advanced → Developer mode → Add custom connector, with URL:
```
https://renzomacar--multi-scraper-mcp.apify.actor/mcp?token=YOUR_APIFY_TOKEN
```
### Legacy SSE clients
An SSE transport is also available at `/sse` (+ `/messages`) for older clients.
## Pricing — transparent pay-per-event
| Event | Price |
|-------|-------|
| Tool call (successful) | **$0.05** |
| Actor start (standby wake-up) | $0.00005 per GB |
- No subscription, no minimums — you pay only when your agent actually calls a tool.
- Underlying scraper runs execute under your Apify account at their own listed rates (typically fractions of a cent per result).
- Failed tool calls are **not** charged.
## Notes per tool
- **`yelp_search`** needs a Yelp Fusion API key — free, 5,000 calls/day, 2 minutes to get at [docs.developer.yelp.com](https://docs.developer.yelp.com/). Pass it as the `yelpApiKey` tool argument.
- **`reddit_scrape`** survived Reddit shutting down its public `.json` endpoints (June 2026, universal 403): it now falls back to Reddit RSS feeds with a circuit breaker, so it keeps returning posts. In RSS mode items don't include score/comment counts (`source: rss-fallback`).
- Keep `maxResults*` small (10–30) for snappy agent loops; raise them for batch research.
## Example agent workflows
- **Local lead-gen pipeline**: `google_maps_search` ("dentists in Miami") → `website_contacts` (emails + tech stack) → your CRM.
- **Product intelligence**: `amazon_search` + `ebay_search` (soldOnly) → real street price vs. listed price.
- **Brand/sentiment monitor**: `reddit_scrape` + `trustpilot_reviews` (filterByRating: 1) + `google_maps_reviews` → weekly complaint digest.
- **Competitor watch**: `saas_pricing` on competitor pricing pages with `compareWithPrevious: true` → alert on changes.
- **Hiring-signal prospecting**: `indeed_jobs` ("Shopify developer") → companies investing in e-commerce → `website_contacts`.
## Why this server
- Every tool wraps a battle-tested public Apify Actor (4,000+ combined runs).
- Structured JSON with consistent schemas — built for LLM consumption, results truncated to stay token-friendly.
- Both modern Streamable HTTP (`/mcp`) and legacy SSE (`/sse`) transports.
- Open source: [github.com/Perufitlife/multi-scraper-mcp](https://github.com/Perufitlife/multi-scraper-mcp).
## Found this useful?
Please leave a quick review on the **Reviews** tab — it genuinely helps independent developers get visibility on the Apify Store. Thanks!
What people ask about multi-scraper-mcp
What is Perufitlife/multi-scraper-mcp?
+
Perufitlife/multi-scraper-mcp is mcp servers for the Claude AI ecosystem. 12 web scraping tools as MCP server for AI agents (Claude Desktop, ChatGPT, Cursor). Reddit, Amazon, eBay, Google Maps, Yelp, YouTube, TikTok, Indeed, Trustpilot, contact finder, SaaS pricing. It has 1 GitHub stars and was last updated today.
How do I install multi-scraper-mcp?
+
You can install multi-scraper-mcp by cloning the repository (https://github.com/Perufitlife/multi-scraper-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Perufitlife/multi-scraper-mcp safe to use?
+
Our security agent has analyzed Perufitlife/multi-scraper-mcp and assigned a Trust Score of 49/100 (tier: Caution). See the full breakdown of passed checks and flags on this page.
Who maintains Perufitlife/multi-scraper-mcp?
+
Perufitlife/multi-scraper-mcp is maintained by Perufitlife. The last recorded GitHub activity is from today, with 0 open issues.
Are there alternatives to multi-scraper-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy multi-scraper-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/perufitlife-multi-scraper-mcp)<a href="https://claudewave.com/repo/perufitlife-multi-scraper-mcp"><img src="https://claudewave.com/api/badge/perufitlife-multi-scraper-mcp" alt="Featured on ClaudeWave: Perufitlife/multi-scraper-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。