핵심 서비스 MCP
인쇄 매체 MCP 서버
신문, 잡지, 무역 출판물, 편집물, 언론 보도 및 인쇄 저널리즘.
MCP 버전: 1.0.0 9 MCP 도구 인증
기본 URL
https://mcp.pressmonitor.com/ 인증
MCP 호출은 JSON-RPC 2.0 요청을 통해 Bearer 토큰도 사용합니다.
Authorization: Bearer YOUR_TOKEN 도구 찾기
MCP 서버에서 노출된 도구를 나열해 보세요.
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -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/', { 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/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_papers 사용 가능한 신문 및 잡지 출판물 검색
사용 가능한 신문 및 잡지 출판물 검색
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| query | string | 아니요 | 검색어 또는 키워드 |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_papers","arguments":{"ns":"PMIN","query":"SOME_STRING_VALUE","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_papers", "arguments": { "ns": "PMIN", "query": "SOME_STRING_VALUE", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_papers", "arguments": { "ns": "PMIN", "query": "SOME_STRING_VALUE", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_headlines 인쇄 매체 헤드라인 가져오기
인쇄 매체 헤드라인 가져오기
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| query | string | 예 | 검색어 또는 키워드 |
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| paper_id | string | 아니요 | 필터링할 출판물 ID |
| edition | string | 아니요 | 필터링할 판 이름 |
| country_code | string | 아니요 | 국가 코드로 필터링 (ISO 3166-1 alpha-2) |
| lang_code | string | 아니요 | 언어 코드로 필터링 (ISO 639-1) |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_headlines","arguments":{"query":"SOME_STRING_VALUE","ns":"PMIN","paper_id":"SOME_STRING_VALUE","edition":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_headlines", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "paper_id": "SOME_STRING_VALUE", "edition": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_headlines", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "paper_id": "SOME_STRING_VALUE", "edition": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_briefs 인쇄 매체 요약문(헤드라인 + 설명) 가져오기
인쇄 매체 요약문(헤드라인 + 설명) 가져오기
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| query | string | 예 | 검색어 또는 키워드 |
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| paper_id | string | 아니요 | 필터링할 출판물 ID |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_briefs","arguments":{"query":"SOME_STRING_VALUE","ns":"PMIN","paper_id":"SOME_STRING_VALUE","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_briefs", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "paper_id": "SOME_STRING_VALUE", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_briefs", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "paper_id": "SOME_STRING_VALUE", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_fulltext 전체 텍스트 인쇄 매체 기사 가져오기
전체 텍스트 인쇄 매체 기사 가져오기
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| query | string | 예 | 검색어 또는 키워드 |
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_fulltext","arguments":{"query":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_fulltext", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_fulltext_metadata NER, NEL, 분류 메타데이터가 포함된 전체 텍스트 가져오기
NER, NEL, 분류 메타데이터가 포함된 전체 텍스트 가져오기
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| query | string | 예 | 검색어 또는 키워드 |
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_fulltext_metadata","arguments":{"query":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_metadata", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_fulltext_metadata", "arguments": { "query": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_headlines_translated 번역된 인쇄 매체 헤드라인 가져오기
번역된 인쇄 매체 헤드라인 가져오기
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| query | string | 예 | 검색어 또는 키워드 |
| target_lang_code | string | 예 | 번역 대상 언어 코드 (ISO 639-1) |
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_headlines_translated","arguments":{"query":"SOME_STRING_VALUE","target_lang_code":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_headlines_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_headlines_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_briefs_translated 번역된 인쇄 매체 요약문 가져오기
번역된 인쇄 매체 요약문 가져오기
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| query | string | 예 | 검색어 또는 키워드 |
| target_lang_code | string | 예 | 번역 대상 언어 코드 (ISO 639-1) |
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_briefs_translated","arguments":{"query":"SOME_STRING_VALUE","target_lang_code":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_briefs_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_briefs_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_fulltext_translated 번역된 전체 텍스트 인쇄 매체 기사 가져오기
번역된 전체 텍스트 인쇄 매체 기사 가져오기
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| query | string | 예 | 검색어 또는 키워드 |
| target_lang_code | string | 예 | 번역 대상 언어 코드 (ISO 639-1) |
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_fulltext_translated","arguments":{"query":"SOME_STRING_VALUE","target_lang_code":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_fulltext_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_fulltext_metadata_translated 메타데이터가 포함된 번역된 전체 텍스트 가져오기
메타데이터가 포함된 번역된 전체 텍스트 가져오기
인수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
| query | string | 예 | 검색어 또는 키워드 |
| target_lang_code | string | 예 | 번역 대상 언어 코드 (ISO 639-1) |
| ns | string | 아니요 | 네임스페이스 (기본값: PMIN) |
| count | string | 아니요 | 반환할 결과 수 |
코드 예제
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_fulltext_metadata_translated","arguments":{"query":"SOME_STRING_VALUE","target_lang_code":"SOME_STRING_VALUE","ns":"PMIN","count":20}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_fulltext_metadata_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "search_fulltext_metadata_translated", "arguments": { "query": "SOME_STRING_VALUE", "target_lang_code": "SOME_STRING_VALUE", "ns": "PMIN", "count": 20 } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json())