MCP

भारत के लिए ऑनलाइन समाचार निगरानी MCP Server

भारत के 22 आधिकारिक भाषाओं सहित केवल भारतीय ऑनलाइन समाचार स्रोतों की निगरानी।

MCP Version: 1.0.0 3 MCP Tools Authentication
भारत के लिए ऑनलाइन समाचार निगरानी

Base URL

https://mcp.pressmonitor.co.in/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.co.in/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.co.in/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.co.in/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
}'