MCP

Reddit MCP-Server

Reddit bedient täglich etwa 121 Millionen aktive Nutzer und ist wichtig für Community-Einblicke, Reputationstracking, Produktfeedback und die Entdeckung von Nischen.

MCP Version: 1.0.0 14 MCP-Tools Authentifizierung
Reddit

Basis-URL

https://mcp.pressmonitor.com/mcp

Authentifizierung

MCP-Anrufe verwenden ebenfalls Bearer-Token über JSON-RPC 2.0-Anfragen.

Authorization: Bearer YOUR_TOKEN

comments_by_username

Kommentare nach Benutzername

Code-Beispiele

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

Cursor abrufen

Code-Beispiele

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

Neue Subreddits

Code-Beispiele

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

Beitragsdetails

Argumente

Name Typ Erforderlich Beschreibung
post_url string Ja Beitrags-URL

Code-Beispiele

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

Beiträge nach Subreddit

Code-Beispiele

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

Beiträge nach Benutzername

Code-Beispiele

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

Beiträge durchsuchen

Argumente

Name Typ Erforderlich Beschreibung
query string Ja Suchanfrage

Code-Beispiele

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

Subreddits durchsuchen

Argumente

Name Typ Erforderlich Beschreibung
query string Ja Suchanfrage

Code-Beispiele

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

Top Kommentare nach Benutzername

Code-Beispiele

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

Top Beiträge nach Benutzername

Code-Beispiele

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