Model Context Protocol server implementation for Reddit
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"reddit-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Model Context Protocol server implementation for Reddit
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication / search
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
Multi-engine MCP server, CLI, and local daemon for agent web search and content retrieval — skill-guided workflows, no API keys.
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
MCP Security Weekly
Get CVE alerts and security updates for Reddit Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This repository contains a Model Context Protocol server implementation for Reddit that allows AI assistants to access and interact with Reddit content through PRAW (Python Reddit API Wrapper).

The Model Context Protocol (MCP) is a standard for enabling AI assistants to interface with external services, tools, and data sources. This server implements the MCP specification to provide access to Reddit content.
To know more about MCP, Check this video
git clone https://github.com/Arindam200/reddit-mcp.git
cd reddit-mcp
Connect to the MCP server
Copy the below json with the appropriate {{PATH}} values:
{
"mcpServers": {
"reddit": {
"command": "{{PATH_TO_UV}}", // Run `which uv` and place the output here
"args": [
"--directory",
"{{PATH_TO_SRC}}", // cd into the repo, run `pwd` and enter the output here
"run",
"server.py"
],
"env": {
"REDDIT_CLIENT_ID": "your_client_id",
"REDDIT_CLIENT_SECRET": "your_client_secret",
"REDDIT_USERNAME": "your_username", // Optional for authenticated operations
"REDDIT_PASSWORD": "your_password" // Optional for authenticated operations
}
}
}
}
You can obtain Reddit API credentials by creating an app at Reddit's app preferences page.
For Claude, save this as claude_desktop_config.json in your Claude Desktop configuration directory at:
~/Library/Application Support/Claude/claude_desktop_config.json
For Cursor, save this as mcp.json in your Cursor configuration directory at:
~/.cursor/mcp.json
Restart Claude Desktop / Cursor
Open Claude Desktop and you should now see Reddit as an available integration.
Or restart Cursor.
The server provides the following tools:
get_user_info(username) - Get detailed user analysis with engagement insightsget_user_comments(username, sort, time_filter, limit) - Get a user's comment history with filtering optionsget_user_posts(username, sort, time_filter, limit) - Get a user's post/submission history with filtering optionsget_top_posts(subreddit, time_filter, limit) - Get and analyze top postssearch_posts(query, subreddit, sort, time_filter, limit) - Search for posts across Reddit or within a specific subredditget_subreddit_stats(subreddit) - Get comprehensive subreddit analysisget_trending_subreddits() - Get list of trending subredditsget_submission_by_url(url) - Get a Reddit submission by its URLget_submission_by_id(submission_id) - Get a Reddit submission by its IDwho_am_i() - Get information about the currently authenticated usercreate_post(subreddit, title, content, flair, is_self) - Create an optimized post