MCP

Reddit MCP Server

Reddit लगभग 121 मिलियन दैनिक सक्रिय उपयोगकर्ताओं को फोरम, थ्रेड्स, टेक्स्ट पोस्ट्स, लिंक्स, चित्रों और टिप्पणियों के माध्यम से सेवा देता है, जो सामुदायिक अंतर्दृष्टि, प्रतिष्ठा ट्रैकिंग, उत्पाद फीडबैक और निचे की खोज के लिए महत्वपूर्ण है।

MCP Version: 1.0.0 14 MCP Tools Authentication
Reddit

Base URL

https://mcp.pressmonitor.com/mcp

Authentication

MCP calls use Bearer tokens over JSON-RPC 2.0.

Authorization: Bearer YOUR_TOKEN

comments_by_username

यूज़रनेम द्वारा टिप्पणियाँ

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": "comments_by_username",
    "arguments": {}
  },
  "id": 1
}'

get_cursor

कर्सर प्राप्त करें

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": "get_cursor",
    "arguments": {}
  },
  "id": 1
}'

new_subreddits

नए सबरेडिट्स

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": "new_subreddits",
    "arguments": {}
  },
  "id": 1
}'

post_details

पोस्ट विवरण

Arguments

Name Type Required Description
post_url string Yes पोस्ट URL

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": "post_details",
    "arguments": {
      "post_url": "VALUE"
    }
  },
  "id": 1
}'

posts_by_subreddit

सबरेडिट द्वारा पोस्ट्स

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": "posts_by_subreddit",
    "arguments": {}
  },
  "id": 1
}'

posts_by_username

यूज़रनेम द्वारा पोस्ट्स

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": "posts_by_username",
    "arguments": {}
  },
  "id": 1
}'

search_posts

पोस्ट खोजें

Arguments

Name Type Required Description
query string Yes सर्च क्वेरी

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": "search_posts",
    "arguments": {
      "query": "VALUE"
    }
  },
  "id": 1
}'

search_subreddits

सबरेडिट्स खोजें

Arguments

Name Type Required Description
query string Yes सर्च क्वेरी

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": "search_subreddits",
    "arguments": {
      "query": "VALUE"
    }
  },
  "id": 1
}'

top_comments_by_username

यूज़रनेम द्वारा शीर्ष टिप्पणियाँ

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": "top_comments_by_username",
    "arguments": {}
  },
  "id": 1
}'

top_posts_by_username

यूज़रनेम द्वारा शीर्ष पोस्ट्स

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": "top_posts_by_username",
    "arguments": {}
  },
  "id": 1
}'