@striderlabs/mcp-reddit
v1.0.0
Published
MCP server connector for Reddit — search subreddits, browse posts, comments, and manage user interactions via Playwright browser automation
Maintainers
Readme
@striderlabs/mcp-reddit
MCP server connector for Reddit — search subreddits, browse posts, comments, and manage user interactions via Playwright browser automation.
Installation
npm install @striderlabs/mcp-redditConfiguration
Set environment variables:
export REDDIT_USERNAME="your-username"
export REDDIT_PASSWORD="your-password"
export REDDIT_HEADLESS="true" # Set to "false" to see browserTools
| 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 |
MCP Configuration
Add to your MCP config:
{
"mcpServers": {
"reddit": {
"command": "npx",
"args": ["@striderlabs/mcp-reddit"],
"env": {
"REDDIT_USERNAME": "your-username",
"REDDIT_PASSWORD": "your-password"
}
}
}
}License
MIT
