Reddit MCP Server

Researchstdiov0.2.0
Repository

MCP server for the Reddit API. Lets AI agents search subreddits, fetch hot/new/top posts, read comment threads, and retrieve user activity. Useful for market and community research, sentiment monitoring, trend discovery, and summarizing discussions across communities.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "reddit": {
      "command": "uvx",
      "args": [
        "mcp-reddit"
      ],
      "env": {
        "REDDIT_CLIENT_ID": "<YOUR_REDDIT_CLIENT_ID>",
        "REDDIT_CLIENT_SECRET": "<YOUR_REDDIT_CLIENT_SECRET>"
      }
    }
  }
}

Tools (2)

get_subreddit_posts

Fetch posts from a subreddit sorted by hot, new, or top.

{
  "type": "object",
  "required": [
    "subreddit"
  ],
  "properties": {
    "sort": {
      "type": "string",
      "description": "Sort order (hot, new, top)"
    },
    "limit": {
      "type": "integer",
      "description": "Number of posts to return"
    },
    "subreddit": {
      "type": "string",
      "description": "Subreddit name without the r/ prefix"
    }
  }
}

get_post_comments

Retrieve the comment tree for a specific Reddit post.

{
  "type": "object",
  "required": [
    "post_id"
  ],
  "properties": {
    "post_id": {
      "type": "string",
      "description": "Reddit post ID"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Adam Hill (@adhikasp)
Repository
https://github.com/adhikasp/mcp-reddit
License
MIT
Version
0.2.0
Stars
410
Last Updated
July 9, 2026