MCP

Google MCP 서버

수십억 명이 매일 Google을 사용하여 웹 페이지, 뉴스, 이미지, 동영상 및 지역 결과를 찾아내어 가시성, 평판 관리 및 수요 캡처에 필수적입니다.

MCP 버전: 1.0.0 6 MCP 도구 인증
Google

기본 URL

https://mcp.pressmonitor.com/mcp

인증

MCP 호출은 JSON-RPC 2.0 요청을 통해 Bearer 토큰도 사용합니다.

Authorization: Bearer YOUR_TOKEN

search_web

웹 검색

인수

이름 유형 필수 설명
query_text string 쿼리 텍스트
lang_code string 아니요 언어 코드
country_code string 아니요 국가 코드
count integer 아니요 반환할 결과 수
safesearch string 아니요 안전 검색

코드 예제

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

뉴스 검색

인수

이름 유형 필수 설명
query_text string 쿼리 텍스트
lang_code string 아니요 언어 코드
country_code string 아니요 국가 코드
count integer 아니요 반환할 결과 수

코드 예제

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

이미지 검색

인수

이름 유형 필수 설명
query_text string 쿼리 텍스트
lang_code string 아니요 언어 코드
country_code string 아니요 국가 코드
count integer 아니요 반환할 결과 수
safesearch string 아니요 안전 검색
color string 아니요 색상
size string 아니요 크기
type_image string 아니요 이미지 유형
layout string 아니요 레이아웃

코드 예제

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

비디오 검색

인수

이름 유형 필수 설명
query_text string 쿼리 텍스트
lang_code string 아니요 언어 코드
country_code string 아니요 국가 코드
count integer 아니요 반환할 결과 수
safesearch string 아니요 안전 검색
timelimit string 아니요 시간 제한
duration string 아니요 길이
resolution string 아니요 해상도

코드 예제

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

지도 검색

인수

이름 유형 필수 설명
query_text string 쿼리 텍스트
place string 아니요 장소
street string 아니요 거리
city string 아니요 도시
state string 아니요
country string 아니요 국가
postalcode string 아니요 우편번호
latitude string 아니요 위도
longitude string 아니요 경도
radius string 아니요 반경

코드 예제

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

자동 완성

인수

이름 유형 필수 설명
query_text string 쿼리 텍스트

코드 예제

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