Skip to main content
Glama
mypracticaltools

Reddit MCP Server

README.md
# Reddit MCP Server 🤖
[![NPM Version](https://img.shields.io/npm/v/@practicaltools/reddit-mcp-server?style=flat-square&color=cb3837)](https://www.npmjs.com/package/@practicaltools/reddit-mcp-server)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![Build Status](https://img.shields.io/github/actions/workflow/status/mypracticaltools/Reddit-MCP-Server/build.yml?style=flat-square)](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:

<details>
<summary><b>Claude Desktop (macOS/Windows)</b></summary>

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"
      }
    }
  }
}
```
</details>

<details>
<summary><b>Cursor & Windsurf</b></summary>

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`
</details>

<details>
<summary><b>Claude Code (CLI)</b></summary>

```bash
claude-code --mcp @practicaltools/reddit-mcp-server="npx -y @practicaltools/reddit-mcp-server" --env APIFY_API_TOKEN=YOUR_TOKEN
```
</details>

<details>
<summary><b>VS Code (Copilot Agent)</b></summary>

Add to `.vscode/mcp.json`:
```json
{
  "mcpServers": {
    "reddit-mcp": {
      "command": "npx",
      "args": ["-y", "@practicaltools/reddit-mcp-server"],
      "env": { "APIFY_API_TOKEN": "YOUR_TOKEN" }
    }
  }
}
```
</details>

---

## 🔑 Getting Your Apify API Token

To use this server, you need an Apify API token.

1.  **Sign up/Log in**: [Apify Console](https://console.apify.com/).
2.  **Settings**: Click the **Settings** icon in the bottom-left sidebar.
3.  **Integrations**: Select the **Integrations** tab at the top.
4.  **Copy Token**: Copy the string at the top of the page.

---

## 🛠 Local Development

If you want to contribute or run from source:

```bash
# Install dependencies
npm install

# Build the project
npm run build

# Run locally
node dist/index.js
```

## 🤝 Contributing
Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

## 📄 License
MIT License - see [LICENSE](LICENSE) for details.

---
<p align="center">
  Built with ❤️ by <a href="https://github.com/mypracticaltools">Practical Tools</a>
</p>

TDQS

B3.4/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: reddit_fast_search is for general information gathering across posts, comments, or users, while reddit_lead_monitor is specifically for finding high-intent leads or brand mentions with noise filtering. There is no overlap in functionality, making it easy for an agent to choose the right tool based on the task.

Naming Consistency5/5

Both tools follow a consistent naming pattern with the prefix 'reddit_' followed by a descriptive phrase using snake_case (fast_search, lead_monitor). This uniformity makes the tool set predictable and easy to understand, with no deviations in style or convention.

Tool Count2/5

With only 2 tools, the server feels under-scoped for a Reddit MCP server, which typically involves operations like browsing subreddits, posting, commenting, or managing user interactions. This limited set may hinder agents from performing common Reddit-related tasks, making it too thin for the apparent domain.

Completeness2/5

The tool set is severely incomplete for a Reddit server, lacking basic CRUD operations such as creating posts, retrieving subreddit details, or managing user profiles. While search and monitoring are covered, there are significant gaps that will likely cause agent failures in broader Reddit workflows, as core functionalities are missing.

Maintenance

ActivityInactive
ResponsivenessNo issues