MCP

IAB 콘텐츠 분류 체계 MCP 서버

IAB 콘텐츠 분류 체계는 웹 페이지, 앱, 비디오, 팟캐스트, 게임 및 뉴스 전반의 디지털 콘텐츠를 분류하기 위한 공통 언어를 제공합니다. 이는 맥락 광고, 브랜드 적합성, 게시자 분석 및 미디어 분류에 중요합니다.

MCP 버전: 1.0.0 3 MCP 도구 인증
IAB 콘텐츠 분류 체계

기본 URL

https://mcp.pressmonitor.com/mcp

인증

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

Authorization: Bearer YOUR_TOKEN

headlines

뉴스 헤드라인 가져오기

인수

이름 유형 필수 설명
code string 엔터티 코드(예: 티커 심볼, 산업 코드)
lang_code string 아니요 언어 코드로 필터링(ISO 639-1)
country_code string 아니요 국가 코드로 필터링(ISO 3166-1 alpha-2)
count integer 아니요 결과 반환 개수
cursor string 아니요 페이지네이션 커서 (search_after 대체)이며
sort string 아니요 정렬 순서 (날짜 또는 관련성)
date_from string 아니요 뉴스 시작일 (YYYY-MM-DD 형식)
date_to string 아니요 뉴스 종료일 (YYYY-MM-DD 형식)

코드 예제

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

briefs

뉴스 요약 가져오기

인수

이름 유형 필수 설명
code string 엔터티 코드(예: 티커 심볼, 산업 코드)
lang_code string 아니요 언어 코드로 필터링(ISO 639-1)
country_code string 아니요 국가 코드로 필터링(ISO 3166-1 alpha-2)
count integer 아니요 결과 반환 개수
cursor string 아니요 페이지네이션 커서 (search_after 대체)이며
sort string 아니요 정렬 순서 (날짜 또는 관련성)
date_from string 아니요 뉴스 시작일 (YYYY-MM-DD 형식)
date_to string 아니요 뉴스 종료일 (YYYY-MM-DD 형식)

코드 예제

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

fulltext

전체 뉴스 본문 가져오기

인수

이름 유형 필수 설명
code string 엔터티 코드(예: 티커 심볼, 산업 코드)
lang_code string 아니요 언어 코드로 필터링(ISO 639-1)
country_code string 아니요 국가 코드로 필터링(ISO 3166-1 alpha-2)
count integer 아니요 결과 반환 개수
cursor string 아니요 페이지네이션 커서 (search_after 대체)이며
sort string 아니요 정렬 순서 (날짜 또는 관련성)
date_from string 아니요 뉴스 시작일 (YYYY-MM-DD 형식)
date_to string 아니요 뉴스 종료일 (YYYY-MM-DD 형식)

코드 예제

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