MCP

Veille médiatique mondiale en ligne pour les équipes de recherche et de décision MCP Server

Outils MCP pour recherche directe dans les actualités en ligne

URL de base

https://mcp.pressmonitor.com/

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/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
outil news_headlines

Titres d'actualités

Titres d'actualités

Arguments

Nom Type Obligatoire Description
keywords_text string Oui Texte des mots-clés
lang_code string Non Code langue
country_code string Non Code pays
count string Non Nombre
cursor string Non Curseur

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_headlines","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'
outil news_briefs

Notes de synthèse

Notes de synthèse

Arguments

Nom Type Obligatoire Description
keywords_text string Oui Texte des mots-clés
lang_code string Non Code langue
country_code string Non Code pays
count string Non Nombre
cursor string Non Curseur

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_briefs","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'
outil news_fulltext

Texte intégral des actualités

Texte intégral des actualités

Arguments

Nom Type Obligatoire Description
keywords_text string Oui Texte des mots-clés
lang_code string Non Code langue
country_code string Non Code pays
count string Non Nombre
cursor string Non Curseur

Exemples de code

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_fulltext","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'