Presse ecrite MCP Server
Journaux, magazines, publications professionnelles, production editoriale, couverture de presse et journalisme imprime.
URL de base
https://mcp.pressmonitor.com/ Authentification
Les appels MCP utilisent aussi un jeton Bearer avec des requetes JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN Decouvrir les outils
Commencez par lister les outils exposes 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"}' const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify({ jsonrpc: '2.0', id: 1, method: 'tools/list' }) }); console.log(await response.json()); import requests payload = { 'jsonrpc': '2.0', 'id': 1, 'method': 'tools/list' } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_papers Search Papers
Rechercher les publications de journaux et magazines disponibles
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| ns | string | Non | Espace de noms (defaut: PMIN) |
| query | string | Non | Termes ou mots-cles de recherche |
| count | string | Non | Nombre de resultats a retourner |
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":"search_papers","arguments":{"ns":"PMIN","query":"SOME_STRING_VALUE","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_papers", "arguments": { "ns": "PMIN", "query": "SOME_STRING_VALUE", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_papers", "arguments": { "ns": "PMIN", "query": "SOME_STRING_VALUE", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_headlines Search Headlines
Obtenir les titres de la presse ecrite
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| query | string | Oui | Termes ou mots-cles de recherche |
| ns | string | Non | Espace de noms (defaut: PMIN) |
| paper_id | string | Non | ID de publication pour filtrer |
| edition | string | Non | Nom de l'edition pour filtrer |
| country_code | string | Non | Filtrer par code pays (ISO 3166-1 alpha-2) |
| lang_code | string | Non | Filtrer par code langue (ISO 639-1) |
| count | string | Non | Nombre de resultats a retourner |
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":"search_headlines","arguments":{"query":"SOME_STRING_VALUE","ns":"PMIN","paper_id":"SOME_STRING_VALUE","edition":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_headlines", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "paper_id": "SOME_STRING_VALUE", "edition": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_headlines", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "paper_id": "SOME_STRING_VALUE", "edition": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_briefs Search Briefs
Obtenir les resumes de la presse ecrite (titre + description)
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| query | string | Oui | Termes ou mots-cles de recherche |
| ns | string | Non | Espace de noms (defaut: PMIN) |
| paper_id | string | Non | ID de publication pour filtrer |
| count | string | Non | Nombre de resultats a retourner |
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":"search_briefs","arguments":{"query":"SOME_STRING_VALUE","ns":"PMIN","paper_id":"SOME_STRING_VALUE","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_briefs", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "paper_id": "SOME_STRING_VALUE", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_briefs", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "paper_id": "SOME_STRING_VALUE", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_fulltext Search Fulltext
Obtenir les articles complets de la presse ecrite
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| query | string | Oui | Termes ou mots-cles de recherche |
| ns | string | Non | Espace de noms (defaut: PMIN) |
| count | string | Non | Nombre de resultats a retourner |
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":"search_fulltext","arguments":{"query":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_fulltext_metadata Search Fulltext Metadata
Obtenir le texte complet avec metadonnees NER, NEL et classification
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| query | string | Oui | Termes ou mots-cles de recherche |
| ns | string | Non | Espace de noms (defaut: PMIN) |
| count | string | Non | Nombre de resultats a retourner |
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":"search_fulltext_metadata","arguments":{"query":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_metadata", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_metadata", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_headlines_translated Search Headlines Translated
Obtenir les titres traduits de la presse ecrite
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| query | string | Oui | Termes ou mots-cles de recherche |
| target_lang_code | string | Oui | Code langue cible pour la traduction (ISO 639-1) |
| ns | string | Non | Espace de noms (defaut: PMIN) |
| count | string | Non | Nombre de resultats a retourner |
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":"search_headlines_translated","arguments":{"query":"SOME_STRING_VALUE","target_lang_code":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_headlines_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_headlines_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_briefs_translated Search Briefs Translated
Obtenir les resumes traduits de la presse ecrite
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| query | string | Oui | Termes ou mots-cles de recherche |
| target_lang_code | string | Oui | Code langue cible pour la traduction (ISO 639-1) |
| ns | string | Non | Espace de noms (defaut: PMIN) |
| count | string | Non | Nombre de resultats a retourner |
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":"search_briefs_translated","arguments":{"query":"SOME_STRING_VALUE","target_lang_code":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_briefs_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_briefs_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_fulltext_translated Search Fulltext Translated
Obtenir les articles complets traduits de la presse ecrite
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| query | string | Oui | Termes ou mots-cles de recherche |
| target_lang_code | string | Oui | Code langue cible pour la traduction (ISO 639-1) |
| ns | string | Non | Espace de noms (defaut: PMIN) |
| count | string | Non | Nombre de resultats a retourner |
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":"search_fulltext_translated","arguments":{"query":"SOME_STRING_VALUE","target_lang_code":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_fulltext_metadata_translated Search Fulltext Metadata Translated
Obtenir le texte complet traduit avec metadonnees
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| query | string | Oui | Termes ou mots-cles de recherche |
| target_lang_code | string | Oui | Code langue cible pour la traduction (ISO 639-1) |
| ns | string | Non | Espace de noms (defaut: PMIN) |
| count | string | Non | Nombre de resultats a retourner |
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":"search_fulltext_metadata_translated","arguments":{"query":"SOME_STRING_VALUE","target_lang_code":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_metadata_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_metadata_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json())