
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
mcp-reddit
Advanced tools
MCP server for scraping Reddit - no API keys required.
Scrapes posts, comments, and media from subreddits and user profiles using old.reddit.com and Libreddit mirrors.
pip install mcp-reddit
Or with uvx:
uvx mcp-reddit
Add to your Claude Desktop or Claude Code settings:
~/Library/Application Support/Claude/claude_desktop_config.json){
"mcpServers": {
"reddit": {
"command": "uvx",
"args": ["mcp-reddit"]
}
}
}
claude mcp add reddit -- uvx mcp-reddit
Or manually in ~/.claude.json:
{
"mcpServers": {
"reddit": {
"command": "uvx",
"args": ["mcp-reddit"]
}
}
}
| Tool | Description |
|---|---|
scrape_subreddit | Scrape posts from a subreddit |
scrape_user | Scrape posts from a user's profile |
scrape_post | Fetch a specific post by URL (supports media download) |
get_posts | Query stored posts with filters |
get_comments | Query stored comments |
search_reddit | Search across all scraped data |
get_top_posts | Get highest scoring posts |
list_scraped_sources | List all scraped subreddits/users |
"Scrape the top 50 posts from r/LocalLLaMA"
"Fetch this post and download the image: https://reddit.com/r/ClaudeAI/comments/abc123/title"
"Search my scraped data for posts about 'fine-tuning'"
"Get the top 10 posts from r/ClaudeAI by score"
Data is stored in ~/.mcp-reddit/data/ by default.
Set MCP_REDDIT_DATA_DIR environment variable to customize:
{
"mcpServers": {
"reddit": {
"command": "uvx",
"args": ["mcp-reddit"],
"env": {
"MCP_REDDIT_DATA_DIR": "/path/to/your/data"
}
}
}
}
To download Reddit videos with audio, install ffmpeg:
# macOS
brew install ffmpeg
# Ubuntu/Debian
sudo apt install ffmpeg
# Windows
choco install ffmpeg
Built on top of reddit-universal-scraper by @ksanjeev284 - a full-featured Reddit scraper with analytics dashboard, REST API, and plugin system.
pyproject.toml and src/mcp_reddit/__init__.pyMIT
FAQs
MCP server for scraping Reddit - no API keys required
We found that mcp-reddit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.