핵심 서비스 MCP
인쇄 매체 MCP 서버
신문, 잡지, 무역 출판물, 편집물, 언론 보도 및 인쇄 저널리즘.
MCP 버전: 1.0.0 4 MCP 도구 인증
기본 URL
https://mcp.pressmonitor.com/news-print/v1 인증
MCP 호출은 JSON-RPC 2.0 요청을 통해 Bearer 토큰도 사용합니다.
Authorization: Bearer YOUR_TOKEN 도구 찾기
MCP 서버에서 노출된 도구를 나열해 보세요.
curl -X POST 'https://mcp.pressmonitor.com/news-print/v1' -H 'Content-Type: application/json' -H 'Authorization: Bearer YOUR_TOKEN' -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' const response = await fetch('https://mcp.pressmonitor.com/news-print/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify({ jsonrpc: '2.0', id: 1, method: 'tools/list' }) }); console.log(await response.json()); import requests payload = { 'jsonrpc': '2.0', 'id': 1, 'method': 'tools/list' } response = requests.post( 'https://mcp.pressmonitor.com/news-print/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
news_headlines News Headlines
News Headlines
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| keywords_text | string | 예 | Keywords text |
| lang_code | string | 아니요 | Lang code |
| country_code | string | 아니요 | Country code |
| count | string | 아니요 | Count |
| cursor | string | 아니요 | Cursor |
코드 예제
curl -X POST 'https://mcp.pressmonitor.com/news-print/v1' -H 'Content-Type: application/json' -H 'Authorization: Bearer YOUR_TOKEN' -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_headlines","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_headlines", "arguments": { "keywords_text": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/news-print/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_headlines", "arguments": { "keywords_text": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/news-print/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
news_briefs News Briefs
News Briefs
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| keywords_text | string | 예 | Keywords text |
| lang_code | string | 아니요 | Lang code |
| country_code | string | 아니요 | Country code |
| count | string | 아니요 | Count |
| cursor | string | 아니요 | Cursor |
코드 예제
curl -X POST 'https://mcp.pressmonitor.com/news-print/v1' -H 'Content-Type: application/json' -H 'Authorization: Bearer YOUR_TOKEN' -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_briefs","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_briefs", "arguments": { "keywords_text": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/news-print/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_briefs", "arguments": { "keywords_text": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/news-print/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
news_fulltext News Fulltext
News Fulltext
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| keywords_text | string | 예 | Keywords text |
| lang_code | string | 아니요 | Lang code |
| country_code | string | 아니요 | Country code |
| count | string | 아니요 | Count |
| cursor | string | 아니요 | Cursor |
코드 예제
curl -X POST 'https://mcp.pressmonitor.com/news-print/v1' -H 'Content-Type: application/json' -H 'Authorization: Bearer YOUR_TOKEN' -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_fulltext","arguments":{"keywords_text":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_fulltext", "arguments": { "keywords_text": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/news-print/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_fulltext", "arguments": { "keywords_text": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/news-print/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
news_clip News Clip
News Clip
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| id | string | 예 | Id |
| ns | string | 예 | Ns |
| date | string | 예 | Date |
| host | string | 아니요 | Host |
| ttl | string | 아니요 | Ttl |
코드 예제
curl -X POST 'https://mcp.pressmonitor.com/news-print/v1' -H 'Content-Type: application/json' -H 'Authorization: Bearer YOUR_TOKEN' -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_clip","arguments":{"id":"SOME_STRING_VALUE","ns":"SOME_STRING_VALUE","date":"SOME_STRING_VALUE","host":"SOME_STRING_VALUE","ttl":3600}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_clip", "arguments": { "id": "SOME_STRING_VALUE", "ns": "SOME_STRING_VALUE", "date": "SOME_STRING_VALUE", "host": "SOME_STRING_VALUE", "ttl": 3600 } } }; const response = await fetch('https://mcp.pressmonitor.com/news-print/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_clip", "arguments": { "id": "SOME_STRING_VALUE", "ns": "SOME_STRING_VALUE", "date": "SOME_STRING_VALUE", "host": "SOME_STRING_VALUE", "ttl": 3600 } } } response = requests.post( 'https://mcp.pressmonitor.com/news-print/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json())