# Reddit MCP Server 🤖
[](https://www.npmjs.com/package/@practicaltools/reddit-mcp-server)
[](https://opensource.org/licenses/MIT)
[](https://github.com/mypracticaltools/Reddit-MCP-Server/actions)
An MCP server that allows AI agents to search Reddit or find specific leads by delegating the scraping task to high-performance Apify cloud actors.
## 🌟 Key Features
- **`reddit_fast_search`**: Quickly search for Reddit posts, comments, or users. Best for general information gathering.
- **`reddit_lead_monitor`**: Find high-intent leads or brand mentions while filtering out noise.
---
## ⚡️ Quick Install
Choose your platform to install **Reddit MCP** in seconds:
Claude Desktop (macOS/Windows)
Add this to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"reddit-mcp": {
"command": "npx",
"args": ["-y", "@practicaltools/reddit-mcp-server"],
"env": {
"APIFY_API_TOKEN": "YOUR_APIFY_TOKEN"
}
}
}
}
```
Cursor & Windsurf
1. Open **Settings** -> **MCP Servers**.
2. Add a new server:
- **Name**: `Reddit MCP`
- **Type**: `stdio`
- **Command**: `npx -y @practicaltools/reddit-mcp-server`
- **Env**: `APIFY_API_TOKEN=YOUR_TOKEN`
Claude Code (CLI)
```bash
claude-code --mcp @practicaltools/reddit-mcp-server="npx -y @practicaltools/reddit-mcp-server" --env APIFY_API_TOKEN=YOUR_TOKEN
```
VS Code (Copilot Agent)
Add to `.vscode/mcp.json`:
```json
{
"mcpServers": {
"reddit-mcp": {
"command": "npx",
"args": ["-y", "@practicaltools/reddit-mcp-server"],
"env": { "APIFY_API_TOKEN": "YOUR_TOKEN" }
}
}
}
```
Built with ❤️ by Practical Tools