facebook-realtimeapi
3.5
The Facebook RealTimeAPI MCP server provides instant access to Facebook's social data, offering real-time user engagement, trends, and audience insights.
The Facebook RealTimeAPI MCP server is designed to provide instant access to a wide range of Facebook's social data, empowering developers, marketers, and strategists with real-time user engagement, trends, and audience insights. Whether you're tracking engagement metrics, analyzing social trends, or building social applications, this server is tailored to meet your needs with unparalleled reliability and performance.
Features
- 100% Real-Time Data Delivery: Access data as it happens to make informed decisions quickly.
- GDPR Compliant: Ensures zero data storage, maintaining user privacy and compliance.
- Unmatched Reliability & Performance: High service levels ensure the server is always ready when you need it.
- Comprehensive Data Access: From user interactions to market trends, explore a broad spectrum of data points.
MCP Tools
- Url: Retrieve data related to specific URLs.
- Videos_search: Search for videos based on specific queries.
- Post_comments: Access comments on posts using the post ID.
- Post_shares: Retrieve data on how posts are shared.
- Post_reactions: Access detailed reaction data for posts.
- Posts_search: Search for posts using various filters.
- Photos_search: Search for photos using specific criteria.
- Page Feed: Access the feed of a Facebook page.
- Page Details: Retrieve detailed information about a Facebook page.
- Pages_search: Search pages with specific criteria.
- Page Albums: Access albums associated with a page.
- Group Info: Retrieve information about specific Facebook groups.
- Group_admins: Get details of group admins using the group ID.
- Group_feed: Access the group's feed and content.
- Groups_search: Search for groups with specific criteria.
- Events_search: Search for events using specific queries.
- Event_details: Retrieve detailed information about specific events.
- Profile Likes: Access data on profile likes.
- Profile Timeline: Retrieve timeline data for a profile.
- Profile_followers: Access data about profile followers.
- Profile_search: Search profiles using specific criteria.
- Album_media: Retrieve media associated with specific albums.
- Album_metadata: Access metadata information for albums.
- Advertiser page ads: Access data on ads associated with an advertiser's page.
- Spend by Locations: Retrieve spending data segmented by location.
- Advertisers Search: Search for advertisers using specific criteria.
- Marketplace Search: Search for products and listings on Facebook Marketplace.
- Marketplace Product: Retrieve data on specific marketplace products.
- Marketplace Profile: Access profile information related to marketplace activity.
Usage with Different Platforms
python
python
import requests
url = 'https://api.facebookrealtime.com/data'
params = {
'access_token': 'YOUR_ACCESS_TOKEN',
'query': 'your_query_here'
}
response = requests.get(url, params=params)
data = response.json()
print(data)
nodejs
javascript
const axios = require('axios');
const url = 'https://api.facebookrealtime.com/data';
const params = {
access_token: 'YOUR_ACCESS_TOKEN',
query: 'your_query_here'
};
axios.get(url, { params })
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});