MCP

Printmedien MCP-Server

Zeitungen, Magazine, Fachpublikationen, redaktionelle Inhalte, Presseberichterstattung und Printjournalismus.

MCP Version: 1.0.0 4 MCP-Tools Authentifizierung
Printmedien

Basis-URL

https://mcp.pressmonitor.com/mcp

Authentifizierung

MCP-Anrufe verwenden ebenfalls Bearer-Token über JSON-RPC 2.0-Anfragen.

Authorization: Bearer YOUR_TOKEN

headlines

Argumente

Name Typ Erforderlich Beschreibung
keywords_text string Ja
lang_code string Nein
country_code string Nein
count integer Nein
cursor string Nein
sort string Nein Sort order (date or relevance)
date_from string Nein Start date for news (YYYY-MM-DD format)
date_to string Nein End date for news (YYYY-MM-DD format)

Code-Beispiele

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

Argumente

Name Typ Erforderlich Beschreibung
keywords_text string Ja
lang_code string Nein
country_code string Nein
count integer Nein
cursor string Nein
sort string Nein Sort order (date or relevance)
date_from string Nein Start date for news (YYYY-MM-DD format)
date_to string Nein End date for news (YYYY-MM-DD format)

Code-Beispiele

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

Argumente

Name Typ Erforderlich Beschreibung
keywords_text string Ja
lang_code string Nein
country_code string Nein
count integer Nein
cursor string Nein
sort string Nein Sort order (date or relevance)
date_from string Nein Start date for news (YYYY-MM-DD format)
date_to string Nein End date for news (YYYY-MM-DD format)

Code-Beispiele

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

Argumente

Name Typ Erforderlich Beschreibung
id string Ja Clip/article ID to resolve
ns string Nein Namespace prefix for multi-tenant index resolution
date string Ja Date of the clip (YYYY-MM-DD)
host string Nein Host name for tenant resolution
ttl integer Nein Signed URL time-to-live in seconds

Code-Beispiele

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