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 |
| 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 |
| ns | string | 아니요 | Namespace prefix for multi-tenant index resolution |
코드 예제
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
}'