MCP server connector for Reddit — search subreddits, browse posts, comments, and manage user interactions via Playwright browser automation.
npm install @striderlabs/mcp-redditSet environment variables:
export REDDIT_USERNAME="your-username"
export REDDIT_PASSWORD="your-password"
export REDDIT_HEADLESS="true" # Set to "false" to see browser| Tool | Description |
|---|---|
search_posts |
Search for posts across Reddit |
get_subreddit |
Get subreddit info and top posts |
get_post |
Get post details and comments |
get_user_profile |
Get user profile information |
upvote_post |
Upvote a post |
downvote_post |
Downvote a post |
save_post |
Save a post |
get_saved_posts |
Get saved posts |
join_subreddit |
Join a subreddit |
get_trending |
Get trending posts |
Add to your MCP config:
{
"mcpServers": {
"reddit": {
"command": "npx",
"args": ["@striderlabs/mcp-reddit"],
"env": {
"REDDIT_USERNAME": "your-username",
"REDDIT_PASSWORD": "your-password"
}
}
}
}MIT