The Reddit MCP server allows you to browse, search, and read Reddit content programmatically. With this server, you can:
Retrieve detailed information about specific submissions by ID
Get information about subreddits by name
Retrieve comments from submissions with optional MoreComments replacement
Access specific comments by ID with their replies
Search for posts within subreddits using various filters and sort options
Search for subreddits by name or description with advanced filtering options
Reddit MCP
A plug-and-play MCP server to browse, search, and read Reddit.
Demo
Here's a short video showing how to use this in Claude Desktop:
https://github.com/user-attachments/assets/a2e9f2dd-a9ac-453f-acd9-1791380ebdad
Related MCP server: browser-mcp
Features
Detailed parameter validation with pydantic
Uses the reliable PRAW library under the hood
Built-in rate limiting protection thanks to PRAW
Caveats
Only supports read features for now. If you want to use write features, upvote the issue or send a PR! 🙌
Tools use tokens. To use this with Claude, you may need to be a Pro user to use many tool calls. Free tier users should be fine with lighter tool usage. Your token usage is your responsibility.
Installation
Prerequisite: Reddit API credentials
Create a developer app in your Reddit account if you don't already have one. This will give you a client_id and client_secret to use in the following steps. If you already have these, you can skip this step.
Claude Desktop
To install into Claude Desktop:
Follow the instructions here until the section "Open up the configuration file in any text editor."
Add the following to the file depending on your preferred installation method:
Using uvx (recommended)
Using PIP
First install the package:
Then add the following to the configuration file:
Others
You can use this server with any MCP client, including agent frameworks (LangChain, LlamaIndex, AutoGen, etc). For an example AutoGen integration, check out the example.
Tools
The tools the server will expose are:
Name | Description |
| Access a comment |
| Access comments of a submission |
| Access a submission |
| Access a subreddit by name |
| Search posts in a subreddit |
| Search subreddits by name or description |
Contributing
Contributions are welcome! See CONTRIBUTING.md for more information.
Acknowledgments
PRAW for an amazingly reliable library 💙