MCP

Notizie Online MCP Server

Le notizie online includono report pubblicati da media nativi digitali, giornali, emittenti, agenzie di stampa e riviste sul web. Sono importanti per la reputazione, i segnali di mercato, gli sviluppi politici e le informazioni pubbliche in rapido movimento.

MCP Version: 1.0.0 3 MCP Tools Authentication
Notizie Online

Base URL

https://mcp.pressmonitor.com/mcp

Authentication

MCP calls use Bearer tokens over JSON-RPC 2.0.

Authorization: Bearer YOUR_TOKEN

headlines

Strumento Titoli

Arguments

Name Type Required Description
keywords_text string Yes Testo parole chiave
lang_code string No Codice lingua
country_code string No Codice Paese
count integer No Conteggio
cursor string No Cursore
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)
sort string No latest|relevance(default)

Code Examples

curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "headlines",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'

briefs

Strumento Sommari

Arguments

Name Type Required Description
keywords_text string Yes Testo parole chiave
lang_code string No Codice lingua
country_code string No Codice Paese
count integer No Conteggio
cursor string No Cursore
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)
sort string No latest|relevance(default)

Code Examples

curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "briefs",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'

fulltext

Strumento Testo completo

Arguments

Name Type Required Description
keywords_text string Yes Testo parole chiave
lang_code string No Codice lingua
country_code string No Codice Paese
count integer No Conteggio
cursor string No Cursore
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)
sort string No latest|relevance(default)

Code Examples

curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "fulltext",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'