Kernleistungen 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
Online Nachrichten

Basis-URL

https://mcp.pressmonitor.com/

Authentifizierung

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

Authorization: Bearer YOUR_TOKEN

Werkzeuge entdecken

Beginnen Sie mit der Auflistung der von dem MCP-Server bereitgestellten Werkzeuge.

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"}'
tool news_headlines

Schlagzeilen-Tool

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 string Nein Anzahl
cursor string Nein Cursor

Code-Beispiele

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":"news_headlines","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'
tool news_briefs

Kurzmeldungs-Tool

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 string Nein Anzahl
cursor string Nein Cursor

Code-Beispiele

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":"news_briefs","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'
tool news_fulltext

Volltext-Tool

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 string Nein Anzahl
cursor string Nein Cursor

Code-Beispiele

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":"news_fulltext","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'