reddit3
3.9
The `reddit3` MCP server provides powerful tools for interacting with Reddit's wide array of data.
The reddit3
MCP server offers a comprehensive suite of tools for accessing and integrating Reddit data into applications. It allows users to fetch posts from popular subreddits, search for content, retrieve detailed post information, and access user data. The server is designed to facilitate easy integration of Reddit functionality, making it a valuable resource for developers looking to leverage Reddit's vast data repository. With endpoints tailored for specific tasks, the reddit3
server simplifies the process of interacting with Reddit's API, ensuring efficient data retrieval and management.
Features
- Fetch Posts: Retrieve posts from popular subreddits like r/wallstreetbets, r/stocks, and more.
- Search Content: Perform searches across Reddit for posts, subreddits, and users based on specific criteria.
- Post Details: Access detailed information about specific posts, including comments and metadata.
- User Data: Obtain information about Reddit users, including their posts and comment history.
Usage with Different Platforms
python
python
import requests
url = 'https://api.reddit3.com/v1/posts'
params = {'subreddit': 'wallstreetbets', 'filter': 'hot'}
response = requests.get(url, params=params)
print(response.json())
javascript
javascript
const fetch = require('node-fetch');
const url = 'https://api.reddit3.com/v1/posts';
const params = new URLSearchParams({ subreddit: 'wallstreetbets', filter: 'hot' });
fetch(`${url}?${params}`)
.then(response => response.json())
.then(data => console.log(data));