MCP

Google MCP-Server

Milliarden von Menschen nutzen Google jeden Tag, um Webseiten, Nachrichten, Bilder, Videos und lokale Ergebnisse zu finden, was es zu einem unverzichtbaren Tool für Sichtbarkeit, Reputationsmanagement und Bedarfsdeckung macht.

MCP Version: 1.0.0 6 MCP-Tools Authentifizierung
Google

Basis-URL

https://mcp.pressmonitor.com/mcp

Authentifizierung

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

Authorization: Bearer YOUR_TOKEN

search_web

Websuche

Argumente

Name Typ Erforderlich Beschreibung
query_text string Ja Suchtext
lang_code string Nein Sprachcode
country_code string Nein Ländercode
count integer Nein Anzahl der zurückzugebenden Ergebnisse
safesearch string Nein SafeSearch

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

search_news

Nachrichtensuche

Argumente

Name Typ Erforderlich Beschreibung
query_text string Ja Suchtext
lang_code string Nein Sprachcode
country_code string Nein Ländercode
count integer Nein Anzahl der zurückzugebenden Ergebnisse

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

search_images

Bildersuche

Argumente

Name Typ Erforderlich Beschreibung
query_text string Ja Suchtext
lang_code string Nein Sprachcode
country_code string Nein Ländercode
count integer Nein Anzahl der zurückzugebenden Ergebnisse
safesearch string Nein SafeSearch
color string Nein Farbe
size string Nein Größe
type_image string Nein Bildtyp
layout string Nein Layout

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

search_videos

Videosuche

Argumente

Name Typ Erforderlich Beschreibung
query_text string Ja Suchtext
lang_code string Nein Sprachcode
country_code string Nein Ländercode
count integer Nein Anzahl der zurückzugebenden Ergebnisse
safesearch string Nein SafeSearch
timelimit string Nein Zeitlimit
duration string Nein Dauer
resolution string Nein Auflösung

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

search_map

Kartensuche

Argumente

Name Typ Erforderlich Beschreibung
query_text string Ja Suchtext
place string Nein Ort
street string Nein Straße
city string Nein Stadt
state string Nein Bundesland
country string Nein Land
postalcode string Nein Postleitzahl
latitude string Nein Breitengrad
longitude string Nein Längengrad
radius string Nein Radius

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

auto_complete

Automatische Vervollständigung

Argumente

Name Typ Erforderlich Beschreibung
query_text string Ja Suchtext

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