MCP
Reddit MCP Server
Reddit serves about 121 million daily active users across forums, threads, text posts, links, images, and comments, making it important for community insight, reputation tracking, product feedback, and niche discovery.
MCP Version: 1.0.0 14 MCP Tools Authentication
Base URL
https://mcp.pressmonitor.co.in/mcp Authentication
MCP calls also use Bearer tokens over JSON-RPC 2.0 requests.
Authorization: Bearer YOUR_TOKEN get_cursor
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": "get_cursor",
"arguments": {}
},
"id": 1
}' new_subreddits
New Subreddits
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": "new_subreddits",
"arguments": {}
},
"id": 1
}' popular_posts
Popular Posts
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": "popular_posts",
"arguments": {}
},
"id": 1
}' popular_subreddits
Popular Subreddits
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": "popular_subreddits",
"arguments": {}
},
"id": 1
}' post_details
Post Details
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| post_url | string | Yes |
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": "post_details",
"arguments": {
"post_url": "VALUE"
}
},
"id": 1
}' posts_by_subreddit
Posts By Subreddit
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": "posts_by_subreddit",
"arguments": {}
},
"id": 1
}' posts_by_username
Posts By Username
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": "posts_by_username",
"arguments": {}
},
"id": 1
}' rising_popular_posts
Rising Popular Posts
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": "rising_popular_posts",
"arguments": {}
},
"id": 1
}' search_posts
Search Posts
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
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": "search_posts",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' search_subreddits
Search Subreddits
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query |
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": "search_subreddits",
"arguments": {
"query": "VALUE"
}
},
"id": 1
}' top_comments_by_username
Top Comments By Username
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": "top_comments_by_username",
"arguments": {}
},
"id": 1
}' top_popular_posts
Top Popular Posts
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": "top_popular_posts",
"arguments": {}
},
"id": 1
}' top_posts_by_username
Top Posts By Username
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": "top_posts_by_username",
"arguments": {}
},
"id": 1
}'
comments_by_username
Comments By Username
Code Examples