MCP
Facebook MCP Server
Around 2 billion daily users share posts, photos, videos, groups, events, and Marketplace listings on Facebook, making it important for community reach, customer service, local discovery, and social commerce.
MCP Version: 1.0.0 29 MCP Tools Authentication
Base URL
https://mcp.pressmonitor.ca/mcp Authentication
MCP calls also use Bearer tokens over JSON-RPC 2.0 requests.
Authorization: Bearer YOUR_TOKEN events_search
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "events_search",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' get_post
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| post_id | string | Yes |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get_post",
"arguments": {
"post_id": "VALUE"
}
},
"id": 1
}' group_info
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "group_info",
"arguments": {
"id": "VALUE"
}
},
"id": 1
}' marketplace_product
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| product_id | string | Yes |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "marketplace_product",
"arguments": {
"product_id": "VALUE"
}
},
"id": 1
}' marketplace_profile
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "marketplace_profile",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' marketplace_search
Marketplace Search
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "marketplace_search",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' page_albums
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "page_albums",
"arguments": {
"id": "VALUE"
}
},
"id": 1
}' page_details
Page Details
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "page_details",
"arguments": {
"id": "VALUE"
}
},
"id": 1
}' page_feed
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "page_feed",
"arguments": {
"id": "VALUE"
}
},
"id": 1
}' pages_search
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "pages_search",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' pages_search_post
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "pages_search_post",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' post_comments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| post_id | string | Yes | |
| end_cursor | string | No | |
| order | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "post_comments",
"arguments": {
"post_id": "VALUE"
}
},
"id": 1
}' post_reactions
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| post_id | string | Yes | |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "post_reactions",
"arguments": {
"post_id": "VALUE"
}
},
"id": 1
}' post_reactions_count
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| post_id | string | Yes |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "post_reactions_count",
"arguments": {
"post_id": "VALUE"
}
},
"id": 1
}' posts_search
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
| date_posted | string | No | |
| end_cursor | string | No | |
| end_date | string | No | |
| recent_posts | string | No | |
| start_date | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "posts_search",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' posts_search_post
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "posts_search_post",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' profile_about
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_about",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' profile_albums
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_albums",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' profile_feed
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_feed",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' profile_friends
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_friends",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' profile_likes
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_likes",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' profile_page
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_page",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' profile_photos
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_photos",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' profile_search
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_search",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' profile_search_post
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_search_post",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' profile_videos
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID |
| end_cursor | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "profile_videos",
"arguments": {
"user_id": "VALUE"
}
},
"id": 1
}' video_id_url
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "video_id_url",
"arguments": {
"url": "VALUE"
}
},
"id": 1
}'