MCP

인쇄 매체 MCP 서버

신문, 잡지, 무역 출판물, 편집물, 언론 보도 및 인쇄 저널리즘.

MCP 버전: 1.0.0 4 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 아니요
sort string 아니요 Sort order (date or relevance)
date_from string 아니요 Start date for news (YYYY-MM-DD format)
date_to string 아니요 End date for news (YYYY-MM-DD format)

코드 예제

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 아니요
sort string 아니요 Sort order (date or relevance)
date_from string 아니요 Start date for news (YYYY-MM-DD format)
date_to string 아니요 End date for news (YYYY-MM-DD format)

코드 예제

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 아니요
sort string 아니요 Sort order (date or relevance)
date_from string 아니요 Start date for news (YYYY-MM-DD format)
date_to string 아니요 End date for news (YYYY-MM-DD format)

코드 예제

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

clip

인수

이름 유형 필수 설명
id string Clip/article ID to resolve
ns string 아니요 Namespace prefix for multi-tenant index resolution
date string Date of the clip (YYYY-MM-DD)
host string 아니요 Host name for tenant resolution
ttl integer 아니요 Signed URL time-to-live in seconds

코드 예제

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