मुख्य सेवाएं 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 | नहीं | फ़िल्टर करने के लिए प्रकाशन आईडी |
| 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 | नहीं | फ़िल्टर करने के लिए प्रकाशन आईडी |
| 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())