MCP

Mídia ImpressaServidor MCP

Jornais, revistas, publicações comerciais, produção editorial, cobertura da imprensa e jornalismo impresso.

MCP Versão: 1.0.0 4 Ferramentas MCP Autenticação
Mídia Impressa

URL base

https://mcp.pressmonitor.com/mcp

Autenticação

As chamadas MCP também usam tokens Bearer em solicitações JSON-RPC 2.0.

Authorization: Bearer YOUR_TOKEN

headlines

Argumentos

Nome Tipo Obrigatório Descrição
keywords_text string Sim
lang_code string Não
country_code string Não
count integer Não
cursor string Não
sort string Não Sort order (date or relevance)
date_from string Não Start date for news (YYYY-MM-DD format)
date_to string Não End date for news (YYYY-MM-DD format)

Exemplos de Código

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

Argumentos

Nome Tipo Obrigatório Descrição
keywords_text string Sim
lang_code string Não
country_code string Não
count integer Não
cursor string Não
sort string Não Sort order (date or relevance)
date_from string Não Start date for news (YYYY-MM-DD format)
date_to string Não End date for news (YYYY-MM-DD format)

Exemplos de Código

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

Argumentos

Nome Tipo Obrigatório Descrição
keywords_text string Sim
lang_code string Não
country_code string Não
count integer Não
cursor string Não
sort string Não Sort order (date or relevance)
date_from string Não Start date for news (YYYY-MM-DD format)
date_to string Não End date for news (YYYY-MM-DD format)

Exemplos de Código

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
}'

clip

Argumentos

Nome Tipo Obrigatório Descrição
id string Sim Clip/article ID to resolve
ns string Não Namespace prefix for multi-tenant index resolution
date string Sim Date of the clip (YYYY-MM-DD)
host string Não Host name for tenant resolution
ttl integer Não Signed URL time-to-live in seconds

Exemplos de Código

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": "clip",
    "arguments": {
      "id": "VALUE",
      "date": "VALUE"
    }
  },
  "id": 1
}'