# Facebook Scraper3 MCP Server
English | [简体中文](./README.md) | [繁體中文](./README_ZH-TW.md)
An MCP server for accessing Facebook Scraper3 API.
## 🚀 Quick Start with EMCP Platform
**[EMCP](https://sit-emcp.kaleido.guru)** is a powerful MCP server management platform that allows you to quickly use various MCP servers without manual configuration!
### Quick Start:
1. 🌐 Visit **[EMCP Platform](https://sit-emcp.kaleido.guru)**
2. 📝 Register and login
3. 🎯 Go to **MCP Marketplace** to browse all available MCP servers
4. 🔍 Search or find this server (`bach-facebook_scraper3`)
5. 🎉 Click the **"Install MCP"** button
6. ✅ Done! You can now use it in your applications
### EMCP Platform Advantages:
- ✨ **Zero Configuration**: No need to manually edit config files
- 🎨 **Visual Management**: Easy-to-use GUI for managing all MCP servers
- 🔐 **Secure & Reliable**: Centralized API key and authentication management
- 🚀 **One-Click Install**: Rich selection of servers in MCP Marketplace
- 📊 **Usage Statistics**: Real-time service call monitoring
Visit **[EMCP Platform](https://sit-emcp.kaleido.guru)** now to start your MCP journey!
---
## Introduction
This is an MCP server for accessing the Facebook Scraper3 API.
- **PyPI Package**: `bach-facebook_scraper3`
- **Version**: 1.0.0
- **Transport Protocol**: stdio
## 安装
### 从 PyPI 安装:
```bash
pip install bach-facebook_scraper3
```
### 从源码安装:
```bash
pip install -e .
```
## 运行
### 方式 1: 使用 uvx(推荐,无需安装)
```bash
# 运行(uvx 会自动安装并运行)
uvx --from bach-facebook_scraper3 bach_facebook_scraper3
# 或指定版本
uvx --from bach-facebook_scraper3@latest bach_facebook_scraper3
```
### 方式 2: 直接运行(开发模式)
```bash
python server.py
```
### 方式 3: 安装后作为命令运行
```bash
# 安装
pip install bach-facebook_scraper3
# 运行(命令名使用下划线)
bach_facebook_scraper3
```
## Configuration
### API Authentication
This API requires authentication. Please set environment variable:
```bash
export API_KEY="your_api_key_here"
```
### Environment Variables
| Variable | Description | Required |
|----------|-------------|----------|
| `API_KEY` | API Key | Yes |
| `PORT` | N/A | No |
| `HOST` | N/A | No |
### Using with Cursor
Edit Cursor MCP config file `~/.cursor/mcp.json`:
```json
{
"mcpServers": {
"bach-facebook_scraper3": {
"command": "uvx",
"args": ["--from", "bach-facebook_scraper3", "bach_facebook_scraper3"],
"env": {
"API_KEY": "your_api_key_here"
}
}
}
}
```
### Using with Claude Desktop
Edit Claude Desktop config file `claude_desktop_config.json`:
```json
{
"mcpServers": {
"bach-facebook_scraper3": {
"command": "uvx",
"args": ["--from", "bach-facebook_scraper3", "bach_facebook_scraper3"],
"env": {
"API_KEY": "your_api_key_here"
}
}
}
}
```
## 可用工具
此服务器提供以下工具:
### `profiles_photos`
Read profiles photos (from recent) Use cursor to get next page of results
**端点**: `GET /profile/photos`
---
### `comment_by_id`
Get comment by comment id
**端点**: `GET /comment`
---
### `search_people`
Searches people
**端点**: `GET /search/people`
---
### `search_hashtag`
Search posts with hashtag
**端点**: `GET /search/hashtags`
---
### `profile_reels`
Get profile reels. Get `reels_profile_id` from profile details endpoint
**端点**: `GET /profile/reels`
---
### `page_events`
Get all future events created by page
**端点**: `GET /page/events/future`
---
### `post_reactions`
Get post reactions
**端点**: `GET /post/reactions`
---
### `comments___nested`
Get nested comments. You need to use legacy fb id
**端点**: `GET /post/comments_nested`
---
### `page_reels`
Get page reels by page id - use reels_page_id now
**端点**: `GET /page/reels`
---
### `listing_details`
Get listing details
**端点**: `GET /marketplace/details`
---
### `search`
Search marketplace. Use cursor to get next page
**端点**: `GET /marketplace/search`
---
### `comments`
Get post comments. Use comment_id from post
**端点**: `GET /post/comments`
---
### `search_groups_posts`
Searches group for posts
**端点**: `GET /search/groups_posts`
---
### `page_videos`
Get page videos by page delegate id. YOU NEED TO USE DELEGATE ID, NOT PAGE ID.
**端点**: `GET /page/videos`
---
### `pages_photos`
Read page photos (from recent) Use cursor to get next page of results
**端点**: `GET /page/photos`
---
### `pages_posts`
Read page posts (from recent)
**端点**: `GET /page/posts`
---
### `page_details`
Read page details
**端点**: `GET /page/details`
---
### `page_past_events`
Get all past events created by page. Use cursor to get next page of results.
**端点**: `GET /page/events/past`
---
### `get_group_posts`
Get group posts. Only PUBLIC groups can be scrapped! If there are no post response, check if group is not private.
**端点**: `GET /group/posts`
---
### `get_group_future_events`
Get group future events. Only PUBLIC groups can be scrapped! If there are no post response, check if group is not private. Use cursor to get next page of events!
**端点**: `GET /group/future_events`
---
### `search_events`
Searches for facebook events
**端点**: `GET /search/events`
---
### `game_lives`
Get game live videos Use cursor to get next page.
**端点**: `GET /gaming/live`
---
### `browse_games`
Browse games. Use empty query for browse all games. Use cursor to get next page.
**端点**: `GET /gaming/games`
---
### `page_reviews`
Get page reviews. Use cursor to get next page
**端点**: `GET /page/reviews`
---
### `search_video`
Performs facebook videos search
**端点**: `GET /search/videos`
---
### `profile_posts`
Read profile posts (from recent), if public
**端点**: `GET /profile/posts`
---
### `events_details_by_id`
Get events details by event id
**端点**: `GET /event/details_id`
---
### `locations`
Search for facebook locations id. If you get strange results, try add country to query and/or try without diacritic
**端点**: `GET /search/locations`
---
### `search_post`
Performs facebook posts search
**端点**: `GET /search/posts`
---
### `events_details_by_url`
Get events details
**端点**: `GET /event/details`
---
### `profiles_details_by_id`
Get profiles details by id
**端点**: `GET /profile/details_id`
---
### `profile_details_by_url`
Get profile details by url
**端点**: `GET /profile/details_url`
---
### `profile_id`
Get profile id by url
**端点**: `GET /profile/profile_id`
---
### `get_post_details`
Get post details by url or post id. If both are set, post id is used.
**端点**: `GET /post`
---
### `get_group_details`
Get group summary
**端点**: `GET /group/details`
---
### `get_group_id`
Getting group facebook id
**端点**: `GET /group/id`
---
### `page_id`
get page id from url
**端点**: `GET /page/page_id`
---
### `reshares`
Get post reshares
**端点**: `GET /post/share`
---
### `search_place`
Search for fb place
**端点**: `GET /search/places`
---
### `search_pages`
Searches for facebook pages
**端点**: `GET /search/pages`
---
## Tech Stack
- **Transport Protocol**: stdio
- **HTTP Client**: httpx
## License
MIT License - See [LICENSE](./LICENSE) file for details.
## Development
This server is generated by [API-to-MCP](https://github.com/BACH-AI-Tools/api-to-mcp) tool.
Version: 1.0.0