MCP
Reddit MCP Server
Reddit serve circa 121 milioni di utenti attivi quotidiani attraverso forum, discussioni, post, link, immagini e commenti, rendendolo importante per approfondimenti comunitari, monitoraggio della reputazione, feedback sui prodotti e scoperta di nicchie.
MCP Version: 1.0.0 14 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 get_cursor
Ottieni cursore
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
Nuovi 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": "new_subreddits",
"arguments": {}
},
"id": 1
}' popular_posts
Post popolari
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": "popular_posts",
"arguments": {}
},
"id": 1
}' popular_subreddits
Subreddit popolari
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": "popular_subreddits",
"arguments": {}
},
"id": 1
}' post_details
Dettagli del post
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| post_url | string | Yes | URL del post |
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
Post per 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
Post per nome utente
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
}' rising_popular_posts
Post popolari in crescita
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": "rising_popular_posts",
"arguments": {}
},
"id": 1
}' search_posts
Cerca post
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Query di ricerca |
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
Cerca subreddit
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Query di ricerca |
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
Migliori commenti per nome utente
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_popular_posts
Post popolari migliori
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_popular_posts",
"arguments": {}
},
"id": 1
}' top_posts_by_username
Migliori post per nome utente
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
}'
comments_by_username
Commenti per nome utente
Code Examples