MCP

온라인 뉴스 MCP 서버

온라인 뉴스는 디지털 네이티브 매체, 신문, 방송사, 통신사 및 웹상의 잡지에서 게시된 보도를 포함합니다. 평판, 시장 신호, 정책 개발 및 빠르게 변하는 공공 정보에 중요합니다.

MCP 버전: 1.0.0 3 MCP 도구 인증
온라인 뉴스

기본 URL

https://mcp.pressmonitor.com/mcp

인증

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

Authorization: Bearer YOUR_TOKEN

headlines

헤드라인 도구

인수

이름 유형 필수 설명
keywords_text string 키워드 텍스트
lang_code string 아니요 언어 코드
country_code string 아니요 국가 코드
count integer 아니요 개수
cursor string 아니요 커서
date_from string 아니요 Start date for news (YYYY-MM-DD format)
date_to string 아니요 End date for news (YYYY-MM-DD format)
sort string 아니요 latest|relevance(default)

코드 예제

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

브리핑 도구

인수

이름 유형 필수 설명
keywords_text string 키워드 텍스트
lang_code string 아니요 언어 코드
country_code string 아니요 국가 코드
count integer 아니요 개수
cursor string 아니요 커서
date_from string 아니요 Start date for news (YYYY-MM-DD format)
date_to string 아니요 End date for news (YYYY-MM-DD format)
sort string 아니요 latest|relevance(default)

코드 예제

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

전체 텍스트 도구

인수

이름 유형 필수 설명
keywords_text string 키워드 텍스트
lang_code string 아니요 언어 코드
country_code string 아니요 국가 코드
count integer 아니요 개수
cursor string 아니요 커서
date_from string 아니요 Start date for news (YYYY-MM-DD format)
date_to string 아니요 End date for news (YYYY-MM-DD format)
sort string 아니요 latest|relevance(default)

코드 예제

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