Servizi principali MCP
Media Print Server MCP
Giornali, riviste, pubblicazioni di settore, output editoriale, copertura stampa e giornalismo cartaceo.
MCP Versione: 1.0.0 9 Strumenti MCP Autenticazione
URL base
https://mcp.pressmonitor.com/ Autenticazione
Le chiamate MCP utilizzano anche Bearer token su richieste JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN Scopri strumenti
Inizia elencando gli strumenti esposti dal server 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()) tool
search_papers Cerca le pubblicazioni disponibili di giornali e riviste
Cerca le pubblicazioni disponibili di giornali e riviste
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| ns | string | No | Namespace (default: PMIN) |
| query | string | No | Termini di ricerca o parole chiave |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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()) tool
search_headlines Ottieni i titoli dei media stampati
Ottieni i titoli dei media stampati
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| query | string | Sì | Termini di ricerca o parole chiave |
| ns | string | No | Namespace (default: PMIN) |
| paper_id | string | No | ID della pubblicazione per filtro |
| edition | string | No | Nome edizione per filtro |
| country_code | string | No | Filtra per codice paese (ISO 3166-1 alpha-2) |
| lang_code | string | No | Filtra per codice lingua (ISO 639-1) |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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()) tool
search_briefs Ottieni riepiloghi dei media stampati (titolo + descrizione)
Ottieni riepiloghi dei media stampati (titolo + descrizione)
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| query | string | Sì | Termini di ricerca o parole chiave |
| ns | string | No | Namespace (default: PMIN) |
| paper_id | string | No | ID della pubblicazione per filtro |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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()) tool
search_fulltext Ottieni articoli completi dei media stampati
Ottieni articoli completi dei media stampati
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| query | string | Sì | Termini di ricerca o parole chiave |
| ns | string | No | Namespace (default: PMIN) |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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()) tool
search_fulltext_metadata Ottieni testo completo con NER, NEL e metadati di classificazione
Ottieni testo completo con NER, NEL e metadati di classificazione
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| query | string | Sì | Termini di ricerca o parole chiave |
| ns | string | No | Namespace (default: PMIN) |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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()) tool
search_headlines_translated Ottieni titoli dei media stampati tradotti
Ottieni titoli dei media stampati tradotti
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| query | string | Sì | Termini di ricerca o parole chiave |
| target_lang_code | string | Sì | Codice lingua di destinazione per traduzione (ISO 639-1) |
| ns | string | No | Namespace (default: PMIN) |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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()) tool
search_briefs_translated Ottieni riepiloghi dei media stampati tradotti
Ottieni riepiloghi dei media stampati tradotti
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| query | string | Sì | Termini di ricerca o parole chiave |
| target_lang_code | string | Sì | Codice lingua di destinazione per traduzione (ISO 639-1) |
| ns | string | No | Namespace (default: PMIN) |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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()) tool
search_fulltext_translated Ottieni articoli completi dei media stampati tradotti
Ottieni articoli completi dei media stampati tradotti
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| query | string | Sì | Termini di ricerca o parole chiave |
| target_lang_code | string | Sì | Codice lingua di destinazione per traduzione (ISO 639-1) |
| ns | string | No | Namespace (default: PMIN) |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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()) tool
search_fulltext_metadata_translated Ottieni testo completo tradotto con metadati
Ottieni testo completo tradotto con metadati
Argomenti
| Nome | Tipo | Obbligatorio | Descrizione |
|---|---|---|---|
| query | string | Sì | Termini di ricerca o parole chiave |
| target_lang_code | string | Sì | Codice lingua di destinazione per traduzione (ISO 639-1) |
| ns | string | No | Namespace (default: PMIN) |
| count | string | No | Numero di risultati da restituire |
Esempi di codice
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())