MCP Hub
Back to servers

reddit-mcp

A Model Context Protocol server that enables searching and retrieving information from Reddit's public API without requiring authentication. It provides access to subreddit details, posts, comments, and global searches in both Markdown and JSON formats.

Tools
5
Updated
Jan 22, 2026

reddit-mcp

MCP server for Reddit public data. Uses Reddit's public JSON API (no authentication required).

Tools

ToolDescription
searchSearch Reddit globally
subreddit_infoGet subreddit details
subreddit_postsGet posts from a subreddit
post_commentsGet a post with comments
subreddit_searchSearch within a subreddit

All tools accept a format parameter: md (default) or json.

Usage

Stdio transport (default)

bun install
bun start

HTTP transport

bun start:http
# Server runs on http://localhost:3000/mcp

Custom port:

PORT=8080 bun start:http

Docker

# stdio (default)
docker run --rm -i ghcr.io/paltaio/reddit-mcp:latest

# http
docker run --rm -p 3000:3000 -e TRANSPORT=http ghcr.io/paltaio/reddit-mcp:latest

MCP client config

Stdio (Claude Code)

{
  "mcpServers": {
    "reddit": {
      "command": "bun",
      "args": ["start"],
      "cwd": "/path/to/reddit-mcp"
    }
  }
}

HTTP

{
  "mcpServers": {
    "reddit": {
      "type": "http",
      "url": "http://localhost:3000/mcp"
    }
  }
}

Reviews

No reviews yet

Sign in to write a review