MCP
Online Nachrichten MCP-Server
Online Nachrichten umfassen Berichterstattungen von digitalen Medien, Zeitungen, Rundfunkanstalten, Nachrichtenagenturen und Magazinen im Internet. Sie sind wichtig für das Ansehen, Marktsignale, politische Entwicklungen und aktuelle öffentliche Informationen.
MCP Version: 1.0.0 3 MCP-Tools Authentifizierung
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
Schlagzeilen-Tool
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| keywords_text | string | Ja | Schlüsselworttext |
| lang_code | string | Nein | Sprachcode |
| country_code | string | Nein | Ländercode |
| count | integer | Nein | Anzahl |
| cursor | string | Nein | Cursor |
| date_from | string | Nein | Start date for news (YYYY-MM-DD format) |
| date_to | string | Nein | End date for news (YYYY-MM-DD format) |
| sort | string | Nein | latest|relevance(default) |
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
Kurzmeldungs-Tool
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| keywords_text | string | Ja | Schlüsselworttext |
| lang_code | string | Nein | Sprachcode |
| country_code | string | Nein | Ländercode |
| count | integer | Nein | Anzahl |
| cursor | string | Nein | Cursor |
| date_from | string | Nein | Start date for news (YYYY-MM-DD format) |
| date_to | string | Nein | End date for news (YYYY-MM-DD format) |
| sort | string | Nein | latest|relevance(default) |
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
Volltext-Tool
Argumente
| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| keywords_text | string | Ja | Schlüsselworttext |
| lang_code | string | Nein | Sprachcode |
| country_code | string | Nein | Ländercode |
| count | integer | Nein | Anzahl |
| cursor | string | Nein | Cursor |
| date_from | string | Nein | Start date for news (YYYY-MM-DD format) |
| date_to | string | Nein | End date for news (YYYY-MM-DD format) |
| sort | string | Nein | latest|relevance(default) |
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
}'