🔌

Reddit MCP

Social800

Search Reddit, read posts and comments, and manage subreddit activity.

Claude DesktopCursorWindsurf

Overview

Search Reddit, read posts and comments, and manage subreddit activity.

Setup

Run with npx:

npx -y @modelcontextprotocol/server-reddit

Configuration

REDDIT_CLIENT_ID and REDDIT_CLIENT_SECRET environment variables

Documentation

Reddit MCP (Enhanced)

Overview

Reddit MCP provides access to Reddit API for searching posts, reading comments, and managing subreddit activity.

Features

  • Post search and retrieval
  • Comment reading
  • Subreddit management
  • User activity tracking
  • Trending content discovery

Installation

npx -y @modelcontextprotocol/server-reddit

Configuration

Set up Reddit API credentials:

export REDDIT_CLIENT_ID=your_client_id
export REDDIT_CLIENT_SECRET=your_client_secret

Get your credentials from Reddit Apps.

Available Operations

OperationDescription
SearchSearch posts by keyword
Get PostRetrieve specific post
Get CommentsRead post comments
Get SubredditGet subreddit info
Get HotGet trending posts

Usage Examples

Search Posts

{
  "action": "search",
  "query": "AI agents",
  "subreddit": "machinelearning",
  "limit": 10
}

Get Post Details

{
  "action": "get_post",
  "post_id": "abc123",
  "include_comments": true
}

Get Hot Posts

{
  "action": "get_hot",
  "subreddit": "technology",
  "limit": 25
}

Pros

  • ✅ Access to real-time discussions
  • ✅ Rich community content
  • ✅ Trending discovery
  • ✅ Comment threading

Cons

  • ❌ Requires Reddit API credentials
  • ❌ Rate limits apply
  • ❌ Content filtering needed

Resources