Core Services MCP

Broadcast Media MCP Server

Television, radio, channels, programs, transcripts, broadcast journalism, and audiovisual news coverage.

MCP Version: 1.0.0 4 MCP Tools Authentication
Broadcast Media

Base URL

https://mcp.pressmonitor.fr/news-electronic/v1

Authentication

MCP calls also use Bearer tokens over JSON-RPC 2.0 requests.

Authorization: Bearer YOUR_TOKEN

Discover Tools

Start by listing the tools exposed by the MCP server.

curl -X POST 'https://mcp.pressmonitor.fr/news-electronic/v1' -H 'Content-Type: application/json' -H 'Authorization: Bearer YOUR_TOKEN' -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
tool news_headlines

News Headlines

News Headlines

Arguments

Name Type Required Description
keywords_text string Yes Keywords text
lang_code string No Lang code
country_code string No Country code
count string No Count
cursor string No Cursor

Code Examples

curl -X POST 'https://mcp.pressmonitor.fr/news-electronic/v1' -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"}}}'
tool news_briefs

News Briefs

News Briefs

Arguments

Name Type Required Description
keywords_text string Yes Keywords text
lang_code string No Lang code
country_code string No Country code
count string No Count
cursor string No Cursor

Code Examples

curl -X POST 'https://mcp.pressmonitor.fr/news-electronic/v1' -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"}}}'
tool news_fulltext

News Fulltext

News Fulltext

Arguments

Name Type Required Description
keywords_text string Yes Keywords text
lang_code string No Lang code
country_code string No Country code
count string No Count
cursor string No Cursor

Code Examples

curl -X POST 'https://mcp.pressmonitor.fr/news-electronic/v1' -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"}}}'
tool news_clip

News Clip

News Clip

Arguments

Name Type Required Description
id string Yes Id
date string Yes Date
host string No Host
ttl string No Ttl

Code Examples

curl -X POST 'https://mcp.pressmonitor.fr/news-electronic/v1' -H 'Content-Type: application/json' -H 'Authorization: Bearer YOUR_TOKEN' -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_clip","arguments":{"id":"SOME_STRING_VALUE","date":"SOME_STRING_VALUE","host":"SOME_STRING_VALUE","ttl":3600}}}'