MCP

Veille Facebook pour marques, vendeurs et équipes communautaires MCP Server

Outils MCP pour Facebook

URL de base

https://mcp.pressmonitor.com/facebook/v1

Authentification

Les appels MCP utilisent également des jetons Bearer via des requêtes JSON-RPC 2.0.

Authorization: Bearer YOUR_TOKEN

Découvrir les outils

Commencez par lister les outils exposés par le serveur MCP.

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
outil album_metadata

Métadonnées d'album

Métadonnées d'album

Arguments

Nom Type Obligatoire Description
album_id string Oui Identifiant de l'album

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"album_metadata","arguments":{"album_id":"SOME_STRING_VALUE"}}}'
outil event_details

Détails de l'événement

Détails de l'événement

Arguments

Nom Type Obligatoire Description
event_id string Oui Identifiant de l'événement

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"event_details","arguments":{"event_id":"SOME_STRING_VALUE"}}}'
outil get_post

Obtenir un post

Obtenir un post

Arguments

Nom Type Obligatoire Description
post_id string Oui Identifiant du post

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_post","arguments":{"post_id":"SOME_STRING_VALUE"}}}'
outil group_about

À propos du groupe

À propos du groupe

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_about","arguments":{"id":"SOME_STRING_VALUE"}}}'
outil group_admins

Administrateurs du groupe

Administrateurs du groupe

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_admins","arguments":{"id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil group_albums

Albums du groupe

Albums du groupe

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_albums","arguments":{"id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil group_feed

Fil d'actualité du groupe

Fil d'actualité du groupe

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_feed","arguments":{"id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil group_info

Informations sur le groupe

Informations sur le groupe

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_info","arguments":{"id":"SOME_STRING_VALUE"}}}'
outil group_members

Membres du groupe

Membres du groupe

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_members","arguments":{"id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil group_photos

Photos de groupe

Photos de groupe

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"group_photos","arguments":{"id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil groups

Groupes

Groupes

Arguments

Nom Type Obligatoire Description
query string Oui Requête de recherche
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"groups","arguments":{"query":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil marketplace_product

Produit du marketplace

Produit du marketplace

Arguments

Nom Type Obligatoire Description
product_id string Oui Identifiant du produit

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"marketplace_product","arguments":{"product_id":"SOME_STRING_VALUE"}}}'
outil marketplace_profile

Profil du marketplace

Profil du marketplace

Arguments

Nom Type Obligatoire Description
user_id string Oui Identifiant utilisateur
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"marketplace_profile","arguments":{"user_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil page_albums

Albums de la page

Albums de la page

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"page_albums","arguments":{"id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil page_details

Détails de la page

Détails de la page

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"page_details","arguments":{"id":"SOME_STRING_VALUE"}}}'
outil page_feed

Fil de la page

Fil de la page

Arguments

Nom Type Obligatoire Description
id string Oui Identifiant
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"page_feed","arguments":{"id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil pages_search_post

Recherche de publication de pages

Recherche de publication de pages

Arguments

Nom Type Obligatoire Description
query string Oui Requête de recherche
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pages_search_post","arguments":{"query":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil photos

Photos

Photos

Arguments

Nom Type Obligatoire Description
query string Oui Requête de recherche
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"photos","arguments":{"query":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil post_comments

Commentaires de publication

Commentaires de publication

Arguments

Nom Type Obligatoire Description
post_id string Oui Identifiant de la publication
end_cursor string Non Curseur de fin
order string Non Ordre

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_comments","arguments":{"post_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR","order":"SOME_STRING_VALUE"}}}'
outil post_reactions

Réactions au post

Réactions au post

Arguments

Nom Type Obligatoire Description
post_id string Oui ID du post
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_reactions","arguments":{"post_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil post_reactions_count

Nombre de réactions au post

Nombre de réactions au post

Arguments

Nom Type Obligatoire Description
post_id string Oui ID du post

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_reactions_count","arguments":{"post_id":"SOME_STRING_VALUE"}}}'
outil post_shares

Partages du post

Partages du post

Arguments

Nom Type Obligatoire Description
post_id string Oui ID du post
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_shares","arguments":{"post_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil posts_search_post

Recherche d'un post

Recherche d'un post

Arguments

Nom Type Obligatoire Description
query string Oui Requête de recherche
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"posts_search_post","arguments":{"query":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil profile_about

À propos du profil

À propos du profil

Arguments

Nom Type Obligatoire Description
user_id string Oui ID utilisateur

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_about","arguments":{"user_id":"SOME_STRING_VALUE"}}}'
outil profile_albums

Albums du profil

Albums du profil

Arguments

Nom Type Obligatoire Description
user_id string Oui ID utilisateur
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_albums","arguments":{"user_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil profile_feed

Fil d'actualité du profil

Fil d'actualité du profil

Arguments

Nom Type Obligatoire Description
user_id string Oui ID utilisateur
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_feed","arguments":{"user_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil profile_friends

Amis du profil

Amis du profil

Arguments

Nom Type Obligatoire Description
user_id string Oui ID utilisateur
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_friends","arguments":{"user_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil profile_likes

Mentions J’aime du profil

Mentions J’aime du profil

Arguments

Nom Type Obligatoire Description
user_id string Oui ID utilisateur
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_likes","arguments":{"user_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil profile_page

Page du profil

Page du profil

Arguments

Nom Type Obligatoire Description
user_id string Oui ID utilisateur

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_page","arguments":{"user_id":"SOME_STRING_VALUE"}}}'
outil profile_photos

Photos du profil

Photos du profil

Arguments

Nom Type Obligatoire Description
user_id string Oui ID utilisateur
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_photos","arguments":{"user_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil profile_search_post

Recherche de publication de profil

Recherche de publication de profil

Arguments

Nom Type Obligatoire Description
query string Oui Requête de recherche
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_search_post","arguments":{"query":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil profile_videos

Vidéos de profil

Vidéos de profil

Arguments

Nom Type Obligatoire Description
user_id string Oui Identifiant utilisateur
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile_videos","arguments":{"user_id":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'
outil share_post_url

Partager l’URL de la publication

Partager l’URL de la publication

Arguments

Nom Type Obligatoire Description
url string Oui URL

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"share_post_url","arguments":{"url":"SOME_STRING_VALUE"}}}'
outil url

URL

URL

Arguments

Nom Type Obligatoire Description
url string Oui URL

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"url","arguments":{"url":"SOME_STRING_VALUE"}}}'
outil video_id_url

URL de l’identifiant vidéo

URL de l’identifiant vidéo

Arguments

Nom Type Obligatoire Description
url string Oui URL

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"video_id_url","arguments":{"url":"SOME_STRING_VALUE"}}}'
outil videos

Vidéos

Vidéos

Arguments

Nom Type Obligatoire Description
query string Oui Requête de recherche
end_cursor string Non Curseur de fin

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/facebook/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"videos","arguments":{"query":"SOME_STRING_VALUE","end_cursor":"NEXT_CURSOR"}}}'