MCP

ऑनलाइन समाचार MCP Server

ऑनलाइन समाचार में डिजिटल-नेटीव आउटलेट्स, समाचार पत्र, प्रसारक, केबल सेवाएँ और वेब पर प्रकाशित मैगज़ीन द्वारा रिपोर्टिंग शामिल है। यह प्रतिष्ठा, बाजार संकेतों, नीति विकास और तेजी से चल रही सार्वजनिक जानकारी के लिए महत्वपूर्ण है।

MCP Version: 1.0.0 3 MCP Tools Authentication
ऑनलाइन समाचार

Base URL

https://mcp.pressmonitor.com/mcp

Authentication

MCP calls use Bearer tokens over JSON-RPC 2.0.

Authorization: Bearer YOUR_TOKEN

headlines

शीर्षक उपकरण

Arguments

Name Type Required Description
keywords_text string Yes किवर्ड्स टेक्स्ट
lang_code string No भाषा कोड
country_code string No देश कोड
count integer No गिनती
cursor string No कर्सर
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)
sort string No latest|relevance(default)

Code Examples

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

संक्षेप उपकरण

Arguments

Name Type Required Description
keywords_text string Yes किवर्ड्स टेक्स्ट
lang_code string No भाषा कोड
country_code string No देश कोड
count integer No गिनती
cursor string No कर्सर
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)
sort string No latest|relevance(default)

Code Examples

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

पूर्ण पाठ उपकरण

Arguments

Name Type Required Description
keywords_text string Yes किवर्ड्स टेक्स्ट
lang_code string No भाषा कोड
country_code string No देश कोड
count integer No गिनती
cursor string No कर्सर
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)
sort string No latest|relevance(default)

Code Examples

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
}'